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