diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 25f1c54506..50aa2c9788 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 +Subproject commit 50aa2c97882fbc9d4918813a22169fe97b424564 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index c24fb5999e..a5dea5f178 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit c24fb5999efafffaa393b886e21780ab7fd3aa08 +Subproject commit a5dea5f178fc98a4ab39c58aa43c37da6ad25d08 diff --git a/FV3 b/FV3 index 47eec05ad9..0c61670e50 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 47eec05ad9fd1f0fbc81df6465e2acdf59610bbd +Subproject commit 0c61670e50de263f9ece0c2d550034c813520811 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index be40a41360..02d4dc455b 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit be40a41360b2eaed31ae86582aa57e1cf41241d5 +Subproject commit 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 584b9983bd..ec7814a658 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20231002 +export BL_DATE=20231013 diff --git a/tests/bl_date.ncar.conf b/tests/bl_date.ncar.conf index 255c5004a0..d74db9d278 100644 --- a/tests/bl_date.ncar.conf +++ b/tests/bl_date.ncar.conf @@ -1,2 +1,2 @@ -export BL_DATE=20240126 +export BL_DATE=20240131 diff --git a/tests/ci/Jenkinsfile b/tests/ci/Jenkinsfile index 8e89f1dc10..fa3dad496b 100644 --- a/tests/ci/Jenkinsfile +++ b/tests/ci/Jenkinsfile @@ -1,3 +1,35 @@ +def commentMessage + +void setBuildStatus(String message, String state) { + step([ + $class: "GitHubCommitStatusSetter", + reposSource: [$class: "ManuallyEnteredRepositorySource", url: "https://github.com/ufs-community/ufs-weather-model"], + contextSource: [$class: "ManuallyEnteredCommitContextSource", context: "Jenkins-ci ORTs"], + errorHandlers: [[$class: "ChangingBuildStatusErrorHandler", result: "UNSTABLE"]], + statusResultSource: [ $class: "ConditionalStatusResultSource", results: [[$class: "AnyBuildResult", message: message, state: state]] ] + ]); +} + +def postGitHubCommentWithLogFile(commentMessage) { + script { + withCredentials([string(credentialsId: 'GithubJenkinsNew', variable: 'ACCESS_TOKEN')]) { + def apiUrl = "https://api.github.com/repos/ufs-community/ufs-weather-model/issues/${env.CHANGE_ID}/comments" + + def curlCommand = "curl -s -H \"Authorization: token " + ACCESS_TOKEN + "\" \\\n" + + "-X POST -d '{\"body\": \"" + commentMessage + "\"}' \\\n" + + "\"" + apiUrl + "\"" + + def response = sh(script: curlCommand, returnStatus: true) + + if (response == 0) { + echo "Comment added successfully to PR #${env.CHANGE_ID}" + } else { + error "Failed to add comment to PR #${env.CHANGE_ID}" + } + } + } +} + pipeline { agent none @@ -12,7 +44,8 @@ pipeline { steps { script { build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ - string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop') + string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'), + string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '') ], wait: false } } @@ -87,7 +120,7 @@ pipeline { stage('Test') { steps { - sh 'docker run --rm --env test_name="${TEST_NAME}" --env run_case="${TEST_CASE}" --workdir /home/builder/ufs-weather-model/tests --volume DataVolume:/home/builder/data/NEMSfv3gfs --interactive --shm-size=16gb "${IMG_NAME}"' + sh 'docker run --rm --env test_name="${TEST_NAME}" --env run_case="${TEST_CASE}" --workdir /home/builder/ufs-weather-model/tests --volume DataVolume:/home/builder/data/NEMSfv3gfs --interactive --shm-size=32gb "${IMG_NAME}"' } } } @@ -104,4 +137,25 @@ pipeline { } } } + post { + success { + node('built-in') { + setBuildStatus("Build succeeded", "SUCCESS"); + } + } + failure { + node('built-in') { + setBuildStatus("Build failed", "FAILURE"); + } + } + always { + node('built-in') { + script { + def buildResult = currentBuild.resultIsBetterOrEqualTo("SUCCESS") ? "passed" : "failed" + commentMessage = "Jenkins-ci ORTs ${buildResult}" + postGitHubCommentWithLogFile(commentMessage) + } + } + } + } } diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 83c934f319..02cdbb371b 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -535,7 +535,6 @@ export OUTPUT_FH="12 -1" export NFHOUT=12 export NFHMAX_HF=12 export NFHOUT_HF=6 -export IAU_OFFSET=0 export FHZERO=6 export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" @@ -581,6 +580,9 @@ export LNDP_MODEL_TYPE=0 #IAU export IAU_INC_FILES="''" +export IAU_DELTHRS=0 +export IAUFHRS=-1 +export IAU_OFFSET=0 export FH_DFI_RADAR='-2e10' @@ -589,8 +591,6 @@ export DO_CA=.false. export CA_SGS=.false. export CA_GLOBAL=.false. -export IAU_DRYMASSFIXER=.false. - #waves export WW3RSTDTHR=12 export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" @@ -868,8 +868,14 @@ export MOM6_THERMO_SPAN=False export MOM6_USE_WAVES=True export MOM6_ALLOW_LANDMASK_CHANGES=False # MOM6 IAU -export MOM_IAU=False -export MOM_IAU_HRS=6 +export ODA_INCUPD=False +export ODA_INCUPD_NHOURS=6 +export ODA_TEMPINC_VAR="'pt_inc'" +export ODA_SALTINC_VAR="'s_inc'" +export ODA_THK_VAR="'h_fg'" +export ODA_INCUPD_UV=False +export ODA_UINC_VAR="'u_inc'" +export ODA_VINC_VAR="'v_inc'" # MOM6 stochastics export DO_OCN_SPPT=False export PERT_EPBL=False @@ -1026,8 +1032,14 @@ export MOM6_RIVER_RUNOFF=False export FRUNOFF='' export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc # MOM6 IAU -export MOM_IAU=False -export MOM_IAU_HRS=6 +export ODA_INCUPD=False +export ODA_INCUPD_NHOURS=6 +export ODA_TEMPINC_VAR="'pt_inc'" +export ODA_SALTINC_VAR="'s_inc'" +export ODA_THK_VAR="'h_fg'" +export ODA_INCUPD_UV=False +export ODA_UINC_VAR="'u_inc'" +export ODA_VINC_VAR="'v_inc'" export MOM6_USE_LI2016=False # MOM6 stochastics export DO_OCN_SPPT=False diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 95cdc20486..b8eba8a312 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -96,6 +96,9 @@ else RFILE_OLD=$(basename $RFILE) mv -f $RFILE INPUT/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" done + if [[ $IAU_OFFSET == 6 ]] && [[ $FHROT -le 6 ]]; then + cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES}/fv_increment*.nc ./INPUT/. + fi #if not mx025, then mom6 restart is a single file if [[ $OCNRES == 025 ]]; then @@ -105,6 +108,9 @@ else cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_3.nc ./INPUT/MOM.res_3.nc else cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc + if [[ $ODA_INCUPD == 'True' ]] && [[ $FHROT -le 6 ]]; then + cp @[INPUTDATA_ROOT]/MOM6_IC/mom6_increment.nc ./INPUT/mom6_increment.nc + fi fi # CMEPS restart and pointer files diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index 0027c40ffa..cf9d20214e 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -22,7 +22,7 @@ if [ $WARM_START = .false. ]; then else cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc.res_2011100100.nc cice_model.res.nc - if [[ $MOM_IAU == 'True' ]];then + if [[ $ODA_INCUPD == 'True' ]];then cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/mom6_increment.nc ./INPUT/mom6_increment.nc fi fi diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e9bb150edc..8d7cdb41af 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Mon Jan 29 20:37:47 UTC 2024 +Thu Feb 1 20:18:00 UTC 2024 Start Regression test -Testing UFSWM Hash: 5fe703e615cfdfa4843da221e11d366987bf38da +Testing UFSWM Hash: 5bbc75e349faa76fef68d760a2004467bd3f24f9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + a5dea5f178fc98a4ab39c58aa43c37da6ad25d08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1405-ga5dea5f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - ff47354515ee6221dbc356b9bfdf622f9fad4161 FV3 (GFSv17.HR2-33-gff47354) + 8166c87c3ee3835f17df396c5c69061c399d2451 FV3 (remotes/origin/ufs-dev-PR118) 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) + 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 248 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 266 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 543 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 192 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 546 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 553 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 547 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 252 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 171 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 596 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 187 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 267 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 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 533 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_faster_intel elapsed time 569 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 547 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 575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 565 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 180 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 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 568 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 204 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 614 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 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 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 596 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 596 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 586 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 656 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 204 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 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 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 rrfs_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile s2s_aoflux_intel elapsed time 592 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 223 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 218 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 629 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 118 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 658 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 129 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 968 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 220 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 121 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 220 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 235 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 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 656 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 242 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 956 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_gnu elapsed time 250 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 90 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_intel elapsed time 654 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_mixedmode_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_mixedmode_intel +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_p8_mixedmode_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Moving baseline 001 cpld_control_p8_mixedmode_intel files .... Moving sfcf021.tile1.nc .........OK @@ -134,14 +134,14 @@ Moving baseline 001 cpld_control_p8_mixedmode_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.888373 - 0: The maximum resident set size (KB) = 3156328 + 0: The total amount of wall time = 307.601787 + 0: The maximum resident set size (KB) = 3150356 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_gfsv17_intel +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Moving baseline 002 cpld_control_gfsv17_intel files .... Moving sfcf021.tile1.nc .........OK @@ -206,16 +206,33 @@ Moving baseline 002 cpld_control_gfsv17_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 215.786832 - 0: The maximum resident set size (KB) = 1698740 + 0: The total amount of wall time = 222.731434 + 0: The maximum resident set size (KB) = 1699288 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... -Moving baseline 003 cpld_control_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_gfsv17_iau_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_gfsv17_iau_intel +Checking test 003 cpld_control_gfsv17_iau_intel results .... +Moving baseline 003 cpld_control_gfsv17_iau_intel files .... + Moving sfcf012.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving 20210323.000000.out_pnt.ww3 .........OK + Moving 20210323.000000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 143.594711 + 0: The maximum resident set size (KB) = 1092124 + +Test 003 cpld_control_gfsv17_iau_intel PASS + + +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_p8_intel +Checking test 004 cpld_control_p8_intel results .... +Moving baseline 004 cpld_control_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -279,16 +296,16 @@ Moving baseline 003 cpld_control_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.071517 - 0: The maximum resident set size (KB) = 3177044 + 0: The total amount of wall time = 342.885640 + 0: The maximum resident set size (KB) = 3188912 -Test 003 cpld_control_p8_intel PASS +Test 004 cpld_control_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_ciceC_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_ciceC_p8_intel -Checking test 004 cpld_control_ciceC_p8_intel results .... -Moving baseline 004 cpld_control_ciceC_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_ciceC_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_ciceC_p8_intel +Checking test 005 cpld_control_ciceC_p8_intel results .... +Moving baseline 005 cpld_control_ciceC_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -352,16 +369,16 @@ Moving baseline 004 cpld_control_ciceC_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.083085 - 0: The maximum resident set size (KB) = 3174128 + 0: The total amount of wall time = 336.020639 + 0: The maximum resident set size (KB) = 3175828 -Test 004 cpld_control_ciceC_p8_intel PASS +Test 005 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c192_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_c192_p8_intel -Checking test 005 cpld_control_c192_p8_intel results .... -Moving baseline 005 cpld_control_c192_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_c192_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_c192_p8_intel +Checking test 006 cpld_control_c192_p8_intel results .... +Moving baseline 006 cpld_control_c192_p8_intel files .... Moving sfcf030.tile1.nc .........OK Moving sfcf030.tile2.nc .........OK Moving sfcf030.tile3.nc .........OK @@ -413,16 +430,16 @@ Moving baseline 005 cpld_control_c192_p8_intel files .... Moving 20210323.120000.out_grd.ww3 .........OK Moving 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 583.587152 - 0: The maximum resident set size (KB) = 3413044 + 0: The total amount of wall time = 576.610196 + 0: The maximum resident set size (KB) = 3324816 -Test 005 cpld_control_c192_p8_intel PASS +Test 006 cpld_control_c192_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_bmark_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_bmark_p8_intel -Checking test 006 cpld_bmark_p8_intel results .... -Moving baseline 006 cpld_bmark_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_bmark_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_bmark_p8_intel +Checking test 007 cpld_bmark_p8_intel results .... +Moving baseline 007 cpld_bmark_p8_intel files .... Moving sfcf006.nc .........OK Moving atmf006.nc .........OK Moving GFSFLX.GrbF06 .........OK @@ -469,16 +486,16 @@ Moving baseline 006 cpld_bmark_p8_intel files .... Moving 20130401.060000.out_pnt.ww3 .........OK Moving 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 627.505965 - 0: The maximum resident set size (KB) = 4102796 + 0: The total amount of wall time = 634.542246 + 0: The maximum resident set size (KB) = 4141572 -Test 006 cpld_bmark_p8_intel PASS +Test 007 cpld_bmark_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_noaero_p8_intel -Checking test 007 cpld_control_noaero_p8_intel results .... -Moving baseline 007 cpld_control_noaero_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_noaero_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_noaero_p8_intel +Checking test 008 cpld_control_noaero_p8_intel results .... +Moving baseline 008 cpld_control_noaero_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -541,16 +558,16 @@ Moving baseline 007 cpld_control_noaero_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.362452 - 0: The maximum resident set size (KB) = 1724832 + 0: The total amount of wall time = 263.573755 + 0: The maximum resident set size (KB) = 1729792 -Test 007 cpld_control_noaero_p8_intel PASS +Test 008 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c96_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_nowave_noaero_p8_intel -Checking test 008 cpld_control_nowave_noaero_p8_intel results .... -Moving baseline 008 cpld_control_nowave_noaero_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_c96_noaero_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_nowave_noaero_p8_intel +Checking test 009 cpld_control_nowave_noaero_p8_intel results .... +Moving baseline 009 cpld_control_nowave_noaero_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -611,16 +628,16 @@ Moving baseline 008 cpld_control_nowave_noaero_p8_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.801786 - 0: The maximum resident set size (KB) = 1786404 + 0: The total amount of wall time = 258.017454 + 0: The maximum resident set size (KB) = 1778900 -Test 008 cpld_control_nowave_noaero_p8_intel PASS +Test 009 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_p8_intel -Checking test 009 cpld_debug_p8_intel results .... -Moving baseline 009 cpld_debug_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_debug_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_debug_p8_intel +Checking test 010 cpld_debug_p8_intel results .... +Moving baseline 010 cpld_debug_p8_intel files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -672,16 +689,16 @@ Moving baseline 009 cpld_debug_p8_intel files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 508.201409 - 0: The maximum resident set size (KB) = 3242400 + 0: The total amount of wall time = 515.403367 + 0: The maximum resident set size (KB) = 3197568 -Test 009 cpld_debug_p8_intel PASS +Test 010 cpld_debug_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_noaero_p8_intel -Checking test 010 cpld_debug_noaero_p8_intel results .... -Moving baseline 010 cpld_debug_noaero_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_debug_noaero_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_debug_noaero_p8_intel +Checking test 011 cpld_debug_noaero_p8_intel results .... +Moving baseline 011 cpld_debug_noaero_p8_intel files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -732,16 +749,16 @@ Moving baseline 010 cpld_debug_noaero_p8_intel files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.380603 - 0: The maximum resident set size (KB) = 1741952 + 0: The total amount of wall time = 360.126409 + 0: The maximum resident set size (KB) = 1756796 -Test 010 cpld_debug_noaero_p8_intel PASS +Test 011 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_noaero_p8_agrid_intel -Checking test 011 cpld_control_noaero_p8_agrid_intel results .... -Moving baseline 011 cpld_control_noaero_p8_agrid_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_noaero_p8_agrid_intel +Checking test 012 cpld_control_noaero_p8_agrid_intel results .... +Moving baseline 012 cpld_control_noaero_p8_agrid_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -802,16 +819,16 @@ Moving baseline 011 cpld_control_noaero_p8_agrid_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.467285 - 0: The maximum resident set size (KB) = 1772140 + 0: The total amount of wall time = 270.861012 + 0: The maximum resident set size (KB) = 1724316 -Test 011 cpld_control_noaero_p8_agrid_intel PASS +Test 012 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_c48_intel -Checking test 012 cpld_control_c48_intel results .... -Moving baseline 012 cpld_control_c48_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_c48_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_c48_intel +Checking test 013 cpld_control_c48_intel results .... +Moving baseline 013 cpld_control_c48_intel files .... Moving sfcf024.tile1.nc .........OK Moving sfcf024.tile2.nc .........OK Moving sfcf024.tile3.nc .........OK @@ -860,16 +877,16 @@ Moving baseline 012 cpld_control_c48_intel files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 577.822339 - 0: The maximum resident set size (KB) = 2805176 + 0: The total amount of wall time = 581.697997 + 0: The maximum resident set size (KB) = 2829256 -Test 012 cpld_control_c48_intel PASS +Test 013 cpld_control_c48_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_faster_intel -Checking test 013 cpld_control_p8_faster_intel results .... -Moving baseline 013 cpld_control_p8_faster_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_p8_faster_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_p8_faster_intel +Checking test 014 cpld_control_p8_faster_intel results .... +Moving baseline 014 cpld_control_p8_faster_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -933,16 +950,16 @@ Moving baseline 013 cpld_control_p8_faster_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.335960 - 0: The maximum resident set size (KB) = 3207544 + 0: The total amount of wall time = 318.251120 + 0: The maximum resident set size (KB) = 3200092 -Test 013 cpld_control_p8_faster_intel PASS +Test 014 cpld_control_p8_faster_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_pdlib_p8_intel -Checking test 014 cpld_control_pdlib_p8_intel results .... -Moving baseline 014 cpld_control_pdlib_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_pdlib_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_pdlib_p8_intel +Checking test 015 cpld_control_pdlib_p8_intel results .... +Moving baseline 015 cpld_control_pdlib_p8_intel files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -1005,16 +1022,16 @@ Moving baseline 014 cpld_control_pdlib_p8_intel files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1190.792553 - 0: The maximum resident set size (KB) = 1762360 + 0: The total amount of wall time = 1189.878896 + 0: The maximum resident set size (KB) = 1761900 -Test 014 cpld_control_pdlib_p8_intel PASS +Test 015 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_pdlib_p8_intel -Checking test 015 cpld_debug_pdlib_p8_intel results .... -Moving baseline 015 cpld_debug_pdlib_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_debug_pdlib_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_debug_pdlib_p8_intel +Checking test 016 cpld_debug_pdlib_p8_intel results .... +Moving baseline 016 cpld_debug_pdlib_p8_intel files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -1065,16 +1082,16 @@ Moving baseline 015 cpld_debug_pdlib_p8_intel files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1352.505242 - 0: The maximum resident set size (KB) = 1711976 + 0: The total amount of wall time = 1384.655024 + 0: The maximum resident set size (KB) = 1713316 -Test 015 cpld_debug_pdlib_p8_intel PASS +Test 016 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_flake_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_flake_intel -Checking test 016 control_flake_intel results .... -Moving baseline 016 control_flake_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_flake_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_flake_intel +Checking test 017 control_flake_intel results .... +Moving baseline 017 control_flake_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1084,16 +1101,16 @@ Moving baseline 016 control_flake_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.802178 - 0: The maximum resident set size (KB) = 689468 + 0: The total amount of wall time = 191.304103 + 0: The maximum resident set size (KB) = 690300 -Test 016 control_flake_intel PASS +Test 017 control_flake_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_intel -Checking test 017 control_CubedSphereGrid_intel results .... -Moving baseline 017 control_CubedSphereGrid_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_CubedSphereGrid_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_CubedSphereGrid_intel +Checking test 018 control_CubedSphereGrid_intel results .... +Moving baseline 018 control_CubedSphereGrid_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -1119,16 +1136,16 @@ Moving baseline 017 control_CubedSphereGrid_intel files .... Moving atmf024.tile5.nc .........OK Moving atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.109375 - 0: The maximum resident set size (KB) = 638472 + 0: The total amount of wall time = 132.585593 + 0: The maximum resident set size (KB) = 618996 -Test 017 control_CubedSphereGrid_intel PASS +Test 018 control_CubedSphereGrid_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_parallel_intel -Checking test 018 control_CubedSphereGrid_parallel_intel results .... -Moving baseline 018 control_CubedSphereGrid_parallel_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_CubedSphereGrid_parallel_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_CubedSphereGrid_parallel_intel +Checking test 019 control_CubedSphereGrid_parallel_intel results .... +Moving baseline 019 control_CubedSphereGrid_parallel_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1142,16 +1159,16 @@ Moving baseline 018 control_CubedSphereGrid_parallel_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.026479 - 0: The maximum resident set size (KB) = 629752 + 0: The total amount of wall time = 138.878298 + 0: The maximum resident set size (KB) = 642036 -Test 018 control_CubedSphereGrid_parallel_intel PASS +Test 019 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_latlon_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_latlon_intel -Checking test 019 control_latlon_intel results .... -Moving baseline 019 control_latlon_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_latlon_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_latlon_intel +Checking test 020 control_latlon_intel results .... +Moving baseline 020 control_latlon_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1161,16 +1178,16 @@ Moving baseline 019 control_latlon_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.849339 - 0: The maximum resident set size (KB) = 634348 + 0: The total amount of wall time = 137.350784 + 0: The maximum resident set size (KB) = 604672 -Test 019 control_latlon_intel PASS +Test 020 control_latlon_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wrtGauss_netcdf_parallel_intel -Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... -Moving baseline 020 control_wrtGauss_netcdf_parallel_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_wrtGauss_netcdf_parallel_intel +Checking test 021 control_wrtGauss_netcdf_parallel_intel results .... +Moving baseline 021 control_wrtGauss_netcdf_parallel_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1180,16 +1197,16 @@ Moving baseline 020 control_wrtGauss_netcdf_parallel_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.092302 - 0: The maximum resident set size (KB) = 626696 + 0: The total amount of wall time = 135.754615 + 0: The maximum resident set size (KB) = 638204 -Test 020 control_wrtGauss_netcdf_parallel_intel PASS +Test 021 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c48_intel -Checking test 021 control_c48_intel results .... -Moving baseline 021 control_c48_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_c48_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_c48_intel +Checking test 022 control_c48_intel results .... +Moving baseline 022 control_c48_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1227,16 +1244,16 @@ Moving baseline 021 control_c48_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 372.119646 -0: The maximum resident set size (KB) = 830548 +0: The total amount of wall time = 368.444043 +0: The maximum resident set size (KB) = 825452 -Test 021 control_c48_intel PASS +Test 022 control_c48_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c192_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c192_intel -Checking test 022 control_c192_intel results .... -Moving baseline 022 control_c192_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_c192_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_c192_intel +Checking test 023 control_c192_intel results .... +Moving baseline 023 control_c192_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -1246,16 +1263,16 @@ Moving baseline 022 control_c192_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 537.104865 - 0: The maximum resident set size (KB) = 786392 + 0: The total amount of wall time = 535.284509 + 0: The maximum resident set size (KB) = 790244 -Test 022 control_c192_intel PASS +Test 023 control_c192_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c384_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c384_intel -Checking test 023 control_c384_intel results .... -Moving baseline 023 control_c384_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_c384_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_c384_intel +Checking test 024 control_c384_intel results .... +Moving baseline 024 control_c384_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1265,16 +1282,16 @@ Moving baseline 023 control_c384_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.861715 - 0: The maximum resident set size (KB) = 1388224 + 0: The total amount of wall time = 530.010727 + 0: The maximum resident set size (KB) = 1381716 -Test 023 control_c384_intel PASS +Test 024 control_c384_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c384gdas_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c384gdas_intel -Checking test 024 control_c384gdas_intel results .... -Moving baseline 024 control_c384gdas_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_c384gdas_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_c384gdas_intel +Checking test 025 control_c384gdas_intel results .... +Moving baseline 025 control_c384gdas_intel files .... Moving sfcf000.nc .........OK Moving sfcf006.nc .........OK Moving atmf000.nc .........OK @@ -1316,16 +1333,16 @@ Moving baseline 024 control_c384gdas_intel files .... Moving RESTART/20210322.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.174838 - 0: The maximum resident set size (KB) = 1475104 + 0: The total amount of wall time = 465.730635 + 0: The maximum resident set size (KB) = 1491600 -Test 024 control_c384gdas_intel PASS +Test 025 control_c384gdas_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_intel -Checking test 025 control_stochy_intel results .... -Moving baseline 025 control_stochy_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_stochy_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_stochy_intel +Checking test 026 control_stochy_intel results .... +Moving baseline 026 control_stochy_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1335,16 +1352,16 @@ Moving baseline 025 control_stochy_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.987876 - 0: The maximum resident set size (KB) = 640276 + 0: The total amount of wall time = 87.999591 + 0: The maximum resident set size (KB) = 642100 -Test 025 control_stochy_intel PASS +Test 026 control_stochy_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_lndp_intel -Checking test 026 control_lndp_intel results .... -Moving baseline 026 control_lndp_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_lndp_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_lndp_intel +Checking test 027 control_lndp_intel results .... +Moving baseline 027 control_lndp_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -1354,16 +1371,16 @@ Moving baseline 026 control_lndp_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.453733 - 0: The maximum resident set size (KB) = 640004 + 0: The total amount of wall time = 83.654419 + 0: The maximum resident set size (KB) = 640584 -Test 026 control_lndp_intel PASS +Test 027 control_lndp_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_iovr4_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_iovr4_intel -Checking test 027 control_iovr4_intel results .... -Moving baseline 027 control_iovr4_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_iovr4_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_iovr4_intel +Checking test 028 control_iovr4_intel results .... +Moving baseline 028 control_iovr4_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1377,16 +1394,16 @@ Moving baseline 027 control_iovr4_intel files .... Moving GFSPRS.GrbF21 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.494310 - 0: The maximum resident set size (KB) = 645300 + 0: The total amount of wall time = 138.535539 + 0: The maximum resident set size (KB) = 636420 -Test 027 control_iovr4_intel PASS +Test 028 control_iovr4_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_iovr5_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_iovr5_intel -Checking test 028 control_iovr5_intel results .... -Moving baseline 028 control_iovr5_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_iovr5_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_iovr5_intel +Checking test 029 control_iovr5_intel results .... +Moving baseline 029 control_iovr5_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1400,16 +1417,16 @@ Moving baseline 028 control_iovr5_intel files .... Moving GFSPRS.GrbF21 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.175026 - 0: The maximum resident set size (KB) = 618188 + 0: The total amount of wall time = 138.399863 + 0: The maximum resident set size (KB) = 610932 -Test 028 control_iovr5_intel PASS +Test 029 control_iovr5_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_intel -Checking test 029 control_p8_intel results .... -Moving baseline 029 control_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_intel +Checking test 030 control_p8_intel results .... +Moving baseline 030 control_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1455,16 +1472,16 @@ Moving baseline 029 control_p8_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.595804 - 0: The maximum resident set size (KB) = 1609404 + 0: The total amount of wall time = 167.170417 + 0: The maximum resident set size (KB) = 1612604 -Test 029 control_p8_intel PASS +Test 030 control_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_lndp_intel -Checking test 030 control_p8_lndp_intel results .... -Moving baseline 030 control_p8_lndp_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_lndp_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_lndp_intel +Checking test 031 control_p8_lndp_intel results .... +Moving baseline 031 control_p8_lndp_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1482,16 +1499,16 @@ Moving baseline 030 control_p8_lndp_intel files .... Moving GFSPRS.GrbF24 .........OK Moving GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 315.141834 - 0: The maximum resident set size (KB) = 1621964 + 0: The total amount of wall time = 313.600247 + 0: The maximum resident set size (KB) = 1606460 -Test 030 control_p8_lndp_intel PASS +Test 031 control_p8_lndp_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_rrtmgp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_rrtmgp_intel -Checking test 031 control_p8_rrtmgp_intel results .... -Moving baseline 031 control_p8_rrtmgp_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_rrtmgp_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_rrtmgp_intel +Checking test 032 control_p8_rrtmgp_intel results .... +Moving baseline 032 control_p8_rrtmgp_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1537,16 +1554,16 @@ Moving baseline 031 control_p8_rrtmgp_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.893216 - 0: The maximum resident set size (KB) = 1684780 + 0: The total amount of wall time = 227.661009 + 0: The maximum resident set size (KB) = 1682344 -Test 031 control_p8_rrtmgp_intel PASS +Test 032 control_p8_rrtmgp_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_mynn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_mynn_intel -Checking test 032 control_p8_mynn_intel results .... -Moving baseline 032 control_p8_mynn_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_mynn_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_mynn_intel +Checking test 033 control_p8_mynn_intel results .... +Moving baseline 033 control_p8_mynn_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1592,16 +1609,16 @@ Moving baseline 032 control_p8_mynn_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.835646 - 0: The maximum resident set size (KB) = 1601764 + 0: The total amount of wall time = 172.702833 + 0: The maximum resident set size (KB) = 1610072 -Test 032 control_p8_mynn_intel PASS +Test 033 control_p8_mynn_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//merra2_thompson_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/merra2_thompson_intel -Checking test 033 merra2_thompson_intel results .... -Moving baseline 033 merra2_thompson_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//merra2_thompson_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/merra2_thompson_intel +Checking test 034 merra2_thompson_intel results .... +Moving baseline 034 merra2_thompson_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1647,16 +1664,16 @@ Moving baseline 033 merra2_thompson_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.602636 - 0: The maximum resident set size (KB) = 1628568 + 0: The total amount of wall time = 197.152324 + 0: The maximum resident set size (KB) = 1607716 -Test 033 merra2_thompson_intel PASS +Test 034 merra2_thompson_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_control_intel -Checking test 034 regional_control_intel results .... -Moving baseline 034 regional_control_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_control_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_control_intel +Checking test 035 regional_control_intel results .... +Moving baseline 035 regional_control_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -1666,47 +1683,47 @@ Moving baseline 034 regional_control_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.207814 - 0: The maximum resident set size (KB) = 1105464 + 0: The total amount of wall time = 291.495609 + 0: The maximum resident set size (KB) = 1094492 -Test 034 regional_control_intel PASS +Test 035 regional_control_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_noquilt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_noquilt_intel -Checking test 035 regional_noquilt_intel results .... -Moving baseline 035 regional_noquilt_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_noquilt_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_noquilt_intel +Checking test 036 regional_noquilt_intel results .... +Moving baseline 036 regional_noquilt_intel files .... Moving atmos_4xdaily.nc .........OK Moving fv3_history2d.nc .........OK Moving fv3_history.nc .........OK Moving RESTART/fv_core.res.tile1_new.nc .........OK Moving RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 288.352831 - 0: The maximum resident set size (KB) = 1363132 + 0: The total amount of wall time = 297.960869 + 0: The maximum resident set size (KB) = 1366524 -Test 035 regional_noquilt_intel PASS +Test 036 regional_noquilt_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_netcdf_parallel_intel -Checking test 036 regional_netcdf_parallel_intel results .... -Moving baseline 036 regional_netcdf_parallel_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_netcdf_parallel_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_netcdf_parallel_intel +Checking test 037 regional_netcdf_parallel_intel results .... +Moving baseline 037 regional_netcdf_parallel_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK Moving phyf006.nc .........OK - 0: The total amount of wall time = 289.562909 - 0: The maximum resident set size (KB) = 1100352 + 0: The total amount of wall time = 291.205719 + 0: The maximum resident set size (KB) = 1100952 -Test 036 regional_netcdf_parallel_intel PASS +Test 037 regional_netcdf_parallel_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//fv3_regional_wofs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_wofs_intel -Checking test 037 regional_wofs_intel results .... -Moving baseline 037 regional_wofs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//fv3_regional_wofs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_wofs_intel +Checking test 038 regional_wofs_intel results .... +Moving baseline 038 regional_wofs_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -1716,16 +1733,16 @@ Moving baseline 037 regional_wofs_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.302177 - 0: The maximum resident set size (KB) = 921324 + 0: The total amount of wall time = 375.526928 + 0: The maximum resident set size (KB) = 915092 -Test 037 regional_wofs_intel PASS +Test 038 regional_wofs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_intel -Checking test 038 rap_control_intel results .... -Moving baseline 038 rap_control_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_intel +Checking test 039 rap_control_intel results .... +Moving baseline 039 rap_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -1771,16 +1788,16 @@ Moving baseline 038 rap_control_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.664369 - 0: The maximum resident set size (KB) = 1230944 + 0: The total amount of wall time = 448.753904 + 0: The maximum resident set size (KB) = 1236124 -Test 038 rap_control_intel PASS +Test 039 rap_control_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_spp_sppt_shum_skeb_intel -Checking test 039 regional_spp_sppt_shum_skeb_intel results .... -Moving baseline 039 regional_spp_sppt_shum_skeb_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_spp_sppt_shum_skeb_intel +Checking test 040 regional_spp_sppt_shum_skeb_intel results .... +Moving baseline 040 regional_spp_sppt_shum_skeb_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK @@ -1790,16 +1807,16 @@ Moving baseline 039 regional_spp_sppt_shum_skeb_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 231.120517 - 0: The maximum resident set size (KB) = 1192800 + 0: The total amount of wall time = 229.734209 + 0: The maximum resident set size (KB) = 1205952 -Test 039 regional_spp_sppt_shum_skeb_intel PASS +Test 040 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_intel -Checking test 040 rap_sfcdiff_intel results .... -Moving baseline 040 rap_sfcdiff_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_sfcdiff_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_sfcdiff_intel +Checking test 041 rap_sfcdiff_intel results .... +Moving baseline 041 rap_sfcdiff_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1845,16 +1862,16 @@ Moving baseline 040 rap_sfcdiff_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.742001 - 0: The maximum resident set size (KB) = 1224988 + 0: The total amount of wall time = 448.945559 + 0: The maximum resident set size (KB) = 1233204 -Test 040 rap_sfcdiff_intel PASS +Test 041 rap_sfcdiff_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_intel -Checking test 041 hrrr_control_intel results .... -Moving baseline 041 hrrr_control_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_intel +Checking test 042 hrrr_control_intel results .... +Moving baseline 042 hrrr_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1900,16 +1917,16 @@ Moving baseline 041 hrrr_control_intel files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.240525 - 0: The maximum resident set size (KB) = 1146824 + 0: The total amount of wall time = 226.332092 + 0: The maximum resident set size (KB) = 1152668 -Test 041 hrrr_control_intel PASS +Test 042 hrrr_control_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_intel -Checking test 042 rrfs_v1beta_intel results .... -Moving baseline 042 rrfs_v1beta_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1beta_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1beta_intel +Checking test 043 rrfs_v1beta_intel results .... +Moving baseline 043 rrfs_v1beta_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1955,16 +1972,16 @@ Moving baseline 042 rrfs_v1beta_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.614286 - 0: The maximum resident set size (KB) = 1198804 + 0: The total amount of wall time = 440.293185 + 0: The maximum resident set size (KB) = 1197620 -Test 042 rrfs_v1beta_intel PASS +Test 043 rrfs_v1beta_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1nssl_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1nssl_intel -Checking test 043 rrfs_v1nssl_intel results .... -Moving baseline 043 rrfs_v1nssl_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1nssl_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1nssl_intel +Checking test 044 rrfs_v1nssl_intel results .... +Moving baseline 044 rrfs_v1nssl_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -1978,16 +1995,16 @@ Moving baseline 043 rrfs_v1nssl_intel files .... Moving GFSPRS.GrbF09 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.646314 - 0: The maximum resident set size (KB) = 802848 + 0: The total amount of wall time = 522.377700 + 0: The maximum resident set size (KB) = 801768 -Test 043 rrfs_v1nssl_intel PASS +Test 044 rrfs_v1nssl_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1nssl_nohailnoccn_intel -Checking test 044 rrfs_v1nssl_nohailnoccn_intel results .... -Moving baseline 044 rrfs_v1nssl_nohailnoccn_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1nssl_nohailnoccn_intel +Checking test 045 rrfs_v1nssl_nohailnoccn_intel results .... +Moving baseline 045 rrfs_v1nssl_nohailnoccn_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2001,16 +2018,16 @@ Moving baseline 044 rrfs_v1nssl_nohailnoccn_intel files .... Moving GFSPRS.GrbF09 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.723217 - 0: The maximum resident set size (KB) = 916952 + 0: The total amount of wall time = 508.697022 + 0: The maximum resident set size (KB) = 909024 -Test 044 rrfs_v1nssl_nohailnoccn_intel PASS +Test 045 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmg_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmg_intel -Checking test 045 control_csawmg_intel results .... -Moving baseline 045 control_csawmg_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_csawmg_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_csawmg_intel +Checking test 046 control_csawmg_intel results .... +Moving baseline 046 control_csawmg_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -2020,16 +2037,16 @@ Moving baseline 045 control_csawmg_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.565970 - 0: The maximum resident set size (KB) = 818156 + 0: The total amount of wall time = 341.297742 + 0: The maximum resident set size (KB) = 813432 -Test 045 control_csawmg_intel PASS +Test 046 control_csawmg_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmgt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmgt_intel -Checking test 046 control_csawmgt_intel results .... -Moving baseline 046 control_csawmgt_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_csawmgt_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_csawmgt_intel +Checking test 047 control_csawmgt_intel results .... +Moving baseline 047 control_csawmgt_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -2039,16 +2056,16 @@ Moving baseline 046 control_csawmgt_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.296059 - 0: The maximum resident set size (KB) = 817140 + 0: The total amount of wall time = 338.502557 + 0: The maximum resident set size (KB) = 819056 -Test 046 control_csawmgt_intel PASS +Test 047 control_csawmgt_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_intel -Checking test 047 control_ras_intel results .... -Moving baseline 047 control_ras_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_ras_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_ras_intel +Checking test 048 control_ras_intel results .... +Moving baseline 048 control_ras_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -2058,29 +2075,29 @@ Moving baseline 047 control_ras_intel files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.850820 - 0: The maximum resident set size (KB) = 811896 + 0: The total amount of wall time = 185.151880 + 0: The maximum resident set size (KB) = 819108 -Test 047 control_ras_intel PASS +Test 048 control_ras_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_intel -Checking test 048 control_wam_intel results .... -Moving baseline 048 control_wam_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_wam_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_wam_intel +Checking test 049 control_wam_intel results .... +Moving baseline 049 control_wam_intel files .... Moving sfcf024.nc .........OK Moving atmf024.nc .........OK - 0: The total amount of wall time = 115.415807 - 0: The maximum resident set size (KB) = 709136 + 0: The total amount of wall time = 112.817001 + 0: The maximum resident set size (KB) = 678376 -Test 048 control_wam_intel PASS +Test 049 control_wam_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_faster_intel -Checking test 049 control_p8_faster_intel results .... -Moving baseline 049 control_p8_faster_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_faster_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_faster_intel +Checking test 050 control_p8_faster_intel results .... +Moving baseline 050 control_p8_faster_intel files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -2126,16 +2143,16 @@ Moving baseline 049 control_p8_faster_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.881848 - 0: The maximum resident set size (KB) = 1606392 + 0: The total amount of wall time = 159.291123 + 0: The maximum resident set size (KB) = 1594344 -Test 049 control_p8_faster_intel PASS +Test 050 control_p8_faster_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_control_faster_intel -Checking test 050 regional_control_faster_intel results .... -Moving baseline 050 regional_control_faster_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_control_faster_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_control_faster_intel +Checking test 051 regional_control_faster_intel results .... +Moving baseline 051 regional_control_faster_intel files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -2145,16 +2162,16 @@ Moving baseline 050 regional_control_faster_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.089685 - 0: The maximum resident set size (KB) = 1103728 + 0: The total amount of wall time = 270.832046 + 0: The maximum resident set size (KB) = 1092888 -Test 050 regional_control_faster_intel PASS +Test 051 regional_control_faster_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_debug_intel -Checking test 051 control_CubedSphereGrid_debug_intel results .... -Moving baseline 051 control_CubedSphereGrid_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_CubedSphereGrid_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_CubedSphereGrid_debug_intel +Checking test 052 control_CubedSphereGrid_debug_intel results .... +Moving baseline 052 control_CubedSphereGrid_debug_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -2180,374 +2197,374 @@ Moving baseline 051 control_CubedSphereGrid_debug_intel files .... Moving atmf001.tile5.nc .........OK Moving atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.728067 - 0: The maximum resident set size (KB) = 798792 + 0: The total amount of wall time = 152.936222 + 0: The maximum resident set size (KB) = 795756 -Test 051 control_CubedSphereGrid_debug_intel PASS +Test 052 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 052 control_wrtGauss_netcdf_parallel_debug_intel results .... -Moving baseline 052 control_wrtGauss_netcdf_parallel_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 053 control_wrtGauss_netcdf_parallel_debug_intel results .... +Moving baseline 053 control_wrtGauss_netcdf_parallel_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 158.214582 - 0: The maximum resident set size (KB) = 801084 + 0: The total amount of wall time = 148.877645 + 0: The maximum resident set size (KB) = 804296 -Test 052 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 053 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_debug_intel -Checking test 053 control_stochy_debug_intel results .... -Moving baseline 053 control_stochy_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_stochy_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_stochy_debug_intel +Checking test 054 control_stochy_debug_intel results .... +Moving baseline 054 control_stochy_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 167.252321 - 0: The maximum resident set size (KB) = 804228 + 0: The total amount of wall time = 165.990738 + 0: The maximum resident set size (KB) = 806784 -Test 053 control_stochy_debug_intel PASS +Test 054 control_stochy_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_lndp_debug_intel -Checking test 054 control_lndp_debug_intel results .... -Moving baseline 054 control_lndp_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_lndp_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_lndp_debug_intel +Checking test 055 control_lndp_debug_intel results .... +Moving baseline 055 control_lndp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 151.824513 - 0: The maximum resident set size (KB) = 802968 + 0: The total amount of wall time = 147.828360 + 0: The maximum resident set size (KB) = 808428 -Test 054 control_lndp_debug_intel PASS +Test 055 control_lndp_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmg_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmg_debug_intel -Checking test 055 control_csawmg_debug_intel results .... -Moving baseline 055 control_csawmg_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_csawmg_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_csawmg_debug_intel +Checking test 056 control_csawmg_debug_intel results .... +Moving baseline 056 control_csawmg_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 227.070579 - 0: The maximum resident set size (KB) = 846580 + 0: The total amount of wall time = 234.428674 + 0: The maximum resident set size (KB) = 846664 -Test 055 control_csawmg_debug_intel PASS +Test 056 control_csawmg_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmgt_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmgt_debug_intel -Checking test 056 control_csawmgt_debug_intel results .... -Moving baseline 056 control_csawmgt_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_csawmgt_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_csawmgt_debug_intel +Checking test 057 control_csawmgt_debug_intel results .... +Moving baseline 057 control_csawmgt_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 233.222726 - 0: The maximum resident set size (KB) = 842548 + 0: The total amount of wall time = 232.680173 + 0: The maximum resident set size (KB) = 814172 -Test 056 control_csawmgt_debug_intel PASS +Test 057 control_csawmgt_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_debug_intel -Checking test 057 control_ras_debug_intel results .... -Moving baseline 057 control_ras_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_ras_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_ras_debug_intel +Checking test 058 control_ras_debug_intel results .... +Moving baseline 058 control_ras_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 153.364395 - 0: The maximum resident set size (KB) = 807476 + 0: The total amount of wall time = 150.292244 + 0: The maximum resident set size (KB) = 816120 -Test 057 control_ras_debug_intel PASS +Test 058 control_ras_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_diag_debug_intel -Checking test 058 control_diag_debug_intel results .... -Moving baseline 058 control_diag_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_diag_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_diag_debug_intel +Checking test 059 control_diag_debug_intel results .... +Moving baseline 059 control_diag_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 155.712727 - 0: The maximum resident set size (KB) = 854180 + 0: The total amount of wall time = 149.805172 + 0: The maximum resident set size (KB) = 864328 -Test 058 control_diag_debug_intel PASS +Test 059 control_diag_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_debug_p8_intel -Checking test 059 control_debug_p8_intel results .... -Moving baseline 059 control_debug_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_debug_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_debug_p8_intel +Checking test 060 control_debug_p8_intel results .... +Moving baseline 060 control_debug_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 169.410660 - 0: The maximum resident set size (KB) = 1585676 + 0: The total amount of wall time = 169.028966 + 0: The maximum resident set size (KB) = 1632388 -Test 059 control_debug_p8_intel PASS +Test 060 control_debug_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_debug_intel -Checking test 060 regional_debug_intel results .... -Moving baseline 060 regional_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_debug_intel +Checking test 061 regional_debug_intel results .... +Moving baseline 061 regional_debug_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK Moving phyf001.nc .........OK - 0: The total amount of wall time = 998.345880 - 0: The maximum resident set size (KB) = 1097704 + 0: The total amount of wall time = 991.793817 + 0: The maximum resident set size (KB) = 1104276 -Test 060 regional_debug_intel PASS +Test 061 regional_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_intel -Checking test 061 rap_control_debug_intel results .... -Moving baseline 061 rap_control_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_debug_intel +Checking test 062 rap_control_debug_intel results .... +Moving baseline 062 rap_control_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.199583 - 0: The maximum resident set size (KB) = 1177884 + 0: The total amount of wall time = 281.066790 + 0: The maximum resident set size (KB) = 1187092 -Test 061 rap_control_debug_intel PASS +Test 062 rap_control_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_intel -Checking test 062 hrrr_control_debug_intel results .... -Moving baseline 062 hrrr_control_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_debug_intel +Checking test 063 hrrr_control_debug_intel results .... +Moving baseline 063 hrrr_control_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 266.310021 - 0: The maximum resident set size (KB) = 1178600 + 0: The total amount of wall time = 270.623850 + 0: The maximum resident set size (KB) = 1190964 -Test 062 hrrr_control_debug_intel PASS +Test 063 hrrr_control_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_gf_debug_intel -Checking test 063 hrrr_gf_debug_intel results .... -Moving baseline 063 hrrr_gf_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_gf_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_gf_debug_intel +Checking test 064 hrrr_gf_debug_intel results .... +Moving baseline 064 hrrr_gf_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.956125 - 0: The maximum resident set size (KB) = 1182092 + 0: The total amount of wall time = 272.627125 + 0: The maximum resident set size (KB) = 1185580 -Test 063 hrrr_gf_debug_intel PASS +Test 064 hrrr_gf_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_c3_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_c3_debug_intel -Checking test 064 hrrr_c3_debug_intel results .... -Moving baseline 064 hrrr_c3_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_c3_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_c3_debug_intel +Checking test 065 hrrr_c3_debug_intel results .... +Moving baseline 065 hrrr_c3_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 274.135778 - 0: The maximum resident set size (KB) = 1155424 + 0: The total amount of wall time = 274.569418 + 0: The maximum resident set size (KB) = 1185564 -Test 064 hrrr_c3_debug_intel PASS +Test 065 hrrr_c3_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_diag_debug_intel -Checking test 065 rap_diag_debug_intel results .... -Moving baseline 065 rap_diag_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_diag_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_diag_debug_intel +Checking test 066 rap_diag_debug_intel results .... +Moving baseline 066 rap_diag_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 290.212712 - 0: The maximum resident set size (KB) = 1261536 + 0: The total amount of wall time = 292.132765 + 0: The maximum resident set size (KB) = 1263700 -Test 065 rap_diag_debug_intel PASS +Test 066 rap_diag_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_cires_ugwp_debug_intel -Checking test 066 rap_cires_ugwp_debug_intel results .... -Moving baseline 066 rap_cires_ugwp_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_cires_ugwp_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_cires_ugwp_debug_intel +Checking test 067 rap_cires_ugwp_debug_intel results .... +Moving baseline 067 rap_cires_ugwp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 280.259747 - 0: The maximum resident set size (KB) = 1188416 + 0: The total amount of wall time = 280.561010 + 0: The maximum resident set size (KB) = 1177500 -Test 066 rap_cires_ugwp_debug_intel PASS +Test 067 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_lndp_debug_intel -Checking test 067 rap_lndp_debug_intel results .... -Moving baseline 067 rap_lndp_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_lndp_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_lndp_debug_intel +Checking test 068 rap_lndp_debug_intel results .... +Moving baseline 068 rap_lndp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 283.605867 - 0: The maximum resident set size (KB) = 1185412 + 0: The total amount of wall time = 283.354858 + 0: The maximum resident set size (KB) = 1170708 -Test 067 rap_lndp_debug_intel PASS +Test 068 rap_lndp_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_progcld_thompson_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_progcld_thompson_debug_intel -Checking test 068 rap_progcld_thompson_debug_intel results .... -Moving baseline 068 rap_progcld_thompson_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_progcld_thompson_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_progcld_thompson_debug_intel +Checking test 069 rap_progcld_thompson_debug_intel results .... +Moving baseline 069 rap_progcld_thompson_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 274.280979 - 0: The maximum resident set size (KB) = 1187652 + 0: The total amount of wall time = 275.350719 + 0: The maximum resident set size (KB) = 1188540 -Test 068 rap_progcld_thompson_debug_intel PASS +Test 069 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_debug_intel -Checking test 069 rap_noah_debug_intel results .... -Moving baseline 069 rap_noah_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_noah_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_noah_debug_intel +Checking test 070 rap_noah_debug_intel results .... +Moving baseline 070 rap_noah_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 267.876547 - 0: The maximum resident set size (KB) = 1187092 + 0: The total amount of wall time = 266.896852 + 0: The maximum resident set size (KB) = 1180612 -Test 069 rap_noah_debug_intel PASS +Test 070 rap_noah_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_debug_intel -Checking test 070 rap_sfcdiff_debug_intel results .... -Moving baseline 070 rap_sfcdiff_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_sfcdiff_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_sfcdiff_debug_intel +Checking test 071 rap_sfcdiff_debug_intel results .... +Moving baseline 071 rap_sfcdiff_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.258811 - 0: The maximum resident set size (KB) = 1178928 + 0: The total amount of wall time = 274.829377 + 0: The maximum resident set size (KB) = 1184648 -Test 070 rap_sfcdiff_debug_intel PASS +Test 071 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 071 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... -Moving baseline 071 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 072 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +Moving baseline 072 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 446.359894 - 0: The maximum resident set size (KB) = 1187164 + 0: The total amount of wall time = 458.266608 + 0: The maximum resident set size (KB) = 1182256 -Test 071 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 072 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_debug_intel -Checking test 072 rrfs_v1beta_debug_intel results .... -Moving baseline 072 rrfs_v1beta_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1beta_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1beta_debug_intel +Checking test 073 rrfs_v1beta_debug_intel results .... +Moving baseline 073 rrfs_v1beta_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.513474 - 0: The maximum resident set size (KB) = 1176720 + 0: The total amount of wall time = 270.399385 + 0: The maximum resident set size (KB) = 1182228 -Test 072 rrfs_v1beta_debug_intel PASS +Test 073 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_clm_lake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_clm_lake_debug_intel -Checking test 073 rap_clm_lake_debug_intel results .... -Moving baseline 073 rap_clm_lake_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_clm_lake_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_clm_lake_debug_intel +Checking test 074 rap_clm_lake_debug_intel results .... +Moving baseline 074 rap_clm_lake_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 336.696336 - 0: The maximum resident set size (KB) = 1157596 + 0: The total amount of wall time = 349.222231 + 0: The maximum resident set size (KB) = 1182936 -Test 073 rap_clm_lake_debug_intel PASS +Test 074 rap_clm_lake_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_flake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_flake_debug_intel -Checking test 074 rap_flake_debug_intel results .... -Moving baseline 074 rap_flake_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_flake_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_flake_debug_intel +Checking test 075 rap_flake_debug_intel results .... +Moving baseline 075 rap_flake_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 276.808011 - 0: The maximum resident set size (KB) = 1181564 + 0: The total amount of wall time = 271.886458 + 0: The maximum resident set size (KB) = 1162584 -Test 074 rap_flake_debug_intel PASS +Test 075 rap_flake_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_debug_intel -Checking test 075 control_wam_debug_intel results .... -Moving baseline 075 control_wam_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_wam_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_wam_debug_intel +Checking test 076 control_wam_debug_intel results .... +Moving baseline 076 control_wam_debug_intel files .... Moving sfcf019.nc .........OK Moving atmf019.nc .........OK - 0: The total amount of wall time = 274.594723 - 0: The maximum resident set size (KB) = 589996 + 0: The total amount of wall time = 276.968131 + 0: The maximum resident set size (KB) = 561028 -Test 075 control_wam_debug_intel PASS +Test 076 control_wam_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... -Moving baseline 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 077 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +Moving baseline 077 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK @@ -2557,16 +2574,16 @@ Moving baseline 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 217.944868 - 0: The maximum resident set size (KB) = 1105360 + 0: The total amount of wall time = 227.353088 + 0: The maximum resident set size (KB) = 1071912 -Test 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 077 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn32_phy32_intel -Checking test 077 rap_control_dyn32_phy32_intel results .... -Moving baseline 077 rap_control_dyn32_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_dyn32_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn32_phy32_intel +Checking test 078 rap_control_dyn32_phy32_intel results .... +Moving baseline 078 rap_control_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2612,16 +2629,16 @@ Moving baseline 077 rap_control_dyn32_phy32_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.957606 - 0: The maximum resident set size (KB) = 1108132 + 0: The total amount of wall time = 378.399188 + 0: The maximum resident set size (KB) = 1093132 -Test 077 rap_control_dyn32_phy32_intel PASS +Test 078 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_dyn32_phy32_intel -Checking test 078 hrrr_control_dyn32_phy32_intel results .... -Moving baseline 078 hrrr_control_dyn32_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_dyn32_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_dyn32_phy32_intel +Checking test 079 hrrr_control_dyn32_phy32_intel results .... +Moving baseline 079 hrrr_control_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2667,16 +2684,16 @@ Moving baseline 078 hrrr_control_dyn32_phy32_intel files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.936162 - 0: The maximum resident set size (KB) = 1036996 + 0: The total amount of wall time = 194.715395 + 0: The maximum resident set size (KB) = 1023800 -Test 078 hrrr_control_dyn32_phy32_intel PASS +Test 079 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_control_intel -Checking test 079 conus13km_control_intel results .... -Moving baseline 079 conus13km_control_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_control_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_control_intel +Checking test 080 conus13km_control_intel results .... +Moving baseline 080 conus13km_control_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving sfcf002.nc .........OK @@ -2691,29 +2708,29 @@ Moving baseline 079 conus13km_control_intel files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.056463 - 0: The maximum resident set size (KB) = 1246612 + 0: The total amount of wall time = 115.174483 + 0: The maximum resident set size (KB) = 1250748 -Test 079 conus13km_control_intel PASS +Test 080 conus13km_control_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_restart_mismatch_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_restart_mismatch_intel -Checking test 080 conus13km_restart_mismatch_intel results .... -Moving baseline 080 conus13km_restart_mismatch_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_restart_mismatch_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_restart_mismatch_intel +Checking test 081 conus13km_restart_mismatch_intel results .... +Moving baseline 081 conus13km_restart_mismatch_intel files .... Moving sfcf002.nc .........OK Moving atmf002.nc .........OK - 0: The total amount of wall time = 62.417834 - 0: The maximum resident set size (KB) = 1182112 + 0: The total amount of wall time = 63.162937 + 0: The maximum resident set size (KB) = 1178432 -Test 080 conus13km_restart_mismatch_intel PASS +Test 081 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_intel -Checking test 081 rap_control_dyn64_phy32_intel results .... -Moving baseline 081 rap_control_dyn64_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_dyn64_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn64_phy32_intel +Checking test 082 rap_control_dyn64_phy32_intel results .... +Moving baseline 082 rap_control_dyn64_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -2759,46 +2776,46 @@ Moving baseline 081 rap_control_dyn64_phy32_intel files .... Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.459087 - 0: The maximum resident set size (KB) = 1095584 + 0: The total amount of wall time = 246.930388 + 0: The maximum resident set size (KB) = 1100288 -Test 081 rap_control_dyn64_phy32_intel PASS +Test 082 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_dyn32_phy32_intel -Checking test 082 rap_control_debug_dyn32_phy32_intel results .... -Moving baseline 082 rap_control_debug_dyn32_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_debug_dyn32_phy32_intel +Checking test 083 rap_control_debug_dyn32_phy32_intel results .... +Moving baseline 083 rap_control_debug_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 268.808709 - 0: The maximum resident set size (KB) = 1063724 + 0: The total amount of wall time = 267.320891 + 0: The maximum resident set size (KB) = 1062928 -Test 082 rap_control_debug_dyn32_phy32_intel PASS +Test 083 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_dyn32_phy32_intel -Checking test 083 hrrr_control_debug_dyn32_phy32_intel results .... -Moving baseline 083 hrrr_control_debug_dyn32_phy32_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_debug_dyn32_phy32_intel +Checking test 084 hrrr_control_debug_dyn32_phy32_intel results .... +Moving baseline 084 hrrr_control_debug_dyn32_phy32_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 258.497200 - 0: The maximum resident set size (KB) = 1059060 + 0: The total amount of wall time = 260.169520 + 0: The maximum resident set size (KB) = 1072824 -Test 083 hrrr_control_debug_dyn32_phy32_intel PASS +Test 084 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_debug_intel -Checking test 084 conus13km_debug_intel results .... -Moving baseline 084 conus13km_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_debug_intel +Checking test 085 conus13km_debug_intel results .... +Moving baseline 085 conus13km_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK @@ -2811,73 +2828,73 @@ Moving baseline 084 conus13km_debug_intel files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 823.319960 - 0: The maximum resident set size (KB) = 1235752 + 0: The total amount of wall time = 824.323383 + 0: The maximum resident set size (KB) = 1262012 -Test 084 conus13km_debug_intel PASS +Test 085 conus13km_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_radar_tten_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_radar_tten_debug_intel -Checking test 085 conus13km_radar_tten_debug_intel results .... -Moving baseline 085 conus13km_radar_tten_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_radar_tten_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_radar_tten_debug_intel +Checking test 086 conus13km_radar_tten_debug_intel results .... +Moving baseline 086 conus13km_radar_tten_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 843.771372 - 0: The maximum resident set size (KB) = 1336928 + 0: The total amount of wall time = 819.156717 + 0: The maximum resident set size (KB) = 1346216 -Test 085 conus13km_radar_tten_debug_intel PASS +Test 086 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_debug_intel -Checking test 086 rap_control_dyn64_phy32_debug_intel results .... -Moving baseline 086 rap_control_dyn64_phy32_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn64_phy32_debug_intel +Checking test 087 rap_control_dyn64_phy32_debug_intel results .... +Moving baseline 087 rap_control_dyn64_phy32_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 276.359400 - 0: The maximum resident set size (KB) = 1095544 + 0: The total amount of wall time = 276.515375 + 0: The maximum resident set size (KB) = 1100768 -Test 086 rap_control_dyn64_phy32_debug_intel PASS +Test 087 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_intel -Checking test 087 hafs_regional_atm_intel results .... -Moving baseline 087 hafs_regional_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_atm_intel +Checking test 088 hafs_regional_atm_intel results .... +Moving baseline 088 hafs_regional_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 216.452749 - 0: The maximum resident set size (KB) = 1230280 + 0: The total amount of wall time = 228.144715 + 0: The maximum resident set size (KB) = 1231596 -Test 087 hafs_regional_atm_intel PASS +Test 088 hafs_regional_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 088 hafs_regional_atm_thompson_gfdlsf_intel results .... -Moving baseline 088 hafs_regional_atm_thompson_gfdlsf_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 089 hafs_regional_atm_thompson_gfdlsf_intel results .... +Moving baseline 089 hafs_regional_atm_thompson_gfdlsf_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK - 0: The total amount of wall time = 333.339231 - 0: The maximum resident set size (KB) = 1583344 + 0: The total amount of wall time = 346.502876 + 0: The maximum resident set size (KB) = 1583088 -Test 088 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 089 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_ocn_intel -Checking test 089 hafs_regional_atm_ocn_intel results .... -Moving baseline 089 hafs_regional_atm_ocn_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_atm_ocn_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_atm_ocn_intel +Checking test 090 hafs_regional_atm_ocn_intel results .... +Moving baseline 090 hafs_regional_atm_ocn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving archv.2019_241_06.a .........OK @@ -2885,16 +2902,16 @@ Moving baseline 089 hafs_regional_atm_ocn_intel files .... Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 370.627859 - 0: The maximum resident set size (KB) = 1419300 + 0: The total amount of wall time = 372.015042 + 0: The maximum resident set size (KB) = 1411724 -Test 089 hafs_regional_atm_ocn_intel PASS +Test 090 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_wav_intel -Checking test 090 hafs_regional_atm_wav_intel results .... -Moving baseline 090 hafs_regional_atm_wav_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_atm_wav_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_atm_wav_intel +Checking test 091 hafs_regional_atm_wav_intel results .... +Moving baseline 091 hafs_regional_atm_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving 20190829.060000.out_grd.ww3 .........OK @@ -2902,16 +2919,16 @@ Moving baseline 090 hafs_regional_atm_wav_intel files .... Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 734.523217 - 0: The maximum resident set size (KB) = 1423084 + 0: The total amount of wall time = 736.298191 + 0: The maximum resident set size (KB) = 1433452 -Test 090 hafs_regional_atm_wav_intel PASS +Test 091 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_ocn_wav_intel -Checking test 091 hafs_regional_atm_ocn_wav_intel results .... -Moving baseline 091 hafs_regional_atm_ocn_wav_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_atm_ocn_wav_intel +Checking test 092 hafs_regional_atm_ocn_wav_intel results .... +Moving baseline 092 hafs_regional_atm_ocn_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving archv.2019_241_06.a .........OK @@ -2921,16 +2938,16 @@ Moving baseline 091 hafs_regional_atm_ocn_wav_intel files .... Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 844.522868 - 0: The maximum resident set size (KB) = 1466992 + 0: The total amount of wall time = 836.921770 + 0: The maximum resident set size (KB) = 1455968 -Test 091 hafs_regional_atm_ocn_wav_intel PASS +Test 092 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_1nest_atm_intel -Checking test 092 hafs_regional_1nest_atm_intel results .... -Moving baseline 092 hafs_regional_1nest_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_1nest_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_1nest_atm_intel +Checking test 093 hafs_regional_1nest_atm_intel results .... +Moving baseline 093 hafs_regional_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2951,16 +2968,16 @@ Moving baseline 092 hafs_regional_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 295.470373 - 0: The maximum resident set size (KB) = 654180 + 0: The total amount of wall time = 298.796976 + 0: The maximum resident set size (KB) = 647648 -Test 092 hafs_regional_1nest_atm_intel PASS +Test 093 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_telescopic_2nests_atm_intel -Checking test 093 hafs_regional_telescopic_2nests_atm_intel results .... -Moving baseline 093 hafs_regional_telescopic_2nests_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_telescopic_2nests_atm_intel +Checking test 094 hafs_regional_telescopic_2nests_atm_intel results .... +Moving baseline 094 hafs_regional_telescopic_2nests_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -2968,16 +2985,16 @@ Moving baseline 093 hafs_regional_telescopic_2nests_atm_intel files .... Moving atm.nest03.f006.nc .........OK Moving sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 341.317297 - 0: The maximum resident set size (KB) = 658892 + 0: The total amount of wall time = 344.046363 + 0: The maximum resident set size (KB) = 661172 -Test 093 hafs_regional_telescopic_2nests_atm_intel PASS +Test 094 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_1nest_atm_intel -Checking test 094 hafs_global_1nest_atm_intel results .... -Moving baseline 094 hafs_global_1nest_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_global_1nest_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_global_1nest_atm_intel +Checking test 095 hafs_global_1nest_atm_intel results .... +Moving baseline 095 hafs_global_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3023,16 +3040,16 @@ Moving baseline 094 hafs_global_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 140.474751 - 0: The maximum resident set size (KB) = 402612 + 0: The total amount of wall time = 137.209833 + 0: The maximum resident set size (KB) = 400092 -Test 094 hafs_global_1nest_atm_intel PASS +Test 095 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_multiple_4nests_atm_intel -Checking test 095 hafs_global_multiple_4nests_atm_intel results .... -Moving baseline 095 hafs_global_multiple_4nests_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_global_multiple_4nests_atm_intel +Checking test 096 hafs_global_multiple_4nests_atm_intel results .... +Moving baseline 096 hafs_global_multiple_4nests_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3113,16 +3130,16 @@ Moving baseline 095 hafs_global_multiple_4nests_atm_intel files .... Moving RESTART/fv_BC_sw.res.nest04.nc .........OK Moving RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 385.054522 - 0: The maximum resident set size (KB) = 477084 + 0: The total amount of wall time = 391.013644 + 0: The maximum resident set size (KB) = 478172 -Test 095 hafs_global_multiple_4nests_atm_intel PASS +Test 096 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_specified_moving_1nest_atm_intel -Checking test 096 hafs_regional_specified_moving_1nest_atm_intel results .... -Moving baseline 096 hafs_regional_specified_moving_1nest_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_specified_moving_1nest_atm_intel +Checking test 097 hafs_regional_specified_moving_1nest_atm_intel results .... +Moving baseline 097 hafs_regional_specified_moving_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3130,16 +3147,16 @@ Moving baseline 096 hafs_regional_specified_moving_1nest_atm_intel files .... Moving HURPRS.GrbF06 .........OK Moving HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 191.171450 - 0: The maximum resident set size (KB) = 672532 + 0: The total amount of wall time = 191.647720 + 0: The maximum resident set size (KB) = 671008 -Test 096 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 097 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_intel -Checking test 097 hafs_regional_storm_following_1nest_atm_intel results .... -Moving baseline 097 hafs_regional_storm_following_1nest_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_storm_following_1nest_atm_intel +Checking test 098 hafs_regional_storm_following_1nest_atm_intel results .... +Moving baseline 098 hafs_regional_storm_following_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3160,16 +3177,16 @@ Moving baseline 097 hafs_regional_storm_following_1nest_atm_intel files .... Moving RESTART/fv_BC_ne.res.nest02.nc .........OK Moving RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 180.962319 - 0: The maximum resident set size (KB) = 671084 + 0: The total amount of wall time = 178.998270 + 0: The maximum resident set size (KB) = 671468 -Test 097 hafs_regional_storm_following_1nest_atm_intel PASS +Test 098 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 098 hafs_regional_storm_following_1nest_atm_ocn_intel results .... -Moving baseline 098 hafs_regional_storm_following_1nest_atm_ocn_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 099 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +Moving baseline 099 hafs_regional_storm_following_1nest_atm_ocn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3177,46 +3194,46 @@ Moving baseline 098 hafs_regional_storm_following_1nest_atm_ocn_intel files .... Moving archv.2020_238_18.a .........OK Moving archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.525457 - 0: The maximum resident set size (KB) = 715404 + 0: The total amount of wall time = 229.157899 + 0: The maximum resident set size (KB) = 693900 -Test 098 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 099 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_storm_following_1nest_atm_intel -Checking test 099 hafs_global_storm_following_1nest_atm_intel results .... -Moving baseline 099 hafs_global_storm_following_1nest_atm_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_global_storm_following_1nest_atm_intel +Checking test 100 hafs_global_storm_following_1nest_atm_intel results .... +Moving baseline 100 hafs_global_storm_following_1nest_atm_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK Moving sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 55.255583 - 0: The maximum resident set size (KB) = 419020 + 0: The total amount of wall time = 54.884920 + 0: The maximum resident set size (KB) = 415212 -Test 099 hafs_global_storm_following_1nest_atm_intel PASS +Test 100 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... -Moving baseline 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 101 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +Moving baseline 101 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... Moving atmf001.nc .........OK Moving sfcf001.nc .........OK Moving atm.nest02.f001.nc .........OK Moving sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 701.292613 - 0: The maximum resident set size (KB) = 720608 + 0: The total amount of wall time = 709.965526 + 0: The maximum resident set size (KB) = 716120 -Test 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 101 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... -Moving baseline 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 102 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +Moving baseline 102 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving atm.nest02.f006.nc .........OK @@ -3226,160 +3243,160 @@ Moving baseline 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files Moving 20200825.180000.out_grd.ww3 .........OK Moving 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 475.316201 - 0: The maximum resident set size (KB) = 803836 + 0: The total amount of wall time = 479.619639 + 0: The maximum resident set size (KB) = 805456 -Test 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 102 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_docn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_docn_intel -Checking test 102 hafs_regional_docn_intel results .... -Moving baseline 102 hafs_regional_docn_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_docn_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_docn_intel +Checking test 103 hafs_regional_docn_intel results .... +Moving baseline 103 hafs_regional_docn_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.159865 - 0: The maximum resident set size (KB) = 1403512 + 0: The total amount of wall time = 330.879057 + 0: The maximum resident set size (KB) = 1400996 -Test 102 hafs_regional_docn_intel PASS +Test 103 hafs_regional_docn_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_docn_oisst_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_docn_oisst_intel -Checking test 103 hafs_regional_docn_oisst_intel results .... -Moving baseline 103 hafs_regional_docn_oisst_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_docn_oisst_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_docn_oisst_intel +Checking test 104 hafs_regional_docn_oisst_intel results .... +Moving baseline 104 hafs_regional_docn_oisst_intel files .... Moving atmf006.nc .........OK Moving sfcf006.nc .........OK Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.375932 - 0: The maximum resident set size (KB) = 1378116 + 0: The total amount of wall time = 340.674383 + 0: The maximum resident set size (KB) = 1387636 -Test 103 hafs_regional_docn_oisst_intel PASS +Test 104 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_datm_cdeps_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_datm_cdeps_intel -Checking test 104 hafs_regional_datm_cdeps_intel results .... -Moving baseline 104 hafs_regional_datm_cdeps_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hafs_regional_datm_cdeps_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hafs_regional_datm_cdeps_intel +Checking test 105 hafs_regional_datm_cdeps_intel results .... +Moving baseline 105 hafs_regional_datm_cdeps_intel files .... Moving ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Moving ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Moving ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 991.569277 - 0: The maximum resident set size (KB) = 1135256 + 0: The total amount of wall time = 947.610984 + 0: The maximum resident set size (KB) = 1150544 -Test 104 hafs_regional_datm_cdeps_intel PASS +Test 105 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_intel -Checking test 105 datm_cdeps_control_cfsr_intel results .... -Moving baseline 105 datm_cdeps_control_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_control_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_control_cfsr_intel +Checking test 106 datm_cdeps_control_cfsr_intel results .... +Moving baseline 106 datm_cdeps_control_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.238365 - 0: The maximum resident set size (KB) = 1111496 + 0: The total amount of wall time = 156.303926 + 0: The maximum resident set size (KB) = 1113304 -Test 105 datm_cdeps_control_cfsr_intel PASS +Test 106 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_gefs_intel -Checking test 106 datm_cdeps_control_gefs_intel results .... -Moving baseline 106 datm_cdeps_control_gefs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_control_gefs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_control_gefs_intel +Checking test 107 datm_cdeps_control_gefs_intel results .... +Moving baseline 107 datm_cdeps_control_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.682148 - 0: The maximum resident set size (KB) = 1003016 + 0: The total amount of wall time = 149.158773 + 0: The maximum resident set size (KB) = 1005340 -Test 106 datm_cdeps_control_gefs_intel PASS +Test 107 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_iau_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_iau_gefs_intel -Checking test 107 datm_cdeps_iau_gefs_intel results .... -Moving baseline 107 datm_cdeps_iau_gefs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_iau_gefs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_iau_gefs_intel +Checking test 108 datm_cdeps_iau_gefs_intel results .... +Moving baseline 108 datm_cdeps_iau_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.710097 - 0: The maximum resident set size (KB) = 1005852 + 0: The total amount of wall time = 153.786398 + 0: The maximum resident set size (KB) = 1000004 -Test 107 datm_cdeps_iau_gefs_intel PASS +Test 108 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_stochy_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_stochy_gefs_intel -Checking test 108 datm_cdeps_stochy_gefs_intel results .... -Moving baseline 108 datm_cdeps_stochy_gefs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_stochy_gefs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_stochy_gefs_intel +Checking test 109 datm_cdeps_stochy_gefs_intel results .... +Moving baseline 109 datm_cdeps_stochy_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.330960 - 0: The maximum resident set size (KB) = 995860 + 0: The total amount of wall time = 152.164136 + 0: The maximum resident set size (KB) = 1000284 -Test 108 datm_cdeps_stochy_gefs_intel PASS +Test 109 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_ciceC_cfsr_intel -Checking test 109 datm_cdeps_ciceC_cfsr_intel results .... -Moving baseline 109 datm_cdeps_ciceC_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_ciceC_cfsr_intel +Checking test 110 datm_cdeps_ciceC_cfsr_intel results .... +Moving baseline 110 datm_cdeps_ciceC_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.700011 - 0: The maximum resident set size (KB) = 1098796 + 0: The total amount of wall time = 155.605591 + 0: The maximum resident set size (KB) = 1087048 -Test 109 datm_cdeps_ciceC_cfsr_intel PASS +Test 110 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_bulk_cfsr_intel -Checking test 110 datm_cdeps_bulk_cfsr_intel results .... -Moving baseline 110 datm_cdeps_bulk_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_bulk_cfsr_intel +Checking test 111 datm_cdeps_bulk_cfsr_intel results .... +Moving baseline 111 datm_cdeps_bulk_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.857162 - 0: The maximum resident set size (KB) = 1126628 + 0: The total amount of wall time = 154.163472 + 0: The maximum resident set size (KB) = 1116248 -Test 110 datm_cdeps_bulk_cfsr_intel PASS +Test 111 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_bulk_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_bulk_gefs_intel -Checking test 111 datm_cdeps_bulk_gefs_intel results .... -Moving baseline 111 datm_cdeps_bulk_gefs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_bulk_gefs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_bulk_gefs_intel +Checking test 112 datm_cdeps_bulk_gefs_intel results .... +Moving baseline 112 datm_cdeps_bulk_gefs_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.687000 - 0: The maximum resident set size (KB) = 990776 + 0: The total amount of wall time = 149.217312 + 0: The maximum resident set size (KB) = 1009688 -Test 111 datm_cdeps_bulk_gefs_intel PASS +Test 112 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_mx025_cfsr_intel -Checking test 112 datm_cdeps_mx025_cfsr_intel results .... -Moving baseline 112 datm_cdeps_mx025_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_mx025_cfsr_intel +Checking test 113 datm_cdeps_mx025_cfsr_intel results .... +Moving baseline 113 datm_cdeps_mx025_cfsr_intel files .... Moving RESTART/20111001.120000.MOM.res.nc .........OK Moving RESTART/20111001.120000.MOM.res_1.nc .........OK Moving RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3387,16 +3404,16 @@ Moving baseline 112 datm_cdeps_mx025_cfsr_intel files .... Moving RESTART/iced.2011-10-01-43200.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 406.310926 - 0: The maximum resident set size (KB) = 1034788 + 0: The total amount of wall time = 443.113304 + 0: The maximum resident set size (KB) = 1025280 -Test 112 datm_cdeps_mx025_cfsr_intel PASS +Test 113 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_mx025_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_mx025_gefs_intel -Checking test 113 datm_cdeps_mx025_gefs_intel results .... -Moving baseline 113 datm_cdeps_mx025_gefs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_mx025_gefs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_mx025_gefs_intel +Checking test 114 datm_cdeps_mx025_gefs_intel results .... +Moving baseline 114 datm_cdeps_mx025_gefs_intel files .... Moving RESTART/20111001.120000.MOM.res.nc .........OK Moving RESTART/20111001.120000.MOM.res_1.nc .........OK Moving RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3404,72 +3421,72 @@ Moving baseline 113 datm_cdeps_mx025_gefs_intel files .... Moving RESTART/iced.2011-10-01-43200.nc .........OK Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 414.872319 - 0: The maximum resident set size (KB) = 1011392 + 0: The total amount of wall time = 405.701309 + 0: The maximum resident set size (KB) = 1024960 -Test 113 datm_cdeps_mx025_gefs_intel PASS +Test 114 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_3072x1536_cfsr_intel -Checking test 114 datm_cdeps_3072x1536_cfsr_intel results .... -Moving baseline 114 datm_cdeps_3072x1536_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_3072x1536_cfsr_intel +Checking test 115 datm_cdeps_3072x1536_cfsr_intel results .... +Moving baseline 115 datm_cdeps_3072x1536_cfsr_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 226.782297 - 0: The maximum resident set size (KB) = 2421372 + 0: The total amount of wall time = 227.571549 + 0: The maximum resident set size (KB) = 2348544 -Test 114 datm_cdeps_3072x1536_cfsr_intel PASS +Test 115 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_gfs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_gfs_intel -Checking test 115 datm_cdeps_gfs_intel results .... -Moving baseline 115 datm_cdeps_gfs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_gfs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_gfs_intel +Checking test 116 datm_cdeps_gfs_intel results .... +Moving baseline 116 datm_cdeps_gfs_intel files .... Moving RESTART/20210323.060000.MOM.res.nc .........OK Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 232.808420 - 0: The maximum resident set size (KB) = 2464020 + 0: The total amount of wall time = 228.463840 + 0: The maximum resident set size (KB) = 2450448 -Test 115 datm_cdeps_gfs_intel PASS +Test 116 datm_cdeps_gfs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_debug_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_debug_cfsr_intel -Checking test 116 datm_cdeps_debug_cfsr_intel results .... -Moving baseline 116 datm_cdeps_debug_cfsr_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_debug_cfsr_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_debug_cfsr_intel +Checking test 117 datm_cdeps_debug_cfsr_intel results .... +Moving baseline 117 datm_cdeps_debug_cfsr_intel files .... Moving RESTART/20111001.060000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-01-21600.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 348.352017 - 0: The maximum resident set size (KB) = 1027772 + 0: The total amount of wall time = 354.531921 + 0: The maximum resident set size (KB) = 1041332 -Test 116 datm_cdeps_debug_cfsr_intel PASS +Test 117 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_faster_intel -Checking test 117 datm_cdeps_control_cfsr_faster_intel results .... -Moving baseline 117 datm_cdeps_control_cfsr_faster_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_control_cfsr_faster_intel +Checking test 118 datm_cdeps_control_cfsr_faster_intel results .... +Moving baseline 118 datm_cdeps_control_cfsr_faster_intel files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.936003 - 0: The maximum resident set size (KB) = 1113876 + 0: The total amount of wall time = 154.781489 + 0: The maximum resident set size (KB) = 1109748 -Test 117 datm_cdeps_control_cfsr_faster_intel PASS +Test 118 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_lnd_gswp3_intel -Checking test 118 datm_cdeps_lnd_gswp3_intel results .... -Moving baseline 118 datm_cdeps_lnd_gswp3_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_lnd_gswp3_intel +Checking test 119 datm_cdeps_lnd_gswp3_intel results .... +Moving baseline 119 datm_cdeps_lnd_gswp3_intel files .... Moving ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3477,16 +3494,16 @@ Moving baseline 118 datm_cdeps_lnd_gswp3_intel files .... Moving ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Moving ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.880810 - 0: The maximum resident set size (KB) = 249096 + 0: The total amount of wall time = 6.344917 + 0: The maximum resident set size (KB) = 252764 -Test 118 datm_cdeps_lnd_gswp3_intel PASS +Test 119 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_atmlnd_sbs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_atmlnd_sbs_intel -Checking test 119 control_p8_atmlnd_sbs_intel results .... -Moving baseline 119 control_p8_atmlnd_sbs_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_atmlnd_sbs_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_atmlnd_sbs_intel +Checking test 120 control_p8_atmlnd_sbs_intel results .... +Moving baseline 120 control_p8_atmlnd_sbs_intel files .... Moving sfcf000.tile1.nc .........OK Moving sfcf000.tile2.nc .........OK Moving sfcf000.tile3.nc .........OK @@ -3570,16 +3587,16 @@ Moving baseline 119 control_p8_atmlnd_sbs_intel files .... Moving ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Moving ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 202.359385 - 0: The maximum resident set size (KB) = 1611296 + 0: The total amount of wall time = 209.605811 + 0: The maximum resident set size (KB) = 1602836 -Test 119 control_p8_atmlnd_sbs_intel PASS +Test 120 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmwav_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmwav_control_noaero_p8_intel -Checking test 120 atmwav_control_noaero_p8_intel results .... -Moving baseline 120 atmwav_control_noaero_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//atmwav_control_noaero_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/atmwav_control_noaero_p8_intel +Checking test 121 atmwav_control_noaero_p8_intel results .... +Moving baseline 121 atmwav_control_noaero_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -3621,16 +3638,16 @@ Moving baseline 120 atmwav_control_noaero_p8_intel files .... Moving 20210322.180000.out_grd.ww3 .........OK Moving ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.329097 - 0: The maximum resident set size (KB) = 1642464 + 0: The total amount of wall time = 94.906908 + 0: The maximum resident set size (KB) = 1640920 -Test 120 atmwav_control_noaero_p8_intel PASS +Test 121 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_atmwav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_atmwav_intel -Checking test 121 control_atmwav_intel results .... -Moving baseline 121 control_atmwav_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_atmwav_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_atmwav_intel +Checking test 122 control_atmwav_intel results .... +Moving baseline 122 control_atmwav_intel files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -3673,16 +3690,16 @@ Moving baseline 121 control_atmwav_intel files .... Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK Moving 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.787561 - 0: The maximum resident set size (KB) = 662216 + 0: The total amount of wall time = 90.535651 + 0: The maximum resident set size (KB) = 637164 -Test 121 control_atmwav_intel PASS +Test 122 control_atmwav_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_intel -Checking test 122 atmaero_control_p8_intel results .... -Moving baseline 122 atmaero_control_p8_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//atmaero_control_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/atmaero_control_p8_intel +Checking test 123 atmaero_control_p8_intel results .... +Moving baseline 123 atmaero_control_p8_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3725,16 +3742,16 @@ Moving baseline 122 atmaero_control_p8_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.819599 - 0: The maximum resident set size (KB) = 2998460 + 0: The total amount of wall time = 230.571669 + 0: The maximum resident set size (KB) = 2980072 -Test 122 atmaero_control_p8_intel PASS +Test 123 atmaero_control_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_rad_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_rad_intel -Checking test 123 atmaero_control_p8_rad_intel results .... -Moving baseline 123 atmaero_control_p8_rad_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//atmaero_control_p8_rad_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/atmaero_control_p8_rad_intel +Checking test 124 atmaero_control_p8_rad_intel results .... +Moving baseline 124 atmaero_control_p8_rad_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3777,16 +3794,16 @@ Moving baseline 123 atmaero_control_p8_rad_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.421894 - 0: The maximum resident set size (KB) = 3028496 + 0: The total amount of wall time = 281.228229 + 0: The maximum resident set size (KB) = 3063068 -Test 123 atmaero_control_p8_rad_intel PASS +Test 124 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_rad_micro_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_rad_micro_intel -Checking test 124 atmaero_control_p8_rad_micro_intel results .... -Moving baseline 124 atmaero_control_p8_rad_micro_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//atmaero_control_p8_rad_micro_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/atmaero_control_p8_rad_micro_intel +Checking test 125 atmaero_control_p8_rad_micro_intel results .... +Moving baseline 125 atmaero_control_p8_rad_micro_intel files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3829,16 +3846,16 @@ Moving baseline 124 atmaero_control_p8_rad_micro_intel files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.676747 - 0: The maximum resident set size (KB) = 3080916 + 0: The total amount of wall time = 298.341192 + 0: The maximum resident set size (KB) = 3022352 -Test 124 atmaero_control_p8_rad_micro_intel PASS +Test 125 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_intel -Checking test 125 regional_atmaq_intel results .... -Moving baseline 125 regional_atmaq_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_atmaq_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_atmaq_intel +Checking test 126 regional_atmaq_intel results .... +Moving baseline 126 regional_atmaq_intel files .... Moving sfcf000.nc .........OK Moving sfcf003.nc .........OK Moving sfcf006.nc .........OK @@ -3853,16 +3870,16 @@ Moving baseline 125 regional_atmaq_intel files .... Moving RESTART/20190801.180000.phy_data.nc .........OK Moving RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 635.801745 - 0: The maximum resident set size (KB) = 5323860 + 0: The total amount of wall time = 634.097142 + 0: The maximum resident set size (KB) = 5425216 -Test 125 regional_atmaq_intel PASS +Test 126 regional_atmaq_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_debug_intel -Checking test 126 regional_atmaq_debug_intel results .... -Moving baseline 126 regional_atmaq_debug_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_atmaq_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_atmaq_debug_intel +Checking test 127 regional_atmaq_debug_intel results .... +Moving baseline 127 regional_atmaq_debug_intel files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK @@ -3875,16 +3892,16 @@ Moving baseline 126 regional_atmaq_debug_intel files .... Moving RESTART/20190801.130000.phy_data.nc .........OK Moving RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1182.074581 - 0: The maximum resident set size (KB) = 4884172 + 0: The total amount of wall time = 1203.170353 + 0: The maximum resident set size (KB) = 4860940 -Test 126 regional_atmaq_debug_intel PASS +Test 127 regional_atmaq_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_faster_intel -Checking test 127 regional_atmaq_faster_intel results .... -Moving baseline 127 regional_atmaq_faster_intel files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_atmaq_faster_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_atmaq_faster_intel +Checking test 128 regional_atmaq_faster_intel results .... +Moving baseline 128 regional_atmaq_faster_intel files .... Moving sfcf000.nc .........OK Moving sfcf003.nc .........OK Moving sfcf006.nc .........OK @@ -3899,16 +3916,16 @@ Moving baseline 127 regional_atmaq_faster_intel files .... Moving RESTART/20190801.180000.phy_data.nc .........OK Moving RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 559.030898 - 0: The maximum resident set size (KB) = 5423376 + 0: The total amount of wall time = 563.226350 + 0: The maximum resident set size (KB) = 5291152 -Test 127 regional_atmaq_faster_intel PASS +Test 128 regional_atmaq_faster_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c48_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c48_gnu -Checking test 128 control_c48_gnu results .... -Moving baseline 128 control_c48_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_c48_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_c48_gnu +Checking test 129 control_c48_gnu results .... +Moving baseline 129 control_c48_gnu files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3946,16 +3963,16 @@ Moving baseline 128 control_c48_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.826013 -0: The maximum resident set size (KB) = 731656 +0: The total amount of wall time = 690.365644 +0: The maximum resident set size (KB) = 728804 -Test 128 control_c48_gnu PASS +Test 129 control_c48_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_gnu -Checking test 129 control_stochy_gnu results .... -Moving baseline 129 control_stochy_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_stochy_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_stochy_gnu +Checking test 130 control_stochy_gnu results .... +Moving baseline 130 control_stochy_gnu files .... Moving sfcf000.nc .........OK Moving sfcf012.nc .........OK Moving atmf000.nc .........OK @@ -3965,16 +3982,16 @@ Moving baseline 129 control_stochy_gnu files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 232.038276 - 0: The maximum resident set size (KB) = 535920 + 0: The total amount of wall time = 236.330326 + 0: The maximum resident set size (KB) = 538492 -Test 129 control_stochy_gnu PASS +Test 130 control_stochy_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_gnu -Checking test 130 control_ras_gnu results .... -Moving baseline 130 control_ras_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_ras_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_ras_gnu +Checking test 131 control_ras_gnu results .... +Moving baseline 131 control_ras_gnu files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -3984,16 +4001,16 @@ Moving baseline 130 control_ras_gnu files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 287.754263 - 0: The maximum resident set size (KB) = 515928 + 0: The total amount of wall time = 289.358339 + 0: The maximum resident set size (KB) = 545220 -Test 130 control_ras_gnu PASS +Test 131 control_ras_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_gnu -Checking test 131 control_p8_gnu results .... -Moving baseline 131 control_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_p8_gnu +Checking test 132 control_p8_gnu results .... +Moving baseline 132 control_p8_gnu files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -4039,16 +4056,16 @@ Moving baseline 131 control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.596976 - 0: The maximum resident set size (KB) = 1292260 + 0: The total amount of wall time = 300.005889 + 0: The maximum resident set size (KB) = 1293824 -Test 131 control_p8_gnu PASS +Test 132 control_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_flake_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_flake_gnu -Checking test 132 control_flake_gnu results .... -Moving baseline 132 control_flake_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_flake_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_flake_gnu +Checking test 133 control_flake_gnu results .... +Moving baseline 133 control_flake_gnu files .... Moving sfcf000.nc .........OK Moving sfcf024.nc .........OK Moving atmf000.nc .........OK @@ -4058,16 +4075,16 @@ Moving baseline 132 control_flake_gnu files .... Moving GFSPRS.GrbF00 .........OK Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.320411 - 0: The maximum resident set size (KB) = 554084 + 0: The total amount of wall time = 344.859323 + 0: The maximum resident set size (KB) = 584344 -Test 132 control_flake_gnu PASS +Test 133 control_flake_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_gnu -Checking test 133 rap_control_gnu results .... -Moving baseline 133 rap_control_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_gnu +Checking test 134 rap_control_gnu results .... +Moving baseline 134 rap_control_gnu files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -4113,16 +4130,16 @@ Moving baseline 133 rap_control_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.433872 - 0: The maximum resident set size (KB) = 852384 + 0: The total amount of wall time = 685.802210 + 0: The maximum resident set size (KB) = 858800 -Test 133 rap_control_gnu PASS +Test 134 rap_control_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_gnu -Checking test 134 rap_sfcdiff_gnu results .... -Moving baseline 134 rap_sfcdiff_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_sfcdiff_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_sfcdiff_gnu +Checking test 135 rap_sfcdiff_gnu results .... +Moving baseline 135 rap_sfcdiff_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4168,16 +4185,16 @@ Moving baseline 134 rap_sfcdiff_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 686.260197 - 0: The maximum resident set size (KB) = 849496 + 0: The total amount of wall time = 685.891782 + 0: The maximum resident set size (KB) = 847280 -Test 134 rap_sfcdiff_gnu PASS +Test 135 rap_sfcdiff_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_gnu -Checking test 135 hrrr_control_gnu results .... -Moving baseline 135 hrrr_control_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_gnu +Checking test 136 hrrr_control_gnu results .... +Moving baseline 136 hrrr_control_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4223,16 +4240,16 @@ Moving baseline 135 hrrr_control_gnu files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.278492 - 0: The maximum resident set size (KB) = 850120 + 0: The total amount of wall time = 346.060597 + 0: The maximum resident set size (KB) = 843964 -Test 135 hrrr_control_gnu PASS +Test 136 hrrr_control_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_gnu -Checking test 136 rrfs_v1beta_gnu results .... -Moving baseline 136 rrfs_v1beta_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1beta_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1beta_gnu +Checking test 137 rrfs_v1beta_gnu results .... +Moving baseline 137 rrfs_v1beta_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4278,254 +4295,254 @@ Moving baseline 136 rrfs_v1beta_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 691.314445 - 0: The maximum resident set size (KB) = 844936 + 0: The total amount of wall time = 672.193577 + 0: The maximum resident set size (KB) = 881276 -Test 136 rrfs_v1beta_gnu PASS +Test 137 rrfs_v1beta_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_diag_debug_gnu -Checking test 137 control_diag_debug_gnu results .... -Moving baseline 137 control_diag_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_diag_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_diag_debug_gnu +Checking test 138 control_diag_debug_gnu results .... +Moving baseline 138 control_diag_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 81.796627 - 0: The maximum resident set size (KB) = 543504 + 0: The total amount of wall time = 85.074914 + 0: The maximum resident set size (KB) = 546808 -Test 137 control_diag_debug_gnu PASS +Test 138 control_diag_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_debug_gnu -Checking test 138 regional_debug_gnu results .... -Moving baseline 138 regional_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//regional_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/regional_debug_gnu +Checking test 139 regional_debug_gnu results .... +Moving baseline 139 regional_debug_gnu files .... Moving dynf000.nc .........OK Moving dynf001.nc .........OK Moving phyf000.nc .........OK Moving phyf001.nc .........OK - 0: The total amount of wall time = 430.380671 - 0: The maximum resident set size (KB) = 815432 + 0: The total amount of wall time = 430.731794 + 0: The maximum resident set size (KB) = 817704 -Test 138 regional_debug_gnu PASS +Test 139 regional_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_gnu -Checking test 139 rap_control_debug_gnu results .... -Moving baseline 139 rap_control_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_debug_gnu +Checking test 140 rap_control_debug_gnu results .... +Moving baseline 140 rap_control_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 138.502227 - 0: The maximum resident set size (KB) = 865000 + 0: The total amount of wall time = 140.015857 + 0: The maximum resident set size (KB) = 895804 -Test 139 rap_control_debug_gnu PASS +Test 140 rap_control_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_gnu -Checking test 140 hrrr_control_debug_gnu results .... -Moving baseline 140 hrrr_control_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_debug_gnu +Checking test 141 hrrr_control_debug_gnu results .... +Moving baseline 141 hrrr_control_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 135.740057 - 0: The maximum resident set size (KB) = 855720 + 0: The total amount of wall time = 132.678025 + 0: The maximum resident set size (KB) = 891124 -Test 140 hrrr_control_debug_gnu PASS +Test 141 hrrr_control_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_gf_debug_gnu -Checking test 141 hrrr_gf_debug_gnu results .... -Moving baseline 141 hrrr_gf_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_gf_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_gf_debug_gnu +Checking test 142 hrrr_gf_debug_gnu results .... +Moving baseline 142 hrrr_gf_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 137.347845 - 0: The maximum resident set size (KB) = 858540 + 0: The total amount of wall time = 135.831759 + 0: The maximum resident set size (KB) = 854112 -Test 141 hrrr_gf_debug_gnu PASS +Test 142 hrrr_gf_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_c3_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_c3_debug_gnu -Checking test 142 hrrr_c3_debug_gnu results .... -Moving baseline 142 hrrr_c3_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_c3_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_c3_debug_gnu +Checking test 143 hrrr_c3_debug_gnu results .... +Moving baseline 143 hrrr_c3_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 137.523486 - 0: The maximum resident set size (KB) = 899696 + 0: The total amount of wall time = 136.258258 + 0: The maximum resident set size (KB) = 857832 -Test 142 hrrr_c3_debug_gnu PASS +Test 143 hrrr_c3_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_diag_debug_gnu -Checking test 143 rap_diag_debug_gnu results .... -Moving baseline 143 rap_diag_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_diag_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_diag_debug_gnu +Checking test 144 rap_diag_debug_gnu results .... +Moving baseline 144 rap_diag_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 148.226149 - 0: The maximum resident set size (KB) = 940212 + 0: The total amount of wall time = 146.913226 + 0: The maximum resident set size (KB) = 946272 -Test 143 rap_diag_debug_gnu PASS +Test 144 rap_diag_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... -Moving baseline 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 145 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +Moving baseline 145 rap_noah_sfcdiff_cires_ugwp_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 217.226751 - 0: The maximum resident set size (KB) = 856528 + 0: The total amount of wall time = 220.698566 + 0: The maximum resident set size (KB) = 861940 -Test 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 145 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_progcld_thompson_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_progcld_thompson_debug_gnu -Checking test 145 rap_progcld_thompson_debug_gnu results .... -Moving baseline 145 rap_progcld_thompson_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_progcld_thompson_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_progcld_thompson_debug_gnu +Checking test 146 rap_progcld_thompson_debug_gnu results .... +Moving baseline 146 rap_progcld_thompson_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 136.366788 - 0: The maximum resident set size (KB) = 892780 + 0: The total amount of wall time = 138.600252 + 0: The maximum resident set size (KB) = 898960 -Test 145 rap_progcld_thompson_debug_gnu PASS +Test 146 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_debug_gnu -Checking test 146 rrfs_v1beta_debug_gnu results .... -Moving baseline 146 rrfs_v1beta_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rrfs_v1beta_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rrfs_v1beta_debug_gnu +Checking test 147 rrfs_v1beta_debug_gnu results .... +Moving baseline 147 rrfs_v1beta_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 137.872533 - 0: The maximum resident set size (KB) = 863060 + 0: The total amount of wall time = 137.159352 + 0: The maximum resident set size (KB) = 854800 -Test 146 rrfs_v1beta_debug_gnu PASS +Test 147 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_debug_gnu -Checking test 147 control_ras_debug_gnu results .... -Moving baseline 147 control_ras_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_ras_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_ras_debug_gnu +Checking test 148 control_ras_debug_gnu results .... +Moving baseline 148 control_ras_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 79.812514 - 0: The maximum resident set size (KB) = 534456 + 0: The total amount of wall time = 78.877393 + 0: The maximum resident set size (KB) = 532084 -Test 147 control_ras_debug_gnu PASS +Test 148 control_ras_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_debug_gnu -Checking test 148 control_stochy_debug_gnu results .... -Moving baseline 148 control_stochy_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_stochy_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_stochy_debug_gnu +Checking test 149 control_stochy_debug_gnu results .... +Moving baseline 149 control_stochy_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 117.361477 - 0: The maximum resident set size (KB) = 530604 + 0: The total amount of wall time = 118.813838 + 0: The maximum resident set size (KB) = 493980 -Test 148 control_stochy_debug_gnu PASS +Test 149 control_stochy_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_debug_p8_gnu -Checking test 149 control_debug_p8_gnu results .... -Moving baseline 149 control_debug_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_debug_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_debug_p8_gnu +Checking test 150 control_debug_p8_gnu results .... +Moving baseline 150 control_debug_p8_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 87.865133 - 0: The maximum resident set size (KB) = 1278500 + 0: The total amount of wall time = 87.536541 + 0: The maximum resident set size (KB) = 1279036 -Test 149 control_debug_p8_gnu PASS +Test 150 control_debug_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_flake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_flake_debug_gnu -Checking test 150 rap_flake_debug_gnu results .... -Moving baseline 150 rap_flake_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_flake_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_flake_debug_gnu +Checking test 151 rap_flake_debug_gnu results .... +Moving baseline 151 rap_flake_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 138.780401 - 0: The maximum resident set size (KB) = 857404 + 0: The total amount of wall time = 135.169050 + 0: The maximum resident set size (KB) = 862960 -Test 150 rap_flake_debug_gnu PASS +Test 151 rap_flake_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_clm_lake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_clm_lake_debug_gnu -Checking test 151 rap_clm_lake_debug_gnu results .... -Moving baseline 151 rap_clm_lake_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_clm_lake_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_clm_lake_debug_gnu +Checking test 152 rap_clm_lake_debug_gnu results .... +Moving baseline 152 rap_clm_lake_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 155.634935 - 0: The maximum resident set size (KB) = 860352 + 0: The total amount of wall time = 155.617571 + 0: The maximum resident set size (KB) = 858172 -Test 151 rap_clm_lake_debug_gnu PASS +Test 152 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_debug_gnu -Checking test 152 control_wam_debug_gnu results .... -Moving baseline 152 control_wam_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//control_wam_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/control_wam_debug_gnu +Checking test 153 control_wam_debug_gnu results .... +Moving baseline 153 control_wam_debug_gnu files .... Moving sfcf019.nc .........OK Moving atmf019.nc .........OK - 0: The total amount of wall time = 137.109118 - 0: The maximum resident set size (KB) = 286168 + 0: The total amount of wall time = 134.846644 + 0: The maximum resident set size (KB) = 285780 -Test 152 control_wam_debug_gnu PASS +Test 153 control_wam_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn32_phy32_gnu -Checking test 153 rap_control_dyn32_phy32_gnu results .... -Moving baseline 153 rap_control_dyn32_phy32_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_dyn32_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn32_phy32_gnu +Checking test 154 rap_control_dyn32_phy32_gnu results .... +Moving baseline 154 rap_control_dyn32_phy32_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4571,16 +4588,16 @@ Moving baseline 153 rap_control_dyn32_phy32_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 707.655942 - 0: The maximum resident set size (KB) = 741088 + 0: The total amount of wall time = 706.554489 + 0: The maximum resident set size (KB) = 747204 -Test 153 rap_control_dyn32_phy32_gnu PASS +Test 154 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_dyn32_phy32_gnu -Checking test 154 hrrr_control_dyn32_phy32_gnu results .... -Moving baseline 154 hrrr_control_dyn32_phy32_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_dyn32_phy32_gnu +Checking test 155 hrrr_control_dyn32_phy32_gnu results .... +Moving baseline 155 hrrr_control_dyn32_phy32_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4626,16 +4643,16 @@ Moving baseline 154 hrrr_control_dyn32_phy32_gnu files .... Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.081431 - 0: The maximum resident set size (KB) = 741688 + 0: The total amount of wall time = 356.546820 + 0: The maximum resident set size (KB) = 747076 -Test 154 hrrr_control_dyn32_phy32_gnu PASS +Test 155 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_control_gnu -Checking test 155 conus13km_control_gnu results .... -Moving baseline 155 conus13km_control_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_control_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_control_gnu +Checking test 156 conus13km_control_gnu results .... +Moving baseline 156 conus13km_control_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving sfcf002.nc .........OK @@ -4650,29 +4667,29 @@ Moving baseline 155 conus13km_control_gnu files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 239.593595 - 0: The maximum resident set size (KB) = 948756 + 0: The total amount of wall time = 237.807789 + 0: The maximum resident set size (KB) = 952636 -Test 155 conus13km_control_gnu PASS +Test 156 conus13km_control_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_restart_mismatch_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_restart_mismatch_gnu -Checking test 156 conus13km_restart_mismatch_gnu results .... -Moving baseline 156 conus13km_restart_mismatch_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_restart_mismatch_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_restart_mismatch_gnu +Checking test 157 conus13km_restart_mismatch_gnu results .... +Moving baseline 157 conus13km_restart_mismatch_gnu files .... Moving sfcf002.nc .........OK Moving atmf002.nc .........OK - 0: The total amount of wall time = 125.167819 - 0: The maximum resident set size (KB) = 607512 + 0: The total amount of wall time = 127.051323 + 0: The maximum resident set size (KB) = 607220 -Test 156 conus13km_restart_mismatch_gnu PASS +Test 157 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_gnu -Checking test 157 rap_control_dyn64_phy32_gnu results .... -Moving baseline 157 rap_control_dyn64_phy32_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_dyn64_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn64_phy32_gnu +Checking test 158 rap_control_dyn64_phy32_gnu results .... +Moving baseline 158 rap_control_dyn64_phy32_gnu files .... Moving sfcf000.nc .........OK Moving sfcf009.nc .........OK Moving sfcf012.nc .........OK @@ -4718,46 +4735,46 @@ Moving baseline 157 rap_control_dyn64_phy32_gnu files .... Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.452450 - 0: The maximum resident set size (KB) = 766564 + 0: The total amount of wall time = 407.787647 + 0: The maximum resident set size (KB) = 769880 -Test 157 rap_control_dyn64_phy32_gnu PASS +Test 158 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_dyn32_phy32_gnu -Checking test 158 rap_control_debug_dyn32_phy32_gnu results .... -Moving baseline 158 rap_control_debug_dyn32_phy32_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_debug_dyn32_phy32_gnu +Checking test 159 rap_control_debug_dyn32_phy32_gnu results .... +Moving baseline 159 rap_control_debug_dyn32_phy32_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 138.262569 - 0: The maximum resident set size (KB) = 753292 + 0: The total amount of wall time = 141.230119 + 0: The maximum resident set size (KB) = 751116 -Test 158 rap_control_debug_dyn32_phy32_gnu PASS +Test 159 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_dyn32_phy32_gnu -Checking test 159 hrrr_control_debug_dyn32_phy32_gnu results .... -Moving baseline 159 hrrr_control_debug_dyn32_phy32_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/hrrr_control_debug_dyn32_phy32_gnu +Checking test 160 hrrr_control_debug_dyn32_phy32_gnu results .... +Moving baseline 160 hrrr_control_debug_dyn32_phy32_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 135.396341 - 0: The maximum resident set size (KB) = 749164 + 0: The total amount of wall time = 136.037657 + 0: The maximum resident set size (KB) = 749176 -Test 159 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 160 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_debug_gnu -Checking test 160 conus13km_debug_gnu results .... -Moving baseline 160 conus13km_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_debug_gnu +Checking test 161 conus13km_debug_gnu results .... +Moving baseline 161 conus13km_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK @@ -4770,46 +4787,46 @@ Moving baseline 160 conus13km_debug_gnu files .... Moving RESTART/20210512.170000.phy_data.nc .........OK Moving RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 417.480712 - 0: The maximum resident set size (KB) = 963396 + 0: The total amount of wall time = 412.178005 + 0: The maximum resident set size (KB) = 965700 -Test 160 conus13km_debug_gnu PASS +Test 161 conus13km_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_radar_tten_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_radar_tten_debug_gnu -Checking test 161 conus13km_radar_tten_debug_gnu results .... -Moving baseline 161 conus13km_radar_tten_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//conus13km_radar_tten_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/conus13km_radar_tten_debug_gnu +Checking test 162 conus13km_radar_tten_debug_gnu results .... +Moving baseline 162 conus13km_radar_tten_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 415.543658 - 0: The maximum resident set size (KB) = 1032076 + 0: The total amount of wall time = 416.549303 + 0: The maximum resident set size (KB) = 1032800 -Test 161 conus13km_radar_tten_debug_gnu PASS +Test 162 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_debug_gnu -Checking test 162 rap_control_dyn64_phy32_debug_gnu results .... -Moving baseline 162 rap_control_dyn64_phy32_debug_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/rap_control_dyn64_phy32_debug_gnu +Checking test 163 rap_control_dyn64_phy32_debug_gnu results .... +Moving baseline 163 rap_control_dyn64_phy32_debug_gnu files .... Moving sfcf000.nc .........OK Moving sfcf001.nc .........OK Moving atmf000.nc .........OK Moving atmf001.nc .........OK - 0: The total amount of wall time = 145.025189 - 0: The maximum resident set size (KB) = 775272 + 0: The total amount of wall time = 142.405436 + 0: The maximum resident set size (KB) = 771428 -Test 162 rap_control_dyn64_phy32_debug_gnu PASS +Test 163 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_gnu -Checking test 163 cpld_control_p8_gnu results .... -Moving baseline 163 cpld_control_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_p8_gnu +Checking test 164 cpld_control_p8_gnu results .... +Moving baseline 164 cpld_control_p8_gnu files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -4873,16 +4890,16 @@ Moving baseline 163 cpld_control_p8_gnu files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 648.768439 - 0: The maximum resident set size (KB) = 1503056 + 0: The total amount of wall time = 625.104262 + 0: The maximum resident set size (KB) = 1505880 -Test 163 cpld_control_p8_gnu PASS +Test 164 cpld_control_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_nowave_noaero_p8_gnu -Checking test 164 cpld_control_nowave_noaero_p8_gnu results .... -Moving baseline 164 cpld_control_nowave_noaero_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_nowave_noaero_p8_gnu +Checking test 165 cpld_control_nowave_noaero_p8_gnu results .... +Moving baseline 165 cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -4943,16 +4960,16 @@ Moving baseline 164 cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 418.316737 - 0: The maximum resident set size (KB) = 1399200 + 0: The total amount of wall time = 417.384670 + 0: The maximum resident set size (KB) = 1402652 -Test 164 cpld_control_nowave_noaero_p8_gnu PASS +Test 165 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_p8_gnu -Checking test 165 cpld_debug_p8_gnu results .... -Moving baseline 165 cpld_debug_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_debug_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_debug_p8_gnu +Checking test 166 cpld_debug_p8_gnu results .... +Moving baseline 166 cpld_debug_p8_gnu files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -5004,16 +5021,16 @@ Moving baseline 165 cpld_debug_p8_gnu files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.882958 - 0: The maximum resident set size (KB) = 1515364 + 0: The total amount of wall time = 362.440197 + 0: The maximum resident set size (KB) = 1490512 -Test 165 cpld_debug_p8_gnu PASS +Test 166 cpld_debug_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_pdlib_p8_gnu -Checking test 166 cpld_control_pdlib_p8_gnu results .... -Moving baseline 166 cpld_control_pdlib_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_control_pdlib_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_control_pdlib_p8_gnu +Checking test 167 cpld_control_pdlib_p8_gnu results .... +Moving baseline 167 cpld_control_pdlib_p8_gnu files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -5076,16 +5093,16 @@ Moving baseline 166 cpld_control_pdlib_p8_gnu files .... Moving 20210323.060000.out_pnt.ww3 .........OK Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1433.819415 - 0: The maximum resident set size (KB) = 1380184 + 0: The total amount of wall time = 1425.120498 + 0: The maximum resident set size (KB) = 1379908 -Test 166 cpld_control_pdlib_p8_gnu PASS +Test 167 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_pdlib_p8_gnu -Checking test 167 cpld_debug_pdlib_p8_gnu results .... -Moving baseline 167 cpld_debug_pdlib_p8_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//cpld_debug_pdlib_p8_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/cpld_debug_pdlib_p8_gnu +Checking test 168 cpld_debug_pdlib_p8_gnu results .... +Moving baseline 168 cpld_debug_pdlib_p8_gnu files .... Moving sfcf003.tile1.nc .........OK Moving sfcf003.tile2.nc .........OK Moving sfcf003.tile3.nc .........OK @@ -5136,26 +5153,26 @@ Moving baseline 167 cpld_debug_pdlib_p8_gnu files .... Moving 20210322.090000.out_pnt.ww3 .........OK Moving 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 717.350546 - 0: The maximum resident set size (KB) = 1388148 + 0: The total amount of wall time = 723.576167 + 0: The maximum resident set size (KB) = 1389680 -Test 167 cpld_debug_pdlib_p8_gnu PASS +Test 168 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_gnu -Checking test 168 datm_cdeps_control_cfsr_gnu results .... -Moving baseline 168 datm_cdeps_control_cfsr_gnu files .... +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240126//datm_cdeps_control_cfsr_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_20770/datm_cdeps_control_cfsr_gnu +Checking test 169 datm_cdeps_control_cfsr_gnu results .... +Moving baseline 169 datm_cdeps_control_cfsr_gnu files .... Moving RESTART/20111002.000000.MOM.res.nc .........OK Moving RESTART/iced.2011-10-02-00000.nc .........OK Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.261240 - 0: The maximum resident set size (KB) = 684044 + 0: The total amount of wall time = 173.578247 + 0: The maximum resident set size (KB) = 691456 -Test 168 datm_cdeps_control_cfsr_gnu PASS +Test 169 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jan 29 22:02:03 UTC 2024 -Elapsed time: 01h:24m:16s. Have a nice day! +Thu Feb 1 22:16:21 UTC 2024 +Elapsed time: 01h:58m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index b51b1ad8ba..b00ea4e37b 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,72 +1,72 @@ -Mon Oct 2 16:18:49 CDT 2023 +Thu Oct 19 15:06:12 CDT 2023 Start Regression test -Testing UFSWM Hash: 42dfe840256d92314818aaff6d27f46c8a91d1db +Testing UFSWM Hash: 4b42450ea5f00a7b0c71acd68d4cb396ef9d0395 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) + a5dea5f178fc98a4ab39c58aa43c37da6ad25d08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2298-ga5dea5f) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) + 59a70b28cca841918a62be7e9b2d5e1dcd02b2c0 FV3 (remotes/origin/feature/lndinst) 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) + 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 143 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 247 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 366 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 356 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 378 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 593 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 170 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 155 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 46 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 167 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 595 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 500 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 206 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 109 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 226 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 631 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 130 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 733 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 251 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 89 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 198 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 149 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 513 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 156 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 166 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 253 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 573 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 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 388 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 159 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 567 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 378 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 390 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 541 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 562 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 381 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 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 167 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 118 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 567 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 171 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 606 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 593 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 145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 518 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 177 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 348 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 151 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 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 523 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 216 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 257 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 655 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 131 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 230 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 721 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 137 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 184 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 782 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 244 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 wam_debug_gnu elapsed time 88 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 148 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 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.204566 - 0: The maximum resident set size (KB) = 1905152 + 0: The total amount of wall time = 417.777734 + 0: The maximum resident set size (KB) = 1886704 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,15 +202,31 @@ 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 = 477.669532 - 0: The maximum resident set size (KB) = 1726356 + 0: The total amount of wall time = 476.927554 + 0: The maximum resident set size (KB) = 1732172 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_gfsv17_iau_intel +Checking test 003 cpld_control_gfsv17_iau_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing 20210323.000000.out_pnt.ww3 .........OK + Comparing 20210323.000000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 305.427958 + 0: The maximum resident set size (KB) = 1188468 + +Test 003 cpld_control_gfsv17_iau_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_p8_intel +Checking test 004 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -274,15 +290,15 @@ 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 = 436.115398 - 0: The maximum resident set size (KB) = 2044576 + 0: The total amount of wall time = 441.010757 + 0: The maximum resident set size (KB) = 2030512 -Test 003 cpld_control_p8_intel PASS +Test 004 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_restart_p8_intel +Checking test 005 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -334,15 +350,15 @@ 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 = 240.695208 - 0: The maximum resident set size (KB) = 1922128 + 0: The total amount of wall time = 237.283877 + 0: The maximum resident set size (KB) = 1918960 -Test 004 cpld_restart_p8_intel PASS +Test 005 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_qr_p8_intel +Checking test 006 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -406,15 +422,15 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.723536 - 0: The maximum resident set size (KB) = 1975368 + 0: The total amount of wall time = 434.098571 + 0: The maximum resident set size (KB) = 2000240 -Test 005 cpld_control_qr_p8_intel PASS +Test 006 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_restart_qr_p8_intel +Checking test 007 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -466,15 +482,15 @@ 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 = 242.682928 - 0: The maximum resident set size (KB) = 1562864 + 0: The total amount of wall time = 243.552526 + 0: The maximum resident set size (KB) = 1570600 -Test 006 cpld_restart_qr_p8_intel PASS +Test 007 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_2threads_p8_intel +Checking test 008 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -526,15 +542,15 @@ 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 = 512.685469 - 0: The maximum resident set size (KB) = 2462940 + 0: The total amount of wall time = 517.990271 + 0: The maximum resident set size (KB) = 2467860 -Test 007 cpld_2threads_p8_intel PASS +Test 008 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_decomp_p8_intel +Checking test 009 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -586,15 +602,15 @@ 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 = 425.682478 - 0: The maximum resident set size (KB) = 2042688 + 0: The total amount of wall time = 428.055728 + 0: The maximum resident set size (KB) = 2040484 -Test 008 cpld_decomp_p8_intel PASS +Test 009 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_mpi_p8_intel +Checking test 010 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -646,15 +662,15 @@ 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 = 372.254436 - 0: The maximum resident set size (KB) = 1866892 + 0: The total amount of wall time = 372.864944 + 0: The maximum resident set size (KB) = 1879424 -Test 009 cpld_mpi_p8_intel PASS +Test 010 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_ciceC_p8_intel +Checking test 011 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -718,15 +734,15 @@ 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 = 433.094131 - 0: The maximum resident set size (KB) = 2037428 + 0: The total amount of wall time = 428.729057 + 0: The maximum resident set size (KB) = 2043308 -Test 010 cpld_control_ciceC_p8_intel PASS +Test 011 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_c192_p8_intel -Checking test 011 cpld_control_c192_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_c192_p8_intel +Checking test 012 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -778,15 +794,15 @@ 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 = 901.420748 - 0: The maximum resident set size (KB) = 2798320 + 0: The total amount of wall time = 888.937548 + 0: The maximum resident set size (KB) = 2793988 -Test 011 cpld_control_c192_p8_intel PASS +Test 012 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_c192_p8_intel -Checking test 012 cpld_restart_c192_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_restart_c192_p8_intel +Checking test 013 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -838,15 +854,15 @@ 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 = 341.616825 - 0: The maximum resident set size (KB) = 2823728 + 0: The total amount of wall time = 325.982701 + 0: The maximum resident set size (KB) = 2823108 -Test 012 cpld_restart_c192_p8_intel PASS +Test 013 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_bmark_p8_intel -Checking test 013 cpld_bmark_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_bmark_p8_intel +Checking test 014 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -893,15 +909,15 @@ 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 = 540.775647 - 0: The maximum resident set size (KB) = 3614200 + 0: The total amount of wall time = 518.855665 + 0: The maximum resident set size (KB) = 3616644 -Test 013 cpld_bmark_p8_intel PASS +Test 014 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_bmark_p8_intel -Checking test 014 cpld_restart_bmark_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_restart_bmark_p8_intel +Checking test 015 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -948,15 +964,15 @@ 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 = 402.083419 - 0: The maximum resident set size (KB) = 3523348 + 0: The total amount of wall time = 342.750853 + 0: The maximum resident set size (KB) = 3520912 -Test 014 cpld_restart_bmark_p8_intel PASS +Test 015 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_noaero_p8_intel -Checking test 015 cpld_control_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_noaero_p8_intel +Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1019,15 +1035,15 @@ 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 = 397.517451 - 0: The maximum resident set size (KB) = 1775600 + 0: The total amount of wall time = 408.282274 + 0: The maximum resident set size (KB) = 1787288 -Test 015 cpld_control_noaero_p8_intel PASS +Test 016 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_nowave_noaero_p8_intel -Checking test 016 cpld_control_nowave_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_nowave_noaero_p8_intel +Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1088,15 +1104,15 @@ 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 = 235.138718 - 0: The maximum resident set size (KB) = 1816292 + 0: The total amount of wall time = 232.224782 + 0: The maximum resident set size (KB) = 1831956 -Test 016 cpld_control_nowave_noaero_p8_intel PASS +Test 017 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_p8_intel -Checking test 017 cpld_debug_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_debug_p8_intel +Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1148,15 +1164,15 @@ 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 = 439.326124 - 0: The maximum resident set size (KB) = 2032708 + 0: The total amount of wall time = 420.762623 + 0: The maximum resident set size (KB) = 2032940 -Test 017 cpld_debug_p8_intel PASS +Test 018 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_noaero_p8_intel -Checking test 018 cpld_debug_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_debug_noaero_p8_intel +Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1207,15 +1223,15 @@ 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 = 319.129671 - 0: The maximum resident set size (KB) = 1793580 + 0: The total amount of wall time = 292.036979 + 0: The maximum resident set size (KB) = 1809692 -Test 018 cpld_debug_noaero_p8_intel PASS +Test 019 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_noaero_p8_agrid_intel -Checking test 019 cpld_control_noaero_p8_agrid_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_noaero_p8_agrid_intel +Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1276,15 +1292,15 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 239.375892 - 0: The maximum resident set size (KB) = 1824480 + 0: The total amount of wall time = 233.876073 + 0: The maximum resident set size (KB) = 1819184 -Test 019 cpld_control_noaero_p8_agrid_intel PASS +Test 020 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_c48_intel -Checking test 020 cpld_control_c48_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_c48_intel +Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1333,15 +1349,15 @@ 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 = 450.717999 - 0: The maximum resident set size (KB) = 2825620 + 0: The total amount of wall time = 446.160953 + 0: The maximum resident set size (KB) = 2830552 -Test 020 cpld_control_c48_intel PASS +Test 021 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_faster_intel -Checking test 021 cpld_control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_p8_faster_intel +Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1405,15 +1421,15 @@ 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 = 412.295574 - 0: The maximum resident set size (KB) = 2032908 + 0: The total amount of wall time = 422.095516 + 0: The maximum resident set size (KB) = 2037252 -Test 021 cpld_control_p8_faster_intel PASS +Test 022 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_flake_intel -Checking test 022 control_flake_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_flake_intel +Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1423,15 +1439,15 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.674711 - 0: The maximum resident set size (KB) = 778380 + 0: The total amount of wall time = 161.603392 + 0: The maximum resident set size (KB) = 771528 -Test 022 control_flake_intel PASS +Test 023 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_intel -Checking test 023 control_CubedSphereGrid_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_CubedSphereGrid_intel +Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1457,37 +1473,37 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 114.617867 - 0: The maximum resident set size (KB) = 682044 + 0: The total amount of wall time = 111.695461 + 0: The maximum resident set size (KB) = 675392 -Test 023 control_CubedSphereGrid_intel PASS +Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_parallel_intel -Checking test 024 control_CubedSphereGrid_parallel_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_CubedSphereGrid_parallel_intel +Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.416777 - 0: The maximum resident set size (KB) = 692772 + 0: The total amount of wall time = 929.138768 + 0: The maximum resident set size (KB) = 696780 -Test 024 control_CubedSphereGrid_parallel_intel PASS +Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_latlon_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_latlon_intel -Checking test 025 control_latlon_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_latlon_intel +Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1497,16 +1513,16 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.488382 - 0: The maximum resident set size (KB) = 670896 + 0: The total amount of wall time = 115.050962 + 0: The maximum resident set size (KB) = 675784 -Test 025 control_latlon_intel PASS +Test 026 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wrtGauss_netcdf_parallel_intel -Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_wrtGauss_netcdf_parallel_intel +Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1515,15 +1531,15 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.605326 - 0: The maximum resident set size (KB) = 677936 + 0: The total amount of wall time = 207.758287 + 0: The maximum resident set size (KB) = 675092 -Test 026 control_wrtGauss_netcdf_parallel_intel PASS +Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c48_intel -Checking test 027 control_c48_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_c48_intel +Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1561,15 +1577,15 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 337.777159 -0: The maximum resident set size (KB) = 818776 +0: The total amount of wall time = 333.434287 +0: The maximum resident set size (KB) = 815836 -Test 027 control_c48_intel PASS +Test 028 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c192_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c192_intel -Checking test 028 control_c192_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_c192_intel +Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1579,15 +1595,15 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.035935 - 0: The maximum resident set size (KB) = 904616 + 0: The total amount of wall time = 454.844462 + 0: The maximum resident set size (KB) = 918432 -Test 028 control_c192_intel PASS +Test 029 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c384_intel -Checking test 029 control_c384_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_c384_intel +Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1597,15 +1613,15 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 459.581956 - 0: The maximum resident set size (KB) = 1604248 + 0: The total amount of wall time = 448.540710 + 0: The maximum resident set size (KB) = 1575280 -Test 029 control_c384_intel PASS +Test 030 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c384gdas_intel -Checking test 030 control_c384gdas_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_c384gdas_intel +Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1647,15 +1663,15 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.770384 - 0: The maximum resident set size (KB) = 1657028 + 0: The total amount of wall time = 396.938674 + 0: The maximum resident set size (KB) = 1657652 -Test 030 control_c384gdas_intel PASS +Test 031 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_intel -Checking test 031 control_stochy_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_stochy_intel +Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1665,29 +1681,29 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.207858 - 0: The maximum resident set size (KB) = 668548 + 0: The total amount of wall time = 107.069749 + 0: The maximum resident set size (KB) = 666740 -Test 031 control_stochy_intel PASS +Test 032 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_restart_intel -Checking test 032 control_stochy_restart_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_stochy_restart_intel +Checking test 033 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.856718 - 0: The maximum resident set size (KB) = 617172 + 0: The total amount of wall time = 41.337108 + 0: The maximum resident set size (KB) = 617480 -Test 032 control_stochy_restart_intel PASS +Test 033 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_lndp_intel -Checking test 033 control_lndp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_lndp_intel +Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1697,15 +1713,15 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.564996 - 0: The maximum resident set size (KB) = 669976 + 0: The total amount of wall time = 71.070130 + 0: The maximum resident set size (KB) = 669984 -Test 033 control_lndp_intel PASS +Test 034 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_iovr4_intel -Checking test 034 control_iovr4_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_iovr4_intel +Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1719,15 +1735,15 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.482949 - 0: The maximum resident set size (KB) = 698052 + 0: The total amount of wall time = 168.016159 + 0: The maximum resident set size (KB) = 718484 -Test 034 control_iovr4_intel PASS +Test 035 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_iovr5_intel -Checking test 035 control_iovr5_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_iovr5_intel +Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1741,15 +1757,15 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.835903 - 0: The maximum resident set size (KB) = 711416 + 0: The total amount of wall time = 126.243517 + 0: The maximum resident set size (KB) = 706232 -Test 035 control_iovr5_intel PASS +Test 036 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_intel -Checking test 036 control_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_intel +Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1795,15 +1811,15 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.352831 - 0: The maximum resident set size (KB) = 1625752 + 0: The total amount of wall time = 154.054558 + 0: The maximum resident set size (KB) = 1633396 -Test 036 control_p8_intel PASS +Test 037 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_restart_p8_intel -Checking test 037 control_restart_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_restart_p8_intel +Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1841,15 +1857,15 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 76.089097 - 0: The maximum resident set size (KB) = 975232 + 0: The total amount of wall time = 77.583959 + 0: The maximum resident set size (KB) = 964096 -Test 037 control_restart_p8_intel PASS +Test 038 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_qr_p8_intel -Checking test 038 control_qr_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_qr_p8_intel +Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1895,15 +1911,15 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.446948 - 0: The maximum resident set size (KB) = 1641384 + 0: The total amount of wall time = 143.640945 + 0: The maximum resident set size (KB) = 1637452 -Test 038 control_qr_p8_intel PASS +Test 039 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_restart_qr_p8_intel -Checking test 039 control_restart_qr_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_restart_qr_p8_intel +Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1941,15 +1957,15 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 77.340743 - 0: The maximum resident set size (KB) = 915992 + 0: The total amount of wall time = 80.002741 + 0: The maximum resident set size (KB) = 900016 -Test 039 control_restart_qr_p8_intel PASS +Test 040 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_decomp_p8_intel -Checking test 040 control_decomp_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_decomp_p8_intel +Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1991,15 +2007,15 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.975957 - 0: The maximum resident set size (KB) = 1623768 + 0: The total amount of wall time = 147.719167 + 0: The maximum resident set size (KB) = 1624592 -Test 040 control_decomp_p8_intel PASS +Test 041 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_2threads_p8_intel -Checking test 041 control_2threads_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_2threads_p8_intel +Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2041,15 +2057,15 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.101534 - 0: The maximum resident set size (KB) = 1709532 + 0: The total amount of wall time = 132.987713 + 0: The maximum resident set size (KB) = 1704884 -Test 041 control_2threads_p8_intel PASS +Test 042 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_lndp_intel -Checking test 042 control_p8_lndp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_lndp_intel +Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2067,15 +2083,15 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 260.885791 - 0: The maximum resident set size (KB) = 1623648 + 0: The total amount of wall time = 268.481081 + 0: The maximum resident set size (KB) = 1629924 -Test 042 control_p8_lndp_intel PASS +Test 043 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_rrtmgp_intel -Checking test 043 control_p8_rrtmgp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_rrtmgp_intel +Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2121,15 +2137,15 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.780727 - 0: The maximum resident set size (KB) = 1699172 + 0: The total amount of wall time = 199.504833 + 0: The maximum resident set size (KB) = 1694084 -Test 043 control_p8_rrtmgp_intel PASS +Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_mynn_intel -Checking test 044 control_p8_mynn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_mynn_intel +Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2191,15 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.182101 - 0: The maximum resident set size (KB) = 1637704 + 0: The total amount of wall time = 143.930965 + 0: The maximum resident set size (KB) = 1630472 -Test 044 control_p8_mynn_intel PASS +Test 045 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/merra2_thompson_intel -Checking test 045 merra2_thompson_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/merra2_thompson_intel +Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2229,15 +2245,15 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.158131 - 0: The maximum resident set size (KB) = 1638512 + 0: The total amount of wall time = 165.772078 + 0: The maximum resident set size (KB) = 1635448 -Test 045 merra2_thompson_intel PASS +Test 046 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_intel -Checking test 046 regional_control_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_control_intel +Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2247,29 +2263,29 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.510081 - 0: The maximum resident set size (KB) = 1230868 + 0: The total amount of wall time = 244.231035 + 0: The maximum resident set size (KB) = 1230032 -Test 046 regional_control_intel PASS +Test 047 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_restart_intel -Checking test 047 regional_restart_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_restart_intel +Checking test 048 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 128.991367 - 0: The maximum resident set size (KB) = 1217412 + 0: The total amount of wall time = 131.254082 + 0: The maximum resident set size (KB) = 1213844 -Test 047 regional_restart_intel PASS +Test 048 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_qr_intel -Checking test 048 regional_control_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_control_qr_intel +Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2279,29 +2295,29 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.609381 - 0: The maximum resident set size (KB) = 1226956 + 0: The total amount of wall time = 244.088613 + 0: The maximum resident set size (KB) = 1226232 -Test 048 regional_control_qr_intel PASS +Test 049 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_restart_qr_intel -Checking test 049 regional_restart_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_restart_qr_intel +Checking test 050 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 129.011576 - 0: The maximum resident set size (KB) = 1212888 + 0: The total amount of wall time = 130.912479 + 0: The maximum resident set size (KB) = 1209572 -Test 049 regional_restart_qr_intel PASS +Test 050 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_decomp_intel -Checking test 050 regional_decomp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_decomp_intel +Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2311,15 +2327,15 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.137366 - 0: The maximum resident set size (KB) = 1217840 + 0: The total amount of wall time = 257.359594 + 0: The maximum resident set size (KB) = 1214404 -Test 050 regional_decomp_intel PASS +Test 051 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_2threads_intel -Checking test 051 regional_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_2threads_intel +Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2329,44 +2345,44 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.977953 - 0: The maximum resident set size (KB) = 1148020 + 0: The total amount of wall time = 153.133958 + 0: The maximum resident set size (KB) = 1149328 -Test 051 regional_2threads_intel PASS +Test 052 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_noquilt_intel -Checking test 052 regional_noquilt_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_noquilt_intel +Checking test 053 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 = 242.740140 - 0: The maximum resident set size (KB) = 1491672 + 0: The total amount of wall time = 243.363995 + 0: The maximum resident set size (KB) = 1490812 -Test 052 regional_noquilt_intel PASS +Test 053 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_netcdf_parallel_intel -Checking test 053 regional_netcdf_parallel_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_netcdf_parallel_intel +Checking test 054 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 240.303487 - 0: The maximum resident set size (KB) = 1218772 + 0: The total amount of wall time = 250.993208 + 0: The maximum resident set size (KB) = 1214384 -Test 053 regional_netcdf_parallel_intel PASS +Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_2dwrtdecomp_intel -Checking test 054 regional_2dwrtdecomp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_2dwrtdecomp_intel +Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2376,15 +2392,15 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.344894 - 0: The maximum resident set size (KB) = 1226700 + 0: The total amount of wall time = 247.246430 + 0: The maximum resident set size (KB) = 1230876 -Test 054 regional_2dwrtdecomp_intel PASS +Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_wofs_intel -Checking test 055 regional_wofs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_wofs_intel +Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2394,15 +2410,15 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.215161 - 0: The maximum resident set size (KB) = 1092904 + 0: The total amount of wall time = 307.320068 + 0: The maximum resident set size (KB) = 1100320 -Test 055 regional_wofs_intel PASS +Test 056 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_intel -Checking test 056 rap_control_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_intel +Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2448,15 +2464,15 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.653555 - 0: The maximum resident set size (KB) = 1397096 + 0: The total amount of wall time = 376.573008 + 0: The maximum resident set size (KB) = 1387260 -Test 056 rap_control_intel PASS +Test 057 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_spp_sppt_shum_skeb_intel -Checking test 057 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_spp_sppt_shum_skeb_intel +Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2466,15 +2482,15 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 197.390953 - 0: The maximum resident set size (KB) = 1322128 + 0: The total amount of wall time = 247.335149 + 0: The maximum resident set size (KB) = 1363380 -Test 057 regional_spp_sppt_shum_skeb_intel PASS +Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_decomp_intel -Checking test 058 rap_decomp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_decomp_intel +Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2520,15 +2536,15 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.039167 - 0: The maximum resident set size (KB) = 1337280 + 0: The total amount of wall time = 391.626735 + 0: The maximum resident set size (KB) = 1318280 -Test 058 rap_decomp_intel PASS +Test 059 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_intel -Checking test 059 rap_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_2threads_intel +Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,15 +2590,15 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.525579 - 0: The maximum resident set size (KB) = 1538704 + 0: The total amount of wall time = 355.436094 + 0: The maximum resident set size (KB) = 1541072 -Test 059 rap_2threads_intel PASS +Test 060 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_intel -Checking test 060 rap_restart_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_restart_intel +Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2620,15 +2636,15 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.222772 - 0: The maximum resident set size (KB) = 1226752 + 0: The total amount of wall time = 191.888369 + 0: The maximum resident set size (KB) = 1210212 -Test 060 rap_restart_intel PASS +Test 061 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_intel -Checking test 061 rap_sfcdiff_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_intel +Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2674,15 +2690,15 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.675152 - 0: The maximum resident set size (KB) = 1433888 + 0: The total amount of wall time = 374.561945 + 0: The maximum resident set size (KB) = 1413440 -Test 061 rap_sfcdiff_intel PASS +Test 062 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_decomp_intel -Checking test 062 rap_sfcdiff_decomp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_decomp_intel +Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2728,15 +2744,15 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.433747 - 0: The maximum resident set size (KB) = 1348704 + 0: The total amount of wall time = 403.269228 + 0: The maximum resident set size (KB) = 1358404 -Test 062 rap_sfcdiff_decomp_intel PASS +Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_restart_intel -Checking test 063 rap_sfcdiff_restart_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_restart_intel +Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2774,15 +2790,15 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.052520 - 0: The maximum resident set size (KB) = 1283072 + 0: The total amount of wall time = 280.000378 + 0: The maximum resident set size (KB) = 1272644 -Test 063 rap_sfcdiff_restart_intel PASS +Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_intel -Checking test 064 hrrr_control_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_intel +Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2828,15 +2844,15 @@ Checking test 064 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.105153 - 0: The maximum resident set size (KB) = 1263608 + 0: The total amount of wall time = 194.656496 + 0: The maximum resident set size (KB) = 1265420 -Test 064 hrrr_control_intel PASS +Test 065 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_intel -Checking test 065 hrrr_control_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_qr_intel +Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2882,15 +2898,15 @@ Checking test 065 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.646294 - 0: The maximum resident set size (KB) = 1086692 + 0: The total amount of wall time = 189.484250 + 0: The maximum resident set size (KB) = 1076064 -Test 065 hrrr_control_qr_intel PASS +Test 066 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_intel -Checking test 066 hrrr_control_decomp_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_decomp_intel +Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2936,15 +2952,15 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.990722 - 0: The maximum resident set size (KB) = 1235104 + 0: The total amount of wall time = 197.610294 + 0: The maximum resident set size (KB) = 1230640 -Test 066 hrrr_control_decomp_intel PASS +Test 067 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_intel -Checking test 067 hrrr_control_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_2threads_intel +Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2990,43 +3006,43 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.369741 - 0: The maximum resident set size (KB) = 1226684 + 0: The total amount of wall time = 174.867570 + 0: The maximum resident set size (KB) = 1231836 -Test 067 hrrr_control_2threads_intel PASS +Test 068 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_intel -Checking test 068 hrrr_control_restart_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_intel +Checking test 069 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.343004 - 0: The maximum resident set size (KB) = 1119612 + 0: The total amount of wall time = 99.794718 + 0: The maximum resident set size (KB) = 1131864 -Test 068 hrrr_control_restart_intel PASS +Test 069 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_intel -Checking test 069 hrrr_control_restart_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_qr_intel +Checking test 070 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.773583 - 0: The maximum resident set size (KB) = 950256 + 0: The total amount of wall time = 100.869652 + 0: The maximum resident set size (KB) = 947448 -Test 069 hrrr_control_restart_qr_intel PASS +Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_intel -Checking test 070 rrfs_v1beta_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1beta_intel +Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3072,15 +3088,15 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.354460 - 0: The maximum resident set size (KB) = 1360968 + 0: The total amount of wall time = 377.417704 + 0: The maximum resident set size (KB) = 1386988 -Test 070 rrfs_v1beta_intel PASS +Test 071 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1nssl_intel -Checking test 071 rrfs_v1nssl_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1nssl_intel +Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3094,15 +3110,15 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 444.380511 - 0: The maximum resident set size (KB) = 951640 + 0: The total amount of wall time = 455.203183 + 0: The maximum resident set size (KB) = 945664 -Test 071 rrfs_v1nssl_intel PASS +Test 072 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1nssl_nohailnoccn_intel -Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1nssl_nohailnoccn_intel +Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3116,15 +3132,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 436.107316 - 0: The maximum resident set size (KB) = 1108212 + 0: The total amount of wall time = 444.380681 + 0: The maximum resident set size (KB) = 1093840 -Test 072 rrfs_v1nssl_nohailnoccn_intel PASS +Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmg_intel -Checking test 073 control_csawmg_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_csawmg_intel +Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3134,15 +3150,15 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 292.184651 - 0: The maximum resident set size (KB) = 969816 + 0: The total amount of wall time = 293.506133 + 0: The maximum resident set size (KB) = 991360 -Test 073 control_csawmg_intel PASS +Test 074 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmgt_intel -Checking test 074 control_csawmgt_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_csawmgt_intel +Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3152,15 +3168,15 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.308731 - 0: The maximum resident set size (KB) = 986400 + 0: The total amount of wall time = 291.275600 + 0: The maximum resident set size (KB) = 966212 -Test 074 control_csawmgt_intel PASS +Test 075 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_intel -Checking test 075 control_ras_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_ras_intel +Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3170,27 +3186,27 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 157.307323 - 0: The maximum resident set size (KB) = 934056 + 0: The total amount of wall time = 158.598133 + 0: The maximum resident set size (KB) = 944900 -Test 075 control_ras_intel PASS +Test 076 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wam_intel -Checking test 076 control_wam_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_wam_intel +Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 97.829082 - 0: The maximum resident set size (KB) = 868696 + 0: The total amount of wall time = 97.091167 + 0: The maximum resident set size (KB) = 861012 -Test 076 control_wam_intel PASS +Test 077 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_faster_intel -Checking test 077 control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_faster_intel +Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3236,15 +3252,15 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.207567 - 0: The maximum resident set size (KB) = 1624132 + 0: The total amount of wall time = 185.480609 + 0: The maximum resident set size (KB) = 1620112 -Test 077 control_p8_faster_intel PASS +Test 078 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_faster_intel -Checking test 078 regional_control_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_control_faster_intel +Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3254,15 +3270,15 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 228.151363 - 0: The maximum resident set size (KB) = 1231552 + 0: The total amount of wall time = 220.846079 + 0: The maximum resident set size (KB) = 1225108 -Test 078 regional_control_faster_intel PASS +Test 079 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_CubedSphereGrid_debug_intel +Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3288,365 +3304,365 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 124.702962 - 0: The maximum resident set size (KB) = 813192 + 0: The total amount of wall time = 123.146529 + 0: The maximum resident set size (KB) = 809192 -Test 079 control_CubedSphereGrid_debug_intel PASS +Test 080 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 081 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 = 125.833131 - 0: The maximum resident set size (KB) = 818648 + 0: The total amount of wall time = 141.695967 + 0: The maximum resident set size (KB) = 818940 -Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_stochy_debug_intel +Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.186038 - 0: The maximum resident set size (KB) = 816272 + 0: The total amount of wall time = 138.326848 + 0: The maximum resident set size (KB) = 824852 -Test 081 control_stochy_debug_intel PASS +Test 082 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_lndp_debug_intel +Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.232562 - 0: The maximum resident set size (KB) = 826548 + 0: The total amount of wall time = 125.093070 + 0: The maximum resident set size (KB) = 819836 -Test 082 control_lndp_debug_intel PASS +Test 083 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_csawmg_debug_intel +Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.044572 - 0: The maximum resident set size (KB) = 864748 + 0: The total amount of wall time = 192.499233 + 0: The maximum resident set size (KB) = 860488 -Test 083 control_csawmg_debug_intel PASS +Test 084 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_csawmgt_debug_intel +Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.872911 - 0: The maximum resident set size (KB) = 855392 + 0: The total amount of wall time = 185.503170 + 0: The maximum resident set size (KB) = 853672 -Test 084 control_csawmgt_debug_intel PASS +Test 085 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_ras_debug_intel +Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.536494 - 0: The maximum resident set size (KB) = 833552 + 0: The total amount of wall time = 126.591146 + 0: The maximum resident set size (KB) = 826704 -Test 085 control_ras_debug_intel PASS +Test 086 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_diag_debug_intel +Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.864342 - 0: The maximum resident set size (KB) = 871972 + 0: The total amount of wall time = 127.765772 + 0: The maximum resident set size (KB) = 866420 -Test 086 control_diag_debug_intel PASS +Test 087 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_debug_p8_intel +Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.477975 - 0: The maximum resident set size (KB) = 1650448 + 0: The total amount of wall time = 138.765209 + 0: The maximum resident set size (KB) = 1644800 -Test 087 control_debug_p8_intel PASS +Test 088 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_debug_intel -Checking test 088 regional_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_debug_intel +Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 825.877277 - 0: The maximum resident set size (KB) = 1230280 + 0: The total amount of wall time = 819.038499 + 0: The maximum resident set size (KB) = 1230192 -Test 088 regional_debug_intel PASS +Test 089 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_debug_intel +Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.799313 - 0: The maximum resident set size (KB) = 1212024 + 0: The total amount of wall time = 228.547359 + 0: The maximum resident set size (KB) = 1220508 -Test 089 rap_control_debug_intel PASS +Test 090 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_intel -Checking test 090 hrrr_control_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_debug_intel +Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.588406 - 0: The maximum resident set size (KB) = 1197916 + 0: The total amount of wall time = 224.203066 + 0: The maximum resident set size (KB) = 1196004 -Test 090 hrrr_control_debug_intel PASS +Test 091 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_gf_debug_intel -Checking test 091 hrrr_gf_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_gf_debug_intel +Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.516778 - 0: The maximum resident set size (KB) = 1236848 + 0: The total amount of wall time = 229.408404 + 0: The maximum resident set size (KB) = 1211620 -Test 091 hrrr_gf_debug_intel PASS +Test 092 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_c3_debug_intel -Checking test 092 hrrr_c3_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_c3_debug_intel +Checking test 093 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.613336 - 0: The maximum resident set size (KB) = 1232300 + 0: The total amount of wall time = 227.484702 + 0: The maximum resident set size (KB) = 1213984 -Test 092 hrrr_c3_debug_intel PASS +Test 093 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_unified_drag_suite_debug_intel -Checking test 093 rap_unified_drag_suite_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_unified_drag_suite_debug_intel +Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.072300 - 0: The maximum resident set size (KB) = 1237580 + 0: The total amount of wall time = 230.865533 + 0: The maximum resident set size (KB) = 1223744 -Test 093 rap_unified_drag_suite_debug_intel PASS +Test 094 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_diag_debug_intel -Checking test 094 rap_diag_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_diag_debug_intel +Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.469081 - 0: The maximum resident set size (KB) = 1319700 + 0: The total amount of wall time = 238.716896 + 0: The maximum resident set size (KB) = 1321196 -Test 094 rap_diag_debug_intel PASS +Test 095 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_cires_ugwp_debug_intel -Checking test 095 rap_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_cires_ugwp_debug_intel +Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.112012 - 0: The maximum resident set size (KB) = 1223264 + 0: The total amount of wall time = 229.741192 + 0: The maximum resident set size (KB) = 1226988 -Test 095 rap_cires_ugwp_debug_intel PASS +Test 096 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_unified_ugwp_debug_intel -Checking test 096 rap_unified_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_unified_ugwp_debug_intel +Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.407463 - 0: The maximum resident set size (KB) = 1217772 + 0: The total amount of wall time = 233.131627 + 0: The maximum resident set size (KB) = 1223700 -Test 096 rap_unified_ugwp_debug_intel PASS +Test 097 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_lndp_debug_intel -Checking test 097 rap_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_lndp_debug_intel +Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.999840 - 0: The maximum resident set size (KB) = 1234800 + 0: The total amount of wall time = 229.099678 + 0: The maximum resident set size (KB) = 1244580 -Test 097 rap_lndp_debug_intel PASS +Test 098 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_progcld_thompson_debug_intel -Checking test 098 rap_progcld_thompson_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_progcld_thompson_debug_intel +Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.189004 - 0: The maximum resident set size (KB) = 1216164 + 0: The total amount of wall time = 232.652468 + 0: The maximum resident set size (KB) = 1214152 -Test 098 rap_progcld_thompson_debug_intel PASS +Test 099 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_debug_intel -Checking test 099 rap_noah_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_noah_debug_intel +Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.169653 - 0: The maximum resident set size (KB) = 1219896 + 0: The total amount of wall time = 226.376719 + 0: The maximum resident set size (KB) = 1204856 -Test 099 rap_noah_debug_intel PASS +Test 100 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_debug_intel -Checking test 100 rap_sfcdiff_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_debug_intel +Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.134519 - 0: The maximum resident set size (KB) = 1236836 + 0: The total amount of wall time = 229.812680 + 0: The maximum resident set size (KB) = 1216688 -Test 100 rap_sfcdiff_debug_intel PASS +Test 101 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.013842 - 0: The maximum resident set size (KB) = 1241316 + 0: The total amount of wall time = 374.875818 + 0: The maximum resident set size (KB) = 1237716 -Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_debug_intel -Checking test 102 rrfs_v1beta_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1beta_debug_intel +Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.953403 - 0: The maximum resident set size (KB) = 1203928 + 0: The total amount of wall time = 229.160086 + 0: The maximum resident set size (KB) = 1197136 -Test 102 rrfs_v1beta_debug_intel PASS +Test 103 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_clm_lake_debug_intel -Checking test 103 rap_clm_lake_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_clm_lake_debug_intel +Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.478974 - 0: The maximum resident set size (KB) = 1226460 + 0: The total amount of wall time = 295.523675 + 0: The maximum resident set size (KB) = 1242272 -Test 103 rap_clm_lake_debug_intel PASS +Test 104 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_flake_debug_intel -Checking test 104 rap_flake_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_flake_debug_intel +Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.638319 - 0: The maximum resident set size (KB) = 1229696 + 0: The total amount of wall time = 223.230907 + 0: The maximum resident set size (KB) = 1237048 -Test 104 rap_flake_debug_intel PASS +Test 105 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3656,15 +3672,15 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 185.315390 - 0: The maximum resident set size (KB) = 1221956 + 0: The total amount of wall time = 190.229569 + 0: The maximum resident set size (KB) = 1210732 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn32_phy32_intel -Checking test 106 rap_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn32_phy32_intel +Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3710,15 +3726,15 @@ Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.616935 - 0: The maximum resident set size (KB) = 1217584 + 0: The total amount of wall time = 302.095595 + 0: The maximum resident set size (KB) = 1219732 -Test 106 rap_control_dyn32_phy32_intel PASS +Test 107 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_dyn32_phy32_intel -Checking test 107 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_dyn32_phy32_intel +Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3764,15 +3780,15 @@ Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.337938 - 0: The maximum resident set size (KB) = 1107900 + 0: The total amount of wall time = 164.157590 + 0: The maximum resident set size (KB) = 1123280 -Test 107 hrrr_control_dyn32_phy32_intel PASS +Test 108 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_dyn32_phy32_intel -Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_qr_dyn32_phy32_intel +Checking test 109 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3818,15 +3834,15 @@ Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.685529 - 0: The maximum resident set size (KB) = 1045172 + 0: The total amount of wall time = 165.157657 + 0: The maximum resident set size (KB) = 1011512 -Test 108 hrrr_control_qr_dyn32_phy32_intel PASS +Test 109 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_dyn32_phy32_intel -Checking test 109 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_2threads_dyn32_phy32_intel +Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3872,15 +3888,15 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.398679 - 0: The maximum resident set size (KB) = 1349728 + 0: The total amount of wall time = 293.065423 + 0: The maximum resident set size (KB) = 1340536 -Test 109 rap_2threads_dyn32_phy32_intel PASS +Test 110 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_dyn32_phy32_intel -Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_2threads_dyn32_phy32_intel +Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3926,15 +3942,15 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.098664 - 0: The maximum resident set size (KB) = 1066528 + 0: The total amount of wall time = 146.860431 + 0: The maximum resident set size (KB) = 1062956 -Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_dyn32_phy32_intel -Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_decomp_dyn32_phy32_intel +Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3980,15 +3996,15 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.585823 - 0: The maximum resident set size (KB) = 1072656 + 0: The total amount of wall time = 165.281242 + 0: The maximum resident set size (KB) = 1079084 -Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_dyn32_phy32_intel -Checking test 112 rap_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_restart_dyn32_phy32_intel +Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4026,43 +4042,43 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.261347 - 0: The maximum resident set size (KB) = 1133048 + 0: The total amount of wall time = 234.287271 + 0: The maximum resident set size (KB) = 1138772 -Test 112 rap_restart_dyn32_phy32_intel PASS +Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_dyn32_phy32_intel -Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_dyn32_phy32_intel +Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.910830 - 0: The maximum resident set size (KB) = 1002224 + 0: The total amount of wall time = 82.496615 + 0: The maximum resident set size (KB) = 980632 -Test 113 hrrr_control_restart_dyn32_phy32_intel PASS +Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 115 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.221068 - 0: The maximum resident set size (KB) = 942996 + 0: The total amount of wall time = 86.103302 + 0: The maximum resident set size (KB) = 911032 -Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 115 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_control_intel -Checking test 115 conus13km_control_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_control_intel +Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4077,41 +4093,41 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 96.528156 - 0: The maximum resident set size (KB) = 1352640 + 0: The total amount of wall time = 91.895741 + 0: The maximum resident set size (KB) = 1355948 -Test 115 conus13km_control_intel PASS +Test 116 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_2threads_intel -Checking test 116 conus13km_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_2threads_intel +Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 42.096729 - 0: The maximum resident set size (KB) = 1251820 + 0: The total amount of wall time = 35.454281 + 0: The maximum resident set size (KB) = 1241604 -Test 116 conus13km_2threads_intel PASS +Test 117 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_restart_mismatch_intel -Checking test 117 conus13km_restart_mismatch_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_restart_mismatch_intel +Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 55.986813 - 0: The maximum resident set size (KB) = 1229864 + 0: The total amount of wall time = 52.665528 + 0: The maximum resident set size (KB) = 1219124 -Test 117 conus13km_restart_mismatch_intel PASS +Test 118 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_intel -Checking test 118 rap_control_dyn64_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn64_phy32_intel +Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4157,43 +4173,43 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.685954 - 0: The maximum resident set size (KB) = 1260268 + 0: The total amount of wall time = 211.887833 + 0: The maximum resident set size (KB) = 1260504 -Test 118 rap_control_dyn64_phy32_intel PASS +Test 119 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_dyn32_phy32_intel -Checking test 119 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_debug_dyn32_phy32_intel +Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.851197 - 0: The maximum resident set size (KB) = 1082248 + 0: The total amount of wall time = 221.993138 + 0: The maximum resident set size (KB) = 1073776 -Test 119 rap_control_debug_dyn32_phy32_intel PASS +Test 120 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_dyn32_phy32_intel -Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_debug_dyn32_phy32_intel +Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.647056 - 0: The maximum resident set size (KB) = 1081404 + 0: The total amount of wall time = 216.980411 + 0: The maximum resident set size (KB) = 1075624 -Test 120 hrrr_control_debug_dyn32_phy32_intel PASS +Test 121 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_intel -Checking test 121 conus13km_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_intel +Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4206,15 +4222,15 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 686.631473 - 0: The maximum resident set size (KB) = 1388636 + 0: The total amount of wall time = 697.660226 + 0: The maximum resident set size (KB) = 1374808 -Test 121 conus13km_debug_intel PASS +Test 122 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_qr_intel -Checking test 122 conus13km_debug_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_qr_intel +Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4227,82 +4243,82 @@ Checking test 122 conus13km_debug_qr_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 = 698.414915 - 0: The maximum resident set size (KB) = 1001208 + 0: The total amount of wall time = 710.554230 + 0: The maximum resident set size (KB) = 996324 -Test 122 conus13km_debug_qr_intel PASS +Test 123 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_2threads_intel -Checking test 123 conus13km_debug_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_2threads_intel +Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 391.471379 - 0: The maximum resident set size (KB) = 1280580 + 0: The total amount of wall time = 388.246775 + 0: The maximum resident set size (KB) = 1280484 -Test 123 conus13km_debug_2threads_intel PASS +Test 124 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_radar_tten_debug_intel -Checking test 124 conus13km_radar_tten_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_radar_tten_debug_intel +Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 694.250139 - 0: The maximum resident set size (KB) = 1458668 + 0: The total amount of wall time = 685.054342 + 0: The maximum resident set size (KB) = 1456428 -Test 124 conus13km_radar_tten_debug_intel PASS +Test 125 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_debug_intel -Checking test 125 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn64_phy32_debug_intel +Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.910140 - 0: The maximum resident set size (KB) = 1179440 + 0: The total amount of wall time = 225.121595 + 0: The maximum resident set size (KB) = 1181604 -Test 125 rap_control_dyn64_phy32_debug_intel PASS +Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_intel -Checking test 126 hafs_regional_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_atm_intel +Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 203.229902 - 0: The maximum resident set size (KB) = 1474244 + 0: The total amount of wall time = 192.387417 + 0: The maximum resident set size (KB) = 1473992 -Test 126 hafs_regional_atm_intel PASS +Test 127 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 237.821791 - 0: The maximum resident set size (KB) = 1826896 + 0: The total amount of wall time = 235.655627 + 0: The maximum resident set size (KB) = 1817228 -Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_ocn_intel -Checking test 128 hafs_regional_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_atm_ocn_intel +Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4310,15 +4326,15 @@ Checking test 128 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 = 348.776339 - 0: The maximum resident set size (KB) = 1785876 + 0: The total amount of wall time = 341.908811 + 0: The maximum resident set size (KB) = 1785856 -Test 128 hafs_regional_atm_ocn_intel PASS +Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_wav_intel -Checking test 129 hafs_regional_atm_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_atm_wav_intel +Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4326,15 +4342,15 @@ Checking test 129 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 = 800.102823 - 0: The maximum resident set size (KB) = 1817236 + 0: The total amount of wall time = 837.591471 + 0: The maximum resident set size (KB) = 1967088 -Test 129 hafs_regional_atm_wav_intel PASS +Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_ocn_wav_intel -Checking test 130 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_atm_ocn_wav_intel +Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4344,15 +4360,15 @@ Checking test 130 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 = 855.957543 - 0: The maximum resident set size (KB) = 1853356 + 0: The total amount of wall time = 869.495082 + 0: The maximum resident set size (KB) = 1841728 -Test 130 hafs_regional_atm_ocn_wav_intel PASS +Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_1nest_atm_intel -Checking test 131 hafs_regional_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_1nest_atm_intel +Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4373,15 +4389,15 @@ Checking test 131 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 258.593564 - 0: The maximum resident set size (KB) = 791824 + 0: The total amount of wall time = 268.543404 + 0: The maximum resident set size (KB) = 784664 -Test 131 hafs_regional_1nest_atm_intel PASS +Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_1nest_atm_qr_intel -Checking test 132 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_1nest_atm_qr_intel +Checking test 133 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4402,15 +4418,15 @@ Checking test 132 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 265.568551 - 0: The maximum resident set size (KB) = 604912 + 0: The total amount of wall time = 289.962784 + 0: The maximum resident set size (KB) = 600540 -Test 132 hafs_regional_1nest_atm_qr_intel PASS +Test 133 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_telescopic_2nests_atm_intel -Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_telescopic_2nests_atm_intel +Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4418,15 +4434,15 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 305.897866 - 0: The maximum resident set size (KB) = 790996 + 0: The total amount of wall time = 312.237597 + 0: The maximum resident set size (KB) = 792032 -Test 133 hafs_regional_telescopic_2nests_atm_intel PASS +Test 134 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_1nest_atm_intel -Checking test 134 hafs_global_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_global_1nest_atm_intel +Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4472,15 +4488,15 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 119.823576 - 0: The maximum resident set size (KB) = 462776 + 0: The total amount of wall time = 128.724821 + 0: The maximum resident set size (KB) = 460984 -Test 134 hafs_global_1nest_atm_intel PASS +Test 135 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_1nest_atm_qr_intel -Checking test 135 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_global_1nest_atm_qr_intel +Checking test 136 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4526,15 +4542,15 @@ Checking test 135 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 128.743196 - 0: The maximum resident set size (KB) = 441656 + 0: The total amount of wall time = 149.719413 + 0: The maximum resident set size (KB) = 430056 -Test 135 hafs_global_1nest_atm_qr_intel PASS +Test 136 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_multiple_4nests_atm_intel -Checking test 136 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_global_multiple_4nests_atm_intel +Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4615,15 +4631,15 @@ Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 341.183203 - 0: The maximum resident set size (KB) = 552928 + 0: The total amount of wall time = 346.793014 + 0: The maximum resident set size (KB) = 551744 -Test 136 hafs_global_multiple_4nests_atm_intel PASS +Test 137 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_multiple_4nests_atm_qr_intel -Checking test 137 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_global_multiple_4nests_atm_qr_intel +Checking test 138 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4704,15 +4720,15 @@ Checking test 137 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 349.276956 - 0: The maximum resident set size (KB) = 541692 + 0: The total amount of wall time = 413.337893 + 0: The maximum resident set size (KB) = 537776 -Test 137 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 138 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_specified_moving_1nest_atm_intel -Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_specified_moving_1nest_atm_intel +Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4720,15 +4736,15 @@ Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 174.753726 - 0: The maximum resident set size (KB) = 795164 + 0: The total amount of wall time = 169.647140 + 0: The maximum resident set size (KB) = 793876 -Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_storm_following_1nest_atm_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4749,15 +4765,15 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 158.953462 - 0: The maximum resident set size (KB) = 795544 + 0: The total amount of wall time = 158.406541 + 0: The maximum resident set size (KB) = 790416 -Test 139 hafs_regional_storm_following_1nest_atm_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4778,15 +4794,15 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 162.486049 - 0: The maximum resident set size (KB) = 617264 + 0: The total amount of wall time = 182.502300 + 0: The maximum resident set size (KB) = 618592 -Test 140 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4794,43 +4810,43 @@ Checking test 141 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 = 217.184959 - 0: The maximum resident set size (KB) = 846044 + 0: The total amount of wall time = 215.463392 + 0: The maximum resident set size (KB) = 839284 -Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_storm_following_1nest_atm_intel -Checking test 142 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_global_storm_following_1nest_atm_intel +Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 47.142808 - 0: The maximum resident set size (KB) = 472820 + 0: The total amount of wall time = 48.930329 + 0: The maximum resident set size (KB) = 466668 -Test 142 hafs_global_storm_following_1nest_atm_intel PASS +Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 602.690959 - 0: The maximum resident set size (KB) = 850456 + 0: The total amount of wall time = 592.758559 + 0: The maximum resident set size (KB) = 849228 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4840,162 +4856,162 @@ Checking test 144 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 = 962.906044 - 0: The maximum resident set size (KB) = 937868 + 0: The total amount of wall time = 936.440469 + 0: The maximum resident set size (KB) = 909020 -Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_docn_intel -Checking test 145 hafs_regional_docn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_docn_intel +Checking test 146 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 290.506788 - 0: The maximum resident set size (KB) = 1774952 + 0: The total amount of wall time = 280.513937 + 0: The maximum resident set size (KB) = 1784680 -Test 145 hafs_regional_docn_intel PASS +Test 146 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_docn_oisst_intel -Checking test 146 hafs_regional_docn_oisst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_docn_oisst_intel +Checking test 147 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 289.688137 - 0: The maximum resident set size (KB) = 1762776 + 0: The total amount of wall time = 286.122691 + 0: The maximum resident set size (KB) = 1771812 -Test 146 hafs_regional_docn_oisst_intel PASS +Test 147 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_datm_cdeps_intel -Checking test 147 hafs_regional_datm_cdeps_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hafs_regional_datm_cdeps_intel +Checking test 148 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 = 972.201906 - 0: The maximum resident set size (KB) = 1338496 + 0: The total amount of wall time = 973.151378 + 0: The maximum resident set size (KB) = 1337448 -Test 147 hafs_regional_datm_cdeps_intel PASS +Test 148 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_intel -Checking test 148 datm_cdeps_control_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_control_cfsr_intel +Checking test 149 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 = 121.258564 - 0: The maximum resident set size (KB) = 1134040 + 0: The total amount of wall time = 124.901548 + 0: The maximum resident set size (KB) = 1133476 -Test 148 datm_cdeps_control_cfsr_intel PASS +Test 149 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_restart_cfsr_intel -Checking test 149 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_restart_cfsr_intel +Checking test 150 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 76.664445 - 0: The maximum resident set size (KB) = 1096124 + 0: The total amount of wall time = 75.484743 + 0: The maximum resident set size (KB) = 1095556 -Test 149 datm_cdeps_restart_cfsr_intel PASS +Test 150 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_gefs_intel -Checking test 150 datm_cdeps_control_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_control_gefs_intel +Checking test 151 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.994370 - 0: The maximum resident set size (KB) = 1005596 + 0: The total amount of wall time = 116.939913 + 0: The maximum resident set size (KB) = 1008284 -Test 150 datm_cdeps_control_gefs_intel PASS +Test 151 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_iau_gefs_intel -Checking test 151 datm_cdeps_iau_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_iau_gefs_intel +Checking test 152 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 = 119.855768 - 0: The maximum resident set size (KB) = 1006492 + 0: The total amount of wall time = 119.881762 + 0: The maximum resident set size (KB) = 1000956 -Test 151 datm_cdeps_iau_gefs_intel PASS +Test 152 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_stochy_gefs_intel -Checking test 152 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_stochy_gefs_intel +Checking test 153 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.784610 - 0: The maximum resident set size (KB) = 1000208 + 0: The total amount of wall time = 120.744610 + 0: The maximum resident set size (KB) = 1002508 -Test 152 datm_cdeps_stochy_gefs_intel PASS +Test 153 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_ciceC_cfsr_intel -Checking test 153 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_ciceC_cfsr_intel +Checking test 154 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 = 123.461095 - 0: The maximum resident set size (KB) = 1139984 + 0: The total amount of wall time = 124.479867 + 0: The maximum resident set size (KB) = 1136116 -Test 153 datm_cdeps_ciceC_cfsr_intel PASS +Test 154 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_bulk_cfsr_intel -Checking test 154 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_bulk_cfsr_intel +Checking test 155 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.808801 - 0: The maximum resident set size (KB) = 1114876 + 0: The total amount of wall time = 123.708497 + 0: The maximum resident set size (KB) = 1134796 -Test 154 datm_cdeps_bulk_cfsr_intel PASS +Test 155 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_bulk_gefs_intel -Checking test 155 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_bulk_gefs_intel +Checking test 156 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 = 116.927470 - 0: The maximum resident set size (KB) = 1005492 + 0: The total amount of wall time = 117.914267 + 0: The maximum resident set size (KB) = 997200 -Test 155 datm_cdeps_bulk_gefs_intel PASS +Test 156 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_mx025_cfsr_intel -Checking test 156 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_mx025_cfsr_intel +Checking test 157 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5003,15 +5019,15 @@ Checking test 156 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 = 336.928017 - 0: The maximum resident set size (KB) = 1135812 + 0: The total amount of wall time = 312.418358 + 0: The maximum resident set size (KB) = 1142488 -Test 156 datm_cdeps_mx025_cfsr_intel PASS +Test 157 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_mx025_gefs_intel -Checking test 157 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_mx025_gefs_intel +Checking test 158 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5019,78 +5035,78 @@ Checking test 157 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 = 340.024134 - 0: The maximum resident set size (KB) = 1133188 + 0: The total amount of wall time = 310.687089 + 0: The maximum resident set size (KB) = 1125172 -Test 157 datm_cdeps_mx025_gefs_intel PASS +Test 158 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_multiple_files_cfsr_intel -Checking test 158 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_multiple_files_cfsr_intel +Checking test 159 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 = 121.993527 - 0: The maximum resident set size (KB) = 1134392 + 0: The total amount of wall time = 123.394876 + 0: The maximum resident set size (KB) = 1128920 -Test 158 datm_cdeps_multiple_files_cfsr_intel PASS +Test 159 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_3072x1536_cfsr_intel -Checking test 159 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_3072x1536_cfsr_intel +Checking test 160 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 = 173.830990 - 0: The maximum resident set size (KB) = 2417460 + 0: The total amount of wall time = 175.061228 + 0: The maximum resident set size (KB) = 2366088 -Test 159 datm_cdeps_3072x1536_cfsr_intel PASS +Test 160 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_gfs_intel -Checking test 160 datm_cdeps_gfs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_gfs_intel +Checking test 161 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 176.722210 - 0: The maximum resident set size (KB) = 2365304 + 0: The total amount of wall time = 177.673982 + 0: The maximum resident set size (KB) = 2419828 -Test 160 datm_cdeps_gfs_intel PASS +Test 161 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_debug_cfsr_intel -Checking test 161 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_debug_cfsr_intel +Checking test 162 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 293.748130 - 0: The maximum resident set size (KB) = 1060832 + 0: The total amount of wall time = 300.662469 + 0: The maximum resident set size (KB) = 1062060 -Test 161 datm_cdeps_debug_cfsr_intel PASS +Test 162 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_faster_intel -Checking test 162 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_control_cfsr_faster_intel +Checking test 163 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 = 122.437539 - 0: The maximum resident set size (KB) = 1141104 + 0: The total amount of wall time = 123.859420 + 0: The maximum resident set size (KB) = 1139916 -Test 162 datm_cdeps_control_cfsr_faster_intel PASS +Test 163 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_lnd_gswp3_intel -Checking test 163 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_lnd_gswp3_intel +Checking test 164 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 @@ -5098,15 +5114,15 @@ Checking test 163 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.610921 - 0: The maximum resident set size (KB) = 335868 + 0: The total amount of wall time = 7.631730 + 0: The maximum resident set size (KB) = 337964 -Test 163 datm_cdeps_lnd_gswp3_intel PASS +Test 164 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_lnd_gswp3_rst_intel -Checking test 164 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_lnd_gswp3_rst_intel +Checking test 165 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5114,15 +5130,15 @@ Checking test 164 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 = 8.736260 - 0: The maximum resident set size (KB) = 342196 + 0: The total amount of wall time = 8.620314 + 0: The maximum resident set size (KB) = 334416 -Test 164 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 165 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_atmlnd_sbs_intel -Checking test 165 control_p8_atmlnd_sbs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_atmlnd_sbs_intel +Checking test 166 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5206,15 +5222,15 @@ Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 180.018536 - 0: The maximum resident set size (KB) = 1689464 + 0: The total amount of wall time = 176.883519 + 0: The maximum resident set size (KB) = 1691972 -Test 165 control_p8_atmlnd_sbs_intel PASS +Test 166 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/atmwav_control_noaero_p8_intel +Checking test 167 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5256,15 +5272,15 @@ Checking test 166 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 = 81.424660 - 0: The maximum resident set size (KB) = 1682068 + 0: The total amount of wall time = 80.198034 + 0: The maximum resident set size (KB) = 1684552 -Test 166 atmwav_control_noaero_p8_intel PASS +Test 167 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_atmwav_intel +Checking test 168 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5307,15 +5323,15 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 75.082298 - 0: The maximum resident set size (KB) = 684584 + 0: The total amount of wall time = 76.401030 + 0: The maximum resident set size (KB) = 691660 -Test 167 control_atmwav_intel PASS +Test 168 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/atmaero_control_p8_intel +Checking test 169 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5358,15 +5374,15 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.004018 - 0: The maximum resident set size (KB) = 1763916 + 0: The total amount of wall time = 203.977523 + 0: The maximum resident set size (KB) = 1761712 -Test 168 atmaero_control_p8_intel PASS +Test 169 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/atmaero_control_p8_rad_intel +Checking test 170 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5409,15 +5425,15 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.278236 - 0: The maximum resident set size (KB) = 1791452 + 0: The total amount of wall time = 243.297540 + 0: The maximum resident set size (KB) = 1806672 -Test 169 atmaero_control_p8_rad_intel PASS +Test 170 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/atmaero_control_p8_rad_micro_intel +Checking test 171 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5460,15 +5476,15 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.167724 - 0: The maximum resident set size (KB) = 1795752 + 0: The total amount of wall time = 252.697532 + 0: The maximum resident set size (KB) = 1798628 -Test 170 atmaero_control_p8_rad_micro_intel PASS +Test 171 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_intel -Checking test 171 regional_atmaq_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_atmaq_intel +Checking test 172 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5483,15 +5499,15 @@ Checking test 171 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 556.102910 - 0: The maximum resident set size (KB) = 5503924 + 0: The total amount of wall time = 531.645616 + 0: The maximum resident set size (KB) = 5466692 -Test 171 regional_atmaq_intel PASS +Test 172 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_debug_intel -Checking test 172 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_atmaq_debug_intel +Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5504,15 +5520,15 @@ Checking test 172 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 978.278884 - 0: The maximum resident set size (KB) = 4988624 + 0: The total amount of wall time = 947.143126 + 0: The maximum resident set size (KB) = 4998940 -Test 172 regional_atmaq_debug_intel PASS +Test 173 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_faster_intel -Checking test 173 regional_atmaq_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_atmaq_faster_intel +Checking test 174 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5527,15 +5543,15 @@ Checking test 173 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 482.817488 - 0: The maximum resident set size (KB) = 5480132 + 0: The total amount of wall time = 453.342086 + 0: The maximum resident set size (KB) = 5466056 -Test 173 regional_atmaq_faster_intel PASS +Test 174 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c48_gnu -Checking test 174 control_c48_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_c48_gnu +Checking test 175 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5573,15 +5589,15 @@ Checking test 174 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 556.657994 -The maximum resident set size (KB) = 761836 +The total amount of wall time = 557.204494 +The maximum resident set size (KB) = 759540 -Test 174 control_c48_gnu PASS +Test 175 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_gnu -Checking test 175 control_stochy_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_stochy_gnu +Checking test 176 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5591,15 +5607,15 @@ Checking test 175 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 124.126159 -The maximum resident set size (KB) = 562628 +The total amount of wall time = 123.190047 +The maximum resident set size (KB) = 564560 -Test 175 control_stochy_gnu PASS +Test 176 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_gnu -Checking test 176 control_ras_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_ras_gnu +Checking test 177 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5609,15 +5625,15 @@ Checking test 176 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 206.528383 -The maximum resident set size (KB) = 569748 +The total amount of wall time = 207.862646 +The maximum resident set size (KB) = 570708 -Test 176 control_ras_gnu PASS +Test 177 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_gnu -Checking test 177 control_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_p8_gnu +Checking test 178 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5663,15 +5679,15 @@ Checking test 177 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.612097 -The maximum resident set size (KB) = 1321580 +The total amount of wall time = 215.829363 +The maximum resident set size (KB) = 1321860 -Test 177 control_p8_gnu PASS +Test 178 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_flake_gnu -Checking test 178 control_flake_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_flake_gnu +Checking test 179 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5681,15 +5697,15 @@ Checking test 178 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 248.506191 -The maximum resident set size (KB) = 610884 +The total amount of wall time = 249.448818 +The maximum resident set size (KB) = 608936 -Test 178 control_flake_gnu PASS +Test 179 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_gnu -Checking test 179 rap_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_gnu +Checking test 180 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5735,15 +5751,15 @@ Checking test 179 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.283577 -The maximum resident set size (KB) = 917932 +The total amount of wall time = 453.276081 +The maximum resident set size (KB) = 916864 -Test 179 rap_control_gnu PASS +Test 180 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_decomp_gnu -Checking test 180 rap_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_decomp_gnu +Checking test 181 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5789,15 +5805,15 @@ Checking test 180 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 454.473113 -The maximum resident set size (KB) = 920568 +The total amount of wall time = 453.651530 +The maximum resident set size (KB) = 918548 -Test 180 rap_decomp_gnu PASS +Test 181 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_gnu -Checking test 181 rap_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_2threads_gnu +Checking test 182 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5843,15 +5859,15 @@ Checking test 181 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.105073 -The maximum resident set size (KB) = 987360 +The total amount of wall time = 405.802692 +The maximum resident set size (KB) = 989312 -Test 181 rap_2threads_gnu PASS +Test 182 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_gnu -Checking test 182 rap_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_restart_gnu +Checking test 183 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -5889,15 +5905,15 @@ Checking test 182 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 221.033795 -The maximum resident set size (KB) = 787012 +The total amount of wall time = 226.913254 +The maximum resident set size (KB) = 785224 -Test 182 rap_restart_gnu PASS +Test 183 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_gnu -Checking test 183 rap_sfcdiff_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_gnu +Checking test 184 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5943,15 +5959,15 @@ Checking test 183 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 445.070524 -The maximum resident set size (KB) = 917536 +The total amount of wall time = 450.681969 +The maximum resident set size (KB) = 923736 -Test 183 rap_sfcdiff_gnu PASS +Test 184 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_decomp_gnu -Checking test 184 rap_sfcdiff_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_decomp_gnu +Checking test 185 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5997,15 +6013,15 @@ Checking test 184 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 455.707660 -The maximum resident set size (KB) = 921600 +The total amount of wall time = 453.094101 +The maximum resident set size (KB) = 922260 -Test 184 rap_sfcdiff_decomp_gnu PASS +Test 185 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_restart_gnu -Checking test 185 rap_sfcdiff_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_sfcdiff_restart_gnu +Checking test 186 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6043,15 +6059,15 @@ Checking test 185 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.484426 -The maximum resident set size (KB) = 795284 +The total amount of wall time = 328.763898 +The maximum resident set size (KB) = 791720 -Test 185 rap_sfcdiff_restart_gnu PASS +Test 186 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_gnu -Checking test 186 hrrr_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_gnu +Checking test 187 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6097,15 +6113,15 @@ Checking test 186 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.162587 -The maximum resident set size (KB) = 918532 +The total amount of wall time = 227.678568 +The maximum resident set size (KB) = 914932 -Test 186 hrrr_control_gnu PASS +Test 187 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_gnu -Checking test 187 hrrr_control_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_qr_gnu +Checking test 188 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6151,15 +6167,15 @@ Checking test 187 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 227.032460 -The maximum resident set size (KB) = 931092 +The total amount of wall time = 227.948631 +The maximum resident set size (KB) = 935152 -Test 187 hrrr_control_qr_gnu PASS +Test 188 hrrr_control_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_gnu -Checking test 188 hrrr_control_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_2threads_gnu +Checking test 189 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6205,15 +6221,15 @@ Checking test 188 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 200.472419 -The maximum resident set size (KB) = 971972 +The total amount of wall time = 204.966660 +The maximum resident set size (KB) = 972788 -Test 188 hrrr_control_2threads_gnu PASS +Test 189 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_gnu -Checking test 189 hrrr_control_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_decomp_gnu +Checking test 190 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6259,43 +6275,43 @@ Checking test 189 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 226.968201 -The maximum resident set size (KB) = 917276 +The total amount of wall time = 227.370931 +The maximum resident set size (KB) = 914788 -Test 189 hrrr_control_decomp_gnu PASS +Test 190 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_gnu -Checking test 190 hrrr_control_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_gnu +Checking test 191 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 113.726364 -The maximum resident set size (KB) = 738876 +The total amount of wall time = 115.103725 +The maximum resident set size (KB) = 739444 -Test 190 hrrr_control_restart_gnu PASS +Test 191 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_gnu -Checking test 191 hrrr_control_restart_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_qr_gnu +Checking test 192 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 117.265440 -The maximum resident set size (KB) = 642360 +The total amount of wall time = 115.349133 +The maximum resident set size (KB) = 641420 -Test 191 hrrr_control_restart_qr_gnu PASS +Test 192 hrrr_control_restart_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_gnu -Checking test 192 rrfs_v1beta_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1beta_gnu +Checking test 193 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6341,225 +6357,225 @@ Checking test 192 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.214922 -The maximum resident set size (KB) = 915596 +The total amount of wall time = 441.844118 +The maximum resident set size (KB) = 914572 -Test 192 rrfs_v1beta_gnu PASS +Test 193 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_diag_debug_gnu -Checking test 193 control_diag_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_diag_debug_gnu +Checking test 194 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 65.584943 -The maximum resident set size (KB) = 607560 +The total amount of wall time = 67.327681 +The maximum resident set size (KB) = 605144 -Test 193 control_diag_debug_gnu PASS +Test 194 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_debug_gnu -Checking test 194 regional_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/regional_debug_gnu +Checking test 195 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 357.394977 -The maximum resident set size (KB) = 857240 +The total amount of wall time = 356.727076 +The maximum resident set size (KB) = 863020 -Test 194 regional_debug_gnu PASS +Test 195 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_gnu -Checking test 195 rap_control_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_debug_gnu +Checking test 196 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.392388 -The maximum resident set size (KB) = 927160 +The total amount of wall time = 107.236827 +The maximum resident set size (KB) = 927272 -Test 195 rap_control_debug_gnu PASS +Test 196 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_gnu -Checking test 196 hrrr_control_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_debug_gnu +Checking test 197 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.640476 -The maximum resident set size (KB) = 925920 +The total amount of wall time = 104.719302 +The maximum resident set size (KB) = 928120 -Test 196 hrrr_control_debug_gnu PASS +Test 197 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_gf_debug_gnu -Checking test 197 hrrr_gf_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_gf_debug_gnu +Checking test 198 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.282137 -The maximum resident set size (KB) = 924568 +The total amount of wall time = 103.366582 +The maximum resident set size (KB) = 928044 -Test 197 hrrr_gf_debug_gnu PASS +Test 198 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_c3_debug_gnu -Checking test 198 hrrr_c3_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_c3_debug_gnu +Checking test 199 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 113.842297 -The maximum resident set size (KB) = 924492 +The total amount of wall time = 104.252470 +The maximum resident set size (KB) = 932268 -Test 198 hrrr_c3_debug_gnu PASS +Test 199 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_diag_debug_gnu -Checking test 199 rap_diag_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_diag_debug_gnu +Checking test 200 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 115.995783 -The maximum resident set size (KB) = 1005508 +The total amount of wall time = 114.495957 +The maximum resident set size (KB) = 1013840 -Test 199 rap_diag_debug_gnu PASS +Test 200 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 200 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 173.224814 -The maximum resident set size (KB) = 927752 +The total amount of wall time = 171.767261 +The maximum resident set size (KB) = 925688 -Test 200 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 201 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_progcld_thompson_debug_gnu -Checking test 201 rap_progcld_thompson_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_progcld_thompson_debug_gnu +Checking test 202 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 110.261666 -The maximum resident set size (KB) = 927396 +The total amount of wall time = 105.629858 +The maximum resident set size (KB) = 927008 -Test 201 rap_progcld_thompson_debug_gnu PASS +Test 202 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_debug_gnu -Checking test 202 rrfs_v1beta_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rrfs_v1beta_debug_gnu +Checking test 203 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.587224 -The maximum resident set size (KB) = 919684 +The total amount of wall time = 105.744804 +The maximum resident set size (KB) = 927888 -Test 202 rrfs_v1beta_debug_gnu PASS +Test 203 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_debug_gnu -Checking test 203 control_ras_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_ras_debug_gnu +Checking test 204 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 60.744511 -The maximum resident set size (KB) = 561980 +The total amount of wall time = 60.244838 +The maximum resident set size (KB) = 564260 -Test 203 control_ras_debug_gnu PASS +Test 204 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_debug_gnu -Checking test 204 control_stochy_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_stochy_debug_gnu +Checking test 205 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 68.271652 -The maximum resident set size (KB) = 553528 +The total amount of wall time = 66.054115 +The maximum resident set size (KB) = 554852 -Test 204 control_stochy_debug_gnu PASS +Test 205 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_debug_p8_gnu -Checking test 205 control_debug_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/control_debug_p8_gnu +Checking test 206 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 70.392363 -The maximum resident set size (KB) = 1311676 +The total amount of wall time = 67.946495 +The maximum resident set size (KB) = 1311568 -Test 205 control_debug_p8_gnu PASS +Test 206 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_flake_debug_gnu -Checking test 206 rap_flake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_flake_debug_gnu +Checking test 207 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.982014 -The maximum resident set size (KB) = 924592 +The total amount of wall time = 106.654131 +The maximum resident set size (KB) = 927288 -Test 206 rap_flake_debug_gnu PASS +Test 207 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_clm_lake_debug_gnu -Checking test 207 rap_clm_lake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_clm_lake_debug_gnu +Checking test 208 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 120.123907 -The maximum resident set size (KB) = 927752 +The total amount of wall time = 116.053744 +The maximum resident set size (KB) = 934052 -Test 207 rap_clm_lake_debug_gnu PASS +Test 208 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn32_phy32_gnu -Checking test 208 rap_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn32_phy32_gnu +Checking test 209 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6605,15 +6621,15 @@ Checking test 208 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.344127 -The maximum resident set size (KB) = 772388 +The total amount of wall time = 420.193897 +The maximum resident set size (KB) = 772328 -Test 208 rap_control_dyn32_phy32_gnu PASS +Test 209 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_dyn32_phy32_gnu -Checking test 209 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_dyn32_phy32_gnu +Checking test 210 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6659,15 +6675,15 @@ Checking test 209 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 215.243799 -The maximum resident set size (KB) = 769668 +The total amount of wall time = 218.530316 +The maximum resident set size (KB) = 769748 -Test 209 hrrr_control_dyn32_phy32_gnu PASS +Test 210 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_dyn32_phy32_gnu -Checking test 210 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_qr_dyn32_phy32_gnu +Checking test 211 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6713,15 +6729,15 @@ Checking test 210 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 219.354862 -The maximum resident set size (KB) = 784724 +The total amount of wall time = 219.252864 +The maximum resident set size (KB) = 780908 -Test 210 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 211 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_dyn32_phy32_gnu -Checking test 211 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_2threads_dyn32_phy32_gnu +Checking test 212 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6767,15 +6783,15 @@ Checking test 211 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.440010 -The maximum resident set size (KB) = 818796 +The total amount of wall time = 383.274479 +The maximum resident set size (KB) = 818448 -Test 211 rap_2threads_dyn32_phy32_gnu PASS +Test 212 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 212 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 213 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6821,15 +6837,15 @@ Checking test 212 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 193.821382 -The maximum resident set size (KB) = 808012 +The total amount of wall time = 196.305775 +The maximum resident set size (KB) = 808332 -Test 212 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 213 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 213 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 214 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6875,15 +6891,15 @@ Checking test 213 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.540715 -The maximum resident set size (KB) = 770692 +The total amount of wall time = 220.096877 +The maximum resident set size (KB) = 769868 -Test 213 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 214 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_dyn32_phy32_gnu -Checking test 214 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_restart_dyn32_phy32_gnu +Checking test 215 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6921,43 +6937,43 @@ Checking test 214 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 313.814993 -The maximum resident set size (KB) = 682772 +The total amount of wall time = 320.808775 +The maximum resident set size (KB) = 684392 -Test 214 rap_restart_dyn32_phy32_gnu PASS +Test 215 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_dyn32_phy32_gnu -Checking test 215 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_dyn32_phy32_gnu +Checking test 216 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 110.798815 -The maximum resident set size (KB) = 643988 +The total amount of wall time = 109.106574 +The maximum resident set size (KB) = 645320 -Test 215 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 216 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 216 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 217 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 112.273249 -The maximum resident set size (KB) = 609220 +The total amount of wall time = 114.437459 +The maximum resident set size (KB) = 614292 -Test 216 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 217 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_control_gnu -Checking test 217 conus13km_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_control_gnu +Checking test 218 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6972,41 +6988,41 @@ Checking test 217 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 148.546246 -The maximum resident set size (KB) = 977816 +The total amount of wall time = 143.062606 +The maximum resident set size (KB) = 982236 -Test 217 conus13km_control_gnu PASS +Test 218 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_2threads_gnu -Checking test 218 conus13km_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_2threads_gnu +Checking test 219 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 58.757599 -The maximum resident set size (KB) = 994168 +The total amount of wall time = 53.464551 +The maximum resident set size (KB) = 982056 -Test 218 conus13km_2threads_gnu PASS +Test 219 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_restart_mismatch_gnu -Checking test 219 conus13km_restart_mismatch_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_restart_mismatch_gnu +Checking test 220 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 80.680218 -The maximum resident set size (KB) = 641060 +The total amount of wall time = 78.100801 +The maximum resident set size (KB) = 642292 -Test 219 conus13km_restart_mismatch_gnu PASS +Test 220 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_gnu -Checking test 220 rap_control_dyn64_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn64_phy32_gnu +Checking test 221 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7052,43 +7068,43 @@ Checking test 220 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.473454 -The maximum resident set size (KB) = 795780 +The total amount of wall time = 248.196952 +The maximum resident set size (KB) = 794948 -Test 220 rap_control_dyn64_phy32_gnu PASS +Test 221 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_dyn32_phy32_gnu -Checking test 221 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_debug_dyn32_phy32_gnu +Checking test 222 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.380909 -The maximum resident set size (KB) = 783168 +The total amount of wall time = 105.090888 +The maximum resident set size (KB) = 782560 -Test 221 rap_control_debug_dyn32_phy32_gnu PASS +Test 222 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_dyn32_phy32_gnu -Checking test 222 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/hrrr_control_debug_dyn32_phy32_gnu +Checking test 223 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 104.402836 -The maximum resident set size (KB) = 781800 +The total amount of wall time = 102.016226 +The maximum resident set size (KB) = 779928 -Test 222 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 223 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_gnu -Checking test 223 conus13km_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_gnu +Checking test 224 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7101,15 +7117,15 @@ Checking test 223 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 315.636703 -The maximum resident set size (KB) = 994196 +The total amount of wall time = 305.969169 +The maximum resident set size (KB) = 996576 -Test 223 conus13km_debug_gnu PASS +Test 224 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_qr_gnu -Checking test 224 conus13km_debug_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_qr_gnu +Checking test 225 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7122,57 +7138,57 @@ Checking test 224 conus13km_debug_qr_gnu 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 = 319.003968 -The maximum resident set size (KB) = 665728 +The total amount of wall time = 327.663123 +The maximum resident set size (KB) = 666108 -Test 224 conus13km_debug_qr_gnu PASS +Test 225 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_2threads_gnu -Checking test 225 conus13km_debug_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_debug_2threads_gnu +Checking test 226 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.132171 -The maximum resident set size (KB) = 999956 +The total amount of wall time = 180.412405 +The maximum resident set size (KB) = 1007072 -Test 225 conus13km_debug_2threads_gnu PASS +Test 226 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_radar_tten_debug_gnu -Checking test 226 conus13km_radar_tten_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/conus13km_radar_tten_debug_gnu +Checking test 227 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 315.994922 -The maximum resident set size (KB) = 1061804 +The total amount of wall time = 312.672828 +The maximum resident set size (KB) = 1063112 -Test 226 conus13km_radar_tten_debug_gnu PASS +Test 227 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_debug_gnu -Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/rap_control_dyn64_phy32_debug_gnu +Checking test 228 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 109.190099 -The maximum resident set size (KB) = 803432 +The total amount of wall time = 108.563403 +The maximum resident set size (KB) = 802852 -Test 227 rap_control_dyn64_phy32_debug_gnu PASS +Test 228 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_gnu -Checking test 228 cpld_control_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_p8_gnu +Checking test 229 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7236,15 +7252,15 @@ Checking test 228 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 407.561471 -The maximum resident set size (KB) = 1593904 +The total amount of wall time = 410.566008 +The maximum resident set size (KB) = 1594412 -Test 228 cpld_control_p8_gnu PASS +Test 229 cpld_control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_nowave_noaero_p8_gnu -Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_c96_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_nowave_noaero_p8_gnu +Checking test 230 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7305,15 +7321,15 @@ Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 278.972073 -The maximum resident set size (KB) = 1426800 +The total amount of wall time = 277.085528 +The maximum resident set size (KB) = 1427748 -Test 229 cpld_control_nowave_noaero_p8_gnu PASS +Test 230 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_p8_gnu -Checking test 230 cpld_debug_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_debug_p8_gnu +Checking test 231 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7365,15 +7381,15 @@ Checking test 230 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 215.441184 -The maximum resident set size (KB) = 1601804 +The total amount of wall time = 210.123669 +The maximum resident set size (KB) = 1604140 -Test 230 cpld_debug_p8_gnu PASS +Test 231 cpld_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_pdlib_p8_gnu -Checking test 231 cpld_control_pdlib_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_control_pdlib_p8_gnu +Checking test 232 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7436,15 +7452,15 @@ Checking test 231 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 970.560985 -The maximum resident set size (KB) = 1404432 +The total amount of wall time = 962.217412 +The maximum resident set size (KB) = 1407320 -Test 231 cpld_control_pdlib_p8_gnu PASS +Test 232 cpld_control_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_pdlib_p8_gnu -Checking test 232 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/cpld_debug_pdlib_p8_gnu +Checking test 233 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7495,25 +7511,25 @@ Checking test 232 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 528.134472 -The maximum resident set size (KB) = 1402800 +The total amount of wall time = 526.018479 +The maximum resident set size (KB) = 1404804 -Test 232 cpld_debug_pdlib_p8_gnu PASS +Test 233 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_gnu -working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_gnu -Checking test 233 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231013/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2953338/datm_cdeps_control_cfsr_gnu +Checking test 234 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.311162 -The maximum resident set size (KB) = 754504 +The total amount of wall time = 134.785314 +The maximum resident set size (KB) = 759964 -Test 233 datm_cdeps_control_cfsr_gnu PASS +Test 234 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 2 17:32:23 CDT 2023 -Elapsed time: 01h:13m:35s. Have a nice day! +Thu Oct 19 16:20:28 CDT 2023 +Elapsed time: 01h:14m:16s. Have a nice day! diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index 7057ce2f58..645ef1f6db 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -835,6 +835,31 @@ ENERGYSAVEDAYS = 1.00 ! [days] default = 1.0 ! === module ocean_model_init === +! === module MOM_oda_incupd === +ODA_INCUPD = @[ODA_INCUPD] ! [Boolean] default = False + ! If true, oda incremental updates will be applied + ! everywhere in the domain. +ODA_INCUPD_FILE = "mom6_increment.nc" ! The name of the file with the T,S,h increments. + +ODA_TEMPINC_VAR = @[ODA_TEMPINC_VAR] ! default = "ptemp_inc" + ! The name of the potential temperature inc. variable in + ! ODA_INCUPD_FILE. +ODA_SALTINC_VAR = @[ODA_SALTINC_VAR] ! default = "sal_inc" + ! The name of the salinity inc. variable in + ! ODA_INCUPD_FILE. +ODA_THK_VAR = @[ODA_THK_VAR] ! default = "h" + ! The name of the int. depth inc. variable in + ! ODA_INCUPD_FILE. +ODA_INCUPD_UV = @[ODA_INCUPD_UV] ! +ODA_UINC_VAR = @[ODA_UINC_VAR] ! default = "u_inc" + ! The name of the zonal vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_VINC_VAR = @[ODA_VINC_VAR] ! default = "v_inc" + ! The name of the meridional vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_INCUPD_NHOURS = @[ODA_INCUPD_NHOURS] ! default=3.0 + ! Number of hours for full update (0=direct insertion). + ! === module MOM_surface_forcing === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the diff --git a/tests/parm/MOM_input_template_050 b/tests/parm/MOM_input_template_050 index 2853c1de89..4918b8e74d 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_template_050 @@ -860,8 +860,33 @@ USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False ! If true, enables the neutral diffusion module. ! === module ocean_model_init === - RESTART_CHECKSUMS_REQUIRED = False + +! === module MOM_oda_incupd === +ODA_INCUPD = @[ODA_INCUPD] ! [Boolean] default = False + ! If true, oda incremental updates will be applied + ! everywhere in the domain. +ODA_INCUPD_FILE = "mom6_increment.nc" ! The name of the file with the T,S,h increments. + +ODA_TEMPINC_VAR = @[ODA_TEMPINC_VAR] ! default = "ptemp_inc" + ! The name of the potential temperature inc. variable in + ! ODA_INCUPD_FILE. +ODA_SALTINC_VAR = @[ODA_SALTINC_VAR] ! default = "sal_inc" + ! The name of the salinity inc. variable in + ! ODA_INCUPD_FILE. +ODA_THK_VAR = @[ODA_THK_VAR] ! default = "h" + ! The name of the int. depth inc. variable in + ! ODA_INCUPD_FILE. +ODA_INCUPD_UV = @[ODA_INCUPD_UV] ! +ODA_UINC_VAR = @[ODA_UINC_VAR] ! default = "u_inc" + ! The name of the zonal vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_VINC_VAR = @[ODA_VINC_VAR] ! default = "v_inc" + ! The name of the meridional vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_INCUPD_NHOURS = @[ODA_INCUPD_NHOURS] ! default=3.0 + ! Number of hours for full update (0=direct insertion). + ! === module MOM_lateral_boundary_diffusion === ! This module implements lateral diffusion of tracers near boundaries diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index 4da3e10fa2..14e18232ed 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -74,31 +74,6 @@ WRITE_GEOM = 2 ! default = 1 SAVE_INITIAL_CONDS = False ! [Boolean] default = False ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. -! === module MOM_oda_incupd === -ODA_INCUPD = @[MOM_IAU] ! [Boolean] default = False - ! If true, oda incremental updates will be applied - ! everywhere in the domain. -ODA_INCUPD_FILE = "mom6_increment.nc" ! The name of the file with the T,S,h increments. - -ODA_TEMPINC_VAR = "pt_inc" ! default = "ptemp_inc" - ! The name of the potential temperature inc. variable in - ! ODA_INCUPD_FILE. -ODA_SALTINC_VAR = "s_inc" ! default = "sal_inc" - ! The name of the salinity inc. variable in - ! ODA_INCUPD_FILE. -ODA_THK_VAR = "h_fg" ! default = "h" - ! The name of the int. depth inc. variable in - ! ODA_INCUPD_FILE. - -ODA_UINC_VAR = "u_inc" ! default = "u_inc" - ! The name of the zonal vel. inc. variable in - ! ODA_INCUPD_UV_FILE. -ODA_VINC_VAR = "v_inc" ! default = "v_inc" - ! The name of the meridional vel. inc. variable in - ! ODA_INCUPD_UV_FILE. -ODA_INCUPD_NHOURS = @[MOM_IAU_HRS] ! default=3.0 - ! Number of hours for full update (0=direct insertion). - ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False ! Use tripolar connectivity at the northern edge of the domain. With @@ -832,6 +807,31 @@ ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 ! === module ocean_model_init === +! === module MOM_oda_incupd === +ODA_INCUPD = @[ODA_INCUPD] ! [Boolean] default = False + ! If true, oda incremental updates will be applied + ! everywhere in the domain. +ODA_INCUPD_FILE = "mom6_increment.nc" ! The name of the file with the T,S,h increments. + +ODA_TEMPINC_VAR = @[ODA_TEMPINC_VAR] ! default = "ptemp_inc" + ! The name of the potential temperature inc. variable in + ! ODA_INCUPD_FILE. +ODA_SALTINC_VAR = @[ODA_SALTINC_VAR] ! default = "sal_inc" + ! The name of the salinity inc. variable in + ! ODA_INCUPD_FILE. +ODA_THK_VAR = @[ODA_THK_VAR] ! default = "h" + ! The name of the int. depth inc. variable in + ! ODA_INCUPD_FILE. +ODA_INCUPD_UV = @[ODA_INCUPD_UV] ! +ODA_UINC_VAR = @[ODA_UINC_VAR] ! default = "u_inc" + ! The name of the zonal vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_VINC_VAR = @[ODA_VINC_VAR] ! default = "v_inc" + ! The name of the meridional vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_INCUPD_NHOURS = @[ODA_INCUPD_NHOURS] ! default=3.0 + ! Number of hours for full update (0=direct insertion). + ! === module MOM_surface_forcing === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the diff --git a/tests/parm/MOM_input_template_500 b/tests/parm/MOM_input_template_500 index 2a5dde838b..d487e67009 100644 --- a/tests/parm/MOM_input_template_500 +++ b/tests/parm/MOM_input_template_500 @@ -495,6 +495,31 @@ MAXTRUNC = 1000 ! [truncations save_interval-1] default = 0 ! === module ocean_model_init === +! === module MOM_oda_incupd === +ODA_INCUPD = @[ODA_INCUPD] ! [Boolean] default = False + ! If true, oda incremental updates will be applied + ! everywhere in the domain. +ODA_INCUPD_FILE = "mom6_increment.nc" ! The name of the file with the T,S,h increments. + +ODA_TEMPINC_VAR = @[ODA_TEMPINC_VAR] ! default = "ptemp_inc" + ! The name of the potential temperature inc. variable in + ! ODA_INCUPD_FILE. +ODA_SALTINC_VAR = @[ODA_SALTINC_VAR] ! default = "sal_inc" + ! The name of the salinity inc. variable in + ! ODA_INCUPD_FILE. +ODA_THK_VAR = @[ODA_THK_VAR] ! default = "h" + ! The name of the int. depth inc. variable in + ! ODA_INCUPD_FILE. +ODA_INCUPD_UV = @[ODA_INCUPD_UV] ! +ODA_UINC_VAR = @[ODA_UINC_VAR] ! default = "u_inc" + ! The name of the zonal vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_VINC_VAR = @[ODA_VINC_VAR] ! default = "v_inc" + ! The name of the meridional vel. inc. variable in + ! ODA_INCUPD_UV_FILE. +ODA_INCUPD_NHOURS = @[ODA_INCUPD_NHOURS] ! default=3.0 + ! Number of hours for full update (0=direct insertion). + ! === module MOM_surface_forcing === OCEAN_SURFACE_STAGGER = "A" ! default = "C" ! A case-insensitive character string to indicate the diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 277e6c2450..d6685f4a37 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -92,6 +92,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + / &external_ic_nml @@ -218,6 +219,10 @@ do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] + iaufhrs = @[IAUFHRS] + iau_delthrs = @[IAU_DELTHRS] + iau_inc_files= @[IAU_INC_FILES] + iau_drymassfixer = .false. use_med_flux = @[USE_MED_FLUX] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] diff --git a/tests/parm/diag_table/diag_table_cpld_template_iau b/tests/parm/diag_table/diag_table_cpld_template_iau new file mode 100644 index 0000000000..ae3146372f --- /dev/null +++ b/tests/parm/diag_table/diag_table_cpld_template_iau @@ -0,0 +1,311 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +# chemical tracers advected by FV3 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 4b8c276331..3e43c76e79 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -29,6 +29,24 @@ canonical_units: N m-2 description: mediator calculation # + - standard_name: Foxx_lwnet + alias: mean_net_lw_flx + canonical_units: W m-2 + description: mediator calculation - atm/ocn net longwave flux + # + - standard_name: Foxx_sen + canonical_units: W m-2 + alias: mean_sensi_heat_flx + description: mediator calculation - atm/ocn surface sensible heat flux + # + - standard_name: Foxx_evap + canonical_units: kg m-2 s-1 + alias: mean_evap_rate + description: mediator calculation - atm/ocn specific humidity flux + # + - standard_name: Faox_evap + canonical_units: kg m-2 s-1 + description: mediator calculation - atm/ocn specific humidity flux #----------------------------------- # section: atmosphere export #----------------------------------- @@ -64,12 +82,12 @@ description: atmosphere export - mean downward LW heat flux # - standard_name: Faxa_rain - alias: mean_prec_rate + alias: inst_prec_rate canonical_units: kg m-2 s-1 description: atmosphere export # - standard_name: Faxa_rainc - alias: mean_prec_rate_conv + alias: inst_prec_rate_conv canonical_units: kg m-2 s-1 description: atmosphere export # @@ -78,7 +96,7 @@ description: atmosphere export # - standard_name: Faxa_snow - alias: mean_fprec_rate + alias: inst_fprec_rate canonical_units: kg m-2 s-1 description: atmosphere export # @@ -211,6 +229,21 @@ canonical_units: N m-2 description: atmosphere export - meridional component of momentum flux # + - standard_name: Faxa_lwnet + canonical_units: W m-2 + alias: mean_net_lw_flx + description: atmosphere export - mean net longwave flux from atm + # + - standard_name: Faxa_sen + canonical_units: W m-2 + alias: mean_sensi_heat_flx + description: atmosphere export - sensible heat flux + # + - standard_name : Faxa_evap + canonical_units: kg m-2 s-1 + alias: mean_evap_rate + description: atmosphere export - latent heat flux conversion + # - standard_name: Faxx_evap canonical_units: kg m-2 s-1 description: atmosphere import @@ -318,22 +351,22 @@ #----------------------------------- # - standard_name: Faii_evap - alias: mean_evap_rate_atm_into_ice + alias: evap_rate_atm_into_ice canonical_units: kg m-2 s-1 description: sea-ice export # - standard_name: Faii_lat - alias: mean_laten_heat_flx_atm_into_ice + alias: laten_heat_flx_atm_into_ice canonical_units: W m-2 description: sea-ice export to atm - atm/ice latent heat flux # - standard_name: Faii_sen - alias: mean_sensi_heat_flx_atm_into_ice + alias: sensi_heat_flx_atm_into_ice canonical_units: W m-2 description: sea-ice export to atm - atm/ice sensible heat flux # - standard_name: Faii_lwup - alias: mean_up_lw_flx_ice + alias: lwup_flx_ice canonical_units: W m-2 description: sea-ice export - outgoing logwave radiation # @@ -466,16 +499,16 @@ description: sea-ice export # - standard_name: Si_vice - alias: mean_ice_volume + alias: sea_ice_volume canonical_units: m - description: sea-ice export - volume of ice per unit are + description: sea-ice export - volume of ice per unit area # - standard_name: Si_snowh canonical_units: m description: sea-ice export - surface_snow_water_equivalent # - standard_name: Si_vsno - alias: mean_snow_volume + alias: snow_volume_on_sea_ice canonical_units: m description: sea-ice export - volume of snow per unit area # @@ -583,28 +616,35 @@ # section: ocean import #----------------------------------- # - - standard_name: mean_runoff_rate - canonical_units: kg m-2 s-1 - description: ocean import - total runoff to ocean + - standard_name: Foxx_hrain + canonical_units: W m-2 + description: to ocn heat content of rain # - - standard_name: mean_runoff_heat_flux - canonical_units: kg m-2 s-1 - description: ocean import - heat content of runoff + - standard_name: Foxx_hsnow + canonical_units: W m-2 + description: to ocn heat content of snow # - - standard_name: mean_calving_rate - canonical_units: kg m-2 s-1 - description: ocean import - total calving to ocean + - standard_name: Foxx_hevap + canonical_units: W m-2 + description: to ocn heat content of evaporation # - - standard_name: mean_calving_heat_flux - canonical_units: kg m-2 s-1 - description: ocean import - heat content of calving + - standard_name: Foxx_hcond + canonical_units: W m-2 + description: to ocn heat content of condensation + # + - standard_name: Foxx_hrofl + canonical_units: W m-2 + description: to ocn heat content of liquid runoff + # + - standard_name: Foxx_hrofi + canonical_units: W m-2 + description: to ocn heat content of ice runoff # - standard_name: Foxx_rofi canonical_units: kg m-2 s-1 description: ocean import - water flux due to runoff (frozen) # - standard_name: Foxx_rofl - alias: mean_runoff_rate canonical_units: kg m-2 s-1 description: ocean import - water flux due to runoff (liquid) # @@ -666,52 +706,21 @@ canonical_units: 1 # #----------------------------------- - # aliased fields for active and datm - #----------------------------------- - # - - standard_name: mean_net_lw_flx - canonical_units: W m-2 - - alias: Faxa_lwnet - standard_name : mean_net_lw_flx - description: atmosphere export - mean net longwave flux from atm - - alias: Foxx_lwnet - standard_name : mean_net_lw_flx - description: mediator calculation - atm/ocn net longwave flux - # - - standard_name: mean_sensi_heat_flx - canonical_units: W m-2 - - alias: Faxa_sen - standard_name : mean_sensi_heat_flx - description: atmosphere export - sensible heat flux - - alias: Faox_sen - standard_name : mean_sensi_heat_flx - description: mediator calculation - atm/ocn surface sensible heat flux - # - - standard_name: mean_evap_rate - canonical_units: kg m-2 s-1 - - alias: Faxa_evap - standard_name : mean_evap_rate - description: atmosphere export - latent heat flux conversion - - alias: Faox_evap - standard_name : mean_evap_rate - description: mediator calculation - atm/ocn specific humidity flux - # - #----------------------------------- # fields to use fluxes from mediator #----------------------------------- # - standard_name: Faox_lat - alias: mean_laten_heat_flx_atm_into_ocn + alias: laten_heat_flx_atm_into_ocn canonical_units: W m-2 description: mediator export - atm/ocn surface latent heat flux # - standard_name: Faox_sen - alias: mean_sensi_heat_flx_atm_into_ocn + alias: sensi_heat_flx_atm_into_ocn canonical_units: W m-2 description: mediator export - atm/ocn surface sensible heat flux # - standard_name: Faox_lwup - alias: mean_up_lw_flx_ocn + alias: lwup_flx_ocn canonical_units: W m-2 description: mediator export - long wave radiation flux over the ocean # @@ -729,6 +738,12 @@ # section: atmosphere fields that need to be defined but are not used #----------------------------------- # + - standard_name: mean_prec_rate + canonical_units: kg m-2 s-1 + - standard_name: mean_fprec_rate + canonical_units: kg m-2 s-1 + - standard_name: mean_prec_rate_conv + canonical_units: kg m-2 s-1 - standard_name: inst_down_lw_flx canonical_units: W m-2 - standard_name: inst_net_lw_flx diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/nems.configure.hafs_atm_ocn.IN index 8ea8a6ab50..48e5f0b72b 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn.IN @@ -143,7 +143,7 @@ ocn_export_fields:: ocn_import_fields:: 'taux10' 'mean_zonal_moment_flx_atm' 'N_m-2' 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' - 'prcp' 'mean_prec_rate' 'kg_m-2_s-1' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' 'swflxd' 'mean_net_sw_flx' 'W_m-2' 'lwflxd' 'mean_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index 4a30039a23..c2266f55ab 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -157,7 +157,7 @@ ocn_export_fields:: ocn_import_fields:: 'taux10' 'mean_zonal_moment_flx_atm' 'N_m-2' 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' - 'prcp' 'mean_prec_rate' 'kg_m-2_s-1' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' 'swflxd' 'mean_net_sw_flx' 'W_m-2' 'lwflxd' 'mean_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index 7919cfe719..42d831aca4 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -119,7 +119,7 @@ ocn_export_fields:: ocn_import_fields:: 'taux10' 'mean_zonal_moment_flx_atm' 'N_m-2' 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' - 'prcp' 'mean_prec_rate' 'kg_m-2_s-1' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' 'swflxd' 'mean_net_sw_flx' 'W_m-2' 'lwflxd' 'mean_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' diff --git a/tests/rt.conf b/tests/rt.conf index 85e31610b1..5345b5485c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -24,6 +24,7 @@ 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 | +RUN | cpld_control_gfsv17_iau | | baseline | cpld_control_gfsv17 COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index af52e8562f..62fdadd926 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -74,7 +74,7 @@ export_cpl export CPLCHM=.false. export DNATS=0 -export RESTART_N=12 +export RESTART_N=3 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau new file mode 100644 index 0000000000..91478a0d70 --- /dev/null +++ b/tests/tests/cpld_control_gfsv17_iau @@ -0,0 +1,71 @@ +# +# cpld_control GFSv17 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 with IAU" + +export CNTL_DIR="cpld_control_gfsv17_iau" + +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12 \ + 20210323.000000.out_pnt.ww3 \ + 20210323.000000.out_grd.ww3 " + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 +export OUTPUT_GRID="gaussian_grid" +export WRITE_DOPOST=.true. + +export FHROT=3 +export FHMAX=18 +export RESTART_N=$((FHMAX-$FHROT)) +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 +export DIAG_FREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` + +export FV3_RUN=cpld_control_run.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld_template +export INPUT_NML=cpld_control.nml.IN +export NEMS_CONFIGURE=nems.configure.cpld_noaero_outwav.IN + +#GFSv17 settings +export PROGSIGMA=.true. + +#IAU +export CHOUR=12 +export IAU_OFFSET=6 +export IAU_DELTHRS=6 +export IAUFHRS='3 6 9' +export IAU_INC_FILES="'fv_increment3.nc','fv_increment6.nc','fv_increment9.nc'" +export ODA_INCUPD="True" +export ODA_INCUPD_UV="True" + +if [[ $MACHINE_ID = cheyenne ]]; then + TPN=18 +fi diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index 4b8e99370e..108b58e26b 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -14,7 +14,8 @@ export_datm_cdeps export atm_datamode="GEFS" # atm configure -export MOM_IAU="True" +export ODA_INCUPD="True" +export ODA_INCUPD_UV="True" export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM