diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 90f7f90d70..f287387a35 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,83 +1,153 @@ -## Description + +## Commit Queue Requirements: + +- [ ] Fill out all sections of this template. +- [ ] All sub component pull requests have been reviewed by their code managers. +- [ ] Run the full Intel+GNU RT suite (compared to current baselines) on either Hera/Derecho/Hercules +- [ ] Commit 'test_changes.list' from previous step +--- +## Description: -### Input data additions/changes -- [ ] No changes are expected to input data. -- [ ] Changes are expected to input data: - - [ ] New input data. - - [ ] Updated input data. - -### Anticipated changes to regression tests: -- [ ] No changes are expected to any regression test. -- [ ] Changes are expected to the following tests: - - -## Subcomponents involved: -- [ ] AQM -- [ ] CDEPS -- [ ] CICE -- [ ] CMEPS -- [ ] CMakeModules -- [ ] FV3 -- [ ] GOCART -- [ ] HYCOM -- [ ] MOM6 -- [ ] NOAHMP -- [ ] WW3 -- [ ] stochastic_physics -- [ ] none -### Library Updates/Changes - -- [ ] Not Needed -- [ ] Create separate issue in [JCSDA/spack-stack](https://github.com/JCSDA/spack-stack) asking for update to library. Include library name, library version. -- [ ] Add issue link from JCSDA/spack-stack following this item - +### Commit Message: + +``` +* UFSWM - + * AQM - + * CDEPS - + * CICE - + * CMEPS - + * CMakeModules - + * FV3 - + * ccpp-physics - + * atmos_cubed_sphere - + * GOCART - + * HYCOM - + * MOM6 - + * NOAHMP - + * WW3 - + * stochastic_physics - +``` -### Combined with PR's (If Applicable): +### Priority: + +* Critical Bugfix: Reason +* High: Reason +* Normal -## Commit Queue Checklist: - -- [ ] Link PR's from all sub-components involved in section below -- [ ] Confirm reviews completed in ALL sub-component PR's -- [ ] Add all appropriate labels to this PR. -- [ ] Run full RT suite on either Hera/Cheyenne AND attach log to a PR comment. -- [ ] Add list of any failed regression tests to "Anticipated changes to regression tests" section. +* Closes # +* None -## Linked PR's and Issues: +### Sub component Pull Requests: +* AQM: +* CDEPS: +* CICE: +* CMEPS: +* CMakeModules: +* FV3: + * ccpp-physics: + * atmos_cubed_sphere: +* GOCART: +* HYCOM: +* MOM6: +* NOAHMP: +* WW3: +* stochastic_physics: +* None -Please link the related issues to be closed with this PR, whether in this repository, or in another repository. -EXAMPLE: "- Closes NOAA-EMC/fv3atm/issues/" +### UFSWM Blocking Dependencies: + +* Blocked by # +* None -PLEASE MAKE SURE TO USE THE - with a space before the "Depends on" or "Closes" as they show up well on github. +--- +## Changes +### Regression Test Changes (Please commit test_changes.list): + +* PR Adds New Tests/Baselines. +* PR Updates/Changes Baselines. +* No Baseline Changes. -## Testing Day Checklist: +### Input data Changes: -- [ ] This PR is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR. -- [ ] Move new/updated input data on RDHPCS Hera and propagate input data changes to all supported systems. +* None. +* New input data. +* Updated input data. + +### Library Changes/Upgrades: + +* Required + * Library names w/versions: + * Git Stack Issue (JCSDA/spack-stack#) +* No Updates + +--- + +## Testing Log: - RDHPCS - [ ] Hera - [ ] Orion + - [ ] Hercules - [ ] Jet - [ ] Gaea - - [ ] Cheyenne + - [ ] Derecho - WCOSS2 - [ ] Dogwood/Cactus - [ ] Acorn -- CI - - [ ] Completed -- opnReqTest - - [ ] N/A - - [ ] Log attached to comment +- [ ] CI +- [ ] opnReqTest (complete task if unnecessary) \ No newline at end of file diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index 11f4172c18..49449097a3 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -1,9 +1,12 @@ -name: Helpers +name: Repo Check on: - workflow_run: - workflows: ["Pull Request Tests"] - types: - - requested + #workflow_run: + # workflows: ["Pull Request Tests"] + # types: + # - requested + pull_request: + branches: + - develop env: app: Accept:application/vnd.github.v3+json base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs @@ -30,8 +33,11 @@ jobs: steps: - name: Check up-to-dateness and post comment run: | - head_sha=${{ github.event.workflow_run.head_sha }} - git clone -q ${{ github.event.workflow_run.head_repository.html_url }} . + trap 'echo "exit-code=$?" >> "$GITHUB_OUTPUT"' EXIT + head_sha=${{ github.event.pull_request.head.sha }} + head_brc=${{ github.event.pull_request.head.ref }} + head_url=${{ github.event.pull_request.head.repo.html_url }} + git clone -q -b $head_brc $head_url . git checkout -q $head_sha git submodule -q update --init --recursive cd ${{ github.workspace }}/tests/ci @@ -39,15 +45,16 @@ jobs: pr_number=$(curl -sS -H $app $url/pulls \ | jq -r '.[] | select(.head.sha == "'"$head_sha"'") | .number') echo "pr_number is $pr_number" - pr_uid=${{ github.event.workflow_run.head_repository.owner.login }} + pr_uid=${{ github.event.pull_request.head.repo.owner.login }} echo "pr_uid is $pr_uid" - comment="$(./repo_check.sh $pr_uid 2>/dev/null)" - echo "comment is $comment" - if [[ -n $comment ]]; then - curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' - echo -n "failure" >~/repocheck_file - else - echo -n "success" >~/repocheck_file - fi + ./repo_check.sh + #comment="$(./repo_check.sh 2>/dev/null)" + #echo "comment is $comment" + #if [[ -n $comment ]]; then + # curl -sS -X POST -H $app -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ + # $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' + # echo -n "failure" >~/repocheck_file + #else + # echo -n "success" >~/repocheck_file + #fi diff --git a/.github/workflows/superlinter.yml b/.github/workflows/superlinter.yml new file mode 100644 index 0000000000..4b1ffea8d2 --- /dev/null +++ b/.github/workflows/superlinter.yml @@ -0,0 +1,37 @@ +--- +name: Super-Linter + +on: + push: null + pull_request: null + +jobs: + build: + name: Lint + runs-on: ubuntu-latest + + permissions: + contents: read + packages: read + statuses: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Super-Linter + uses: super-linter/super-linter@v6.3.0 + env: + LINTER_RULES_PATH: / + DEFAULT_BRANCH: origin/develop + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + FILTER_REGEX_EXCLUDE: .*(tests/fv3_conf/.*|tests/ci/.*|tests/auto/.*|tests/auto-jenkins/.*|tests/opnReqTests/.*|tests/opnReqTest|tests/atparse.bash).* + VALIDATE_BASH: true + BASH_SEVERITY: style + #VALIDATE_GITHUB_ACTIONS: true + #VALIDATE_LUA: true + #VALIDATE_MARKDOWN: true + #VALIDATE_PYTHON_PYLINT: true + #VALIDATE_YAML: true diff --git a/.gitignore b/.gitignore index 0239ee9a5a..bf7d81b1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,8 @@ tests/fv3_conf/compile_qsub.IN tests/fv3_conf/fv3_slurm.IN tests/fv3_conf/fv3_qsub.IN build*.log* +rocoto_workflow* +fail_compile_* +fail_test_* +tests/run_dir +tests/logs/log_* diff --git a/.gitmodules b/.gitmodules index f9c93b8627..fba56dda82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 url = https://github.com/HelinWei-NOAA/fv3atm - branch = nsoil9 + branch = nsoilg [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 09ebb7306d..37ba7c6ff0 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -4,6 +4,10 @@ # Required version: 2 +build: + os: ubuntu-20.04 + tools: + python: "3.9" # Build documentation in the docs/ directory with Sphinx sphinx: @@ -18,6 +22,5 @@ formats: all # Optionally set the version of Python and requirements required to build your docs python: - version: 3.7 install: - requirements: doc/UsersGuide/requirements.txt diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000000..95525eb590 --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,16 @@ +# Global settings for Shellcheck (https://github.com/koalaman/shellcheck) +enable=all + +external-sources=true + +# Disable variable referenced but not assigned +disable=SC2154 + +# Disable following non-constant source +disable=SC1090 + +# Disable non-existent binary +disable=SC1091 + +# Disable -p -m only applies to deepest directory +disable=SC2174 \ No newline at end of file diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 2aa6bfbb62..fbdf6843d6 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb +Subproject commit fbdf6843d6bde852d97f1547591d90136103f669 diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index be502ec8d6..afea540965 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -1,16 +1,20 @@ # CDEPS compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace -ffree-line-length-none") + #Set CPP defintions for the ufs/cdeps_share target library + list(APPEND CDEPS_SHARE_DEFS "CPRGNU") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") endif() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") + #Set CPP defintions for the ufs/cdeps_share target library + list(APPEND CDEPS_SHARE_DEFS "CPRINTEL") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() @@ -23,6 +27,7 @@ add_library(share OBJECT ${cdeps_share_files} ${ufs_cdeps_share_files}) set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) target_include_directories(share PRIVATE $) +target_compile_definitions(share PRIVATE ${CDEPS_SHARE_DEFS}) target_link_libraries(share PRIVATE esmf) # CDEPS/streams diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 2d276f71cb..bec4d6c235 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -12,14 +12,18 @@ list(APPEND cdeps_share_files CDEPS/share/shr_assert.h CDEPS/share/shr_cal_mod.F90 CDEPS/share/shr_const_mod.F90 + CDEPS/share/shr_file_mod.F90 CDEPS/share/shr_kind_mod.F90 CDEPS/share/shr_log_mod.F90 + CDEPS/share/shr_nl_mod.F90 CDEPS/share/shr_orb_mod.F90 CDEPS/share/shr_precip_mod.F90 CDEPS/share/shr_strconvert_mod.F90 CDEPS/share/shr_string_mod.F90 CDEPS/share/shr_sys_mod.F90 CDEPS/share/shr_timer_mod.F90 + CDEPS/share/shr_file_mod.F90 + CDEPS/share/shr_nl_mod.F90 ) list(APPEND cdeps_streams_files @@ -46,11 +50,13 @@ list(APPEND cdeps_datm_files CDEPS/datm/datm_datamode_gfs_mod.F90 CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 + CDEPS/datm/datm_datamode_simple_mod.F90 ) list(APPEND cdeps_dice_files CDEPS/dice/dice_datamode_ssmi_mod.F90 CDEPS/dice/dice_flux_atmice_mod.F90 + CDEPS/dice/dice_datamode_cplhist_mod.F90 CDEPS/dice/ice_comp_nuopc.F90 ) diff --git a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 index 487ea6470f..3accfb1c1e 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 @@ -11,7 +11,8 @@ module shr_assert_mod r4 => shr_kind_r4, & r8 => shr_kind_r8, & i4 => shr_kind_i4, & - i8 => shr_kind_i8 + i8 => shr_kind_i8, & + CL => shr_kind_CL use shr_sys_mod, only: & shr_sys_abort @@ -35,7 +36,6 @@ module shr_assert_mod ! Assert that a numerical value satisfies certain constraints. public :: shr_assert_in_domain -# 33 "shr_assert_mod.F90.in" interface shr_assert_all module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -54,7 +54,6 @@ module shr_assert_mod module procedure shr_assert_all_7d end interface -# 39 "shr_assert_mod.F90.in" interface shr_assert_any module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -73,7 +72,6 @@ module shr_assert_mod module procedure shr_assert_any_7d end interface -# 45 "shr_assert_mod.F90.in" interface shr_assert_in_domain ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -175,7 +173,6 @@ module shr_assert_mod ! Private utilities. -# 53 "shr_assert_mod.F90.in" interface print_bad_loc ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -275,7 +272,6 @@ module shr_assert_mod module procedure print_bad_loc_7d_long end interface -# 59 "shr_assert_mod.F90.in" interface find_first_loc ! DIMS 0,1,2,3,4,5,6,7 module procedure find_first_loc_0d @@ -295,7 +291,6 @@ module shr_assert_mod module procedure find_first_loc_7d end interface -# 64 "shr_assert_mod.F90.in" interface within_tolerance ! TYPE double,real,int,long module procedure within_tolerance_double @@ -307,10 +302,8 @@ module shr_assert_mod module procedure within_tolerance_long end interface -# 69 "shr_assert_mod.F90.in" contains -# 71 "shr_assert_mod.F90.in" subroutine shr_assert(var, msg, file, line) ! Logical being asserted @@ -322,8 +315,8 @@ subroutine shr_assert(var, msg, file, line) character(len=*), intent(in), optional :: file integer , intent(in), optional :: line - character(len=:), allocatable :: full_msg - + character(len=CL) :: full_msg + full_msg = '' if (.not. var) then full_msg = 'ERROR' @@ -339,11 +332,9 @@ subroutine shr_assert(var, msg, file, line) call shr_sys_abort(full_msg) end if -# 99 "shr_assert_mod.F90.in" end subroutine shr_assert ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_1d(var, msg, file, line) ! Logical being asserted @@ -357,10 +348,8 @@ subroutine shr_assert_all_1d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_1d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_2d(var, msg, file, line) ! Logical being asserted @@ -374,10 +363,8 @@ subroutine shr_assert_all_2d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_2d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_3d(var, msg, file, line) ! Logical being asserted @@ -391,10 +378,8 @@ subroutine shr_assert_all_3d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_3d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_4d(var, msg, file, line) ! Logical being asserted @@ -408,10 +393,8 @@ subroutine shr_assert_all_4d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_4d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_5d(var, msg, file, line) ! Logical being asserted @@ -425,10 +408,8 @@ subroutine shr_assert_all_5d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_5d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_6d(var, msg, file, line) ! Logical being asserted @@ -442,10 +423,8 @@ subroutine shr_assert_all_6d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_6d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" subroutine shr_assert_all_7d(var, msg, file, line) ! Logical being asserted @@ -459,11 +438,9 @@ subroutine shr_assert_all_7d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" end subroutine shr_assert_all_7d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_1d(var, msg, file, line) ! Logical being asserted @@ -477,10 +454,8 @@ subroutine shr_assert_any_1d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_1d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_2d(var, msg, file, line) ! Logical being asserted @@ -494,10 +469,8 @@ subroutine shr_assert_any_2d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_2d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_3d(var, msg, file, line) ! Logical being asserted @@ -511,10 +484,8 @@ subroutine shr_assert_any_3d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_3d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_4d(var, msg, file, line) ! Logical being asserted @@ -528,10 +499,8 @@ subroutine shr_assert_any_4d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_4d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_5d(var, msg, file, line) ! Logical being asserted @@ -545,10 +514,8 @@ subroutine shr_assert_any_5d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_5d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_6d(var, msg, file, line) ! Logical being asserted @@ -562,10 +529,8 @@ subroutine shr_assert_any_6d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_6d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" subroutine shr_assert_any_7d(var, msg, file, line) ! Logical being asserted @@ -579,7 +544,6 @@ subroutine shr_assert_any_7d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" end subroutine shr_assert_any_7d !-------------------------------------------------------------------------- @@ -587,7 +551,6 @@ end subroutine shr_assert_any_7d ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -783,11 +746,9 @@ subroutine shr_assert_in_domain_0d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -983,11 +944,9 @@ subroutine shr_assert_in_domain_1d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1183,11 +1142,9 @@ subroutine shr_assert_in_domain_2d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1383,11 +1340,9 @@ subroutine shr_assert_in_domain_3d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1583,11 +1538,9 @@ subroutine shr_assert_in_domain_4d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1783,11 +1736,9 @@ subroutine shr_assert_in_domain_5d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1983,11 +1934,9 @@ subroutine shr_assert_in_domain_6d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2183,11 +2132,9 @@ subroutine shr_assert_in_domain_7d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2383,11 +2330,9 @@ subroutine shr_assert_in_domain_0d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2583,11 +2528,9 @@ subroutine shr_assert_in_domain_1d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2783,11 +2726,9 @@ subroutine shr_assert_in_domain_2d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2983,11 +2924,9 @@ subroutine shr_assert_in_domain_3d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3183,11 +3122,9 @@ subroutine shr_assert_in_domain_4d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3383,11 +3320,9 @@ subroutine shr_assert_in_domain_5d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3583,11 +3518,9 @@ subroutine shr_assert_in_domain_6d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3783,11 +3716,9 @@ subroutine shr_assert_in_domain_7d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3983,11 +3914,9 @@ subroutine shr_assert_in_domain_0d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4183,11 +4112,9 @@ subroutine shr_assert_in_domain_1d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4383,11 +4310,9 @@ subroutine shr_assert_in_domain_2d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4583,11 +4508,9 @@ subroutine shr_assert_in_domain_3d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4783,11 +4706,9 @@ subroutine shr_assert_in_domain_4d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4983,11 +4904,9 @@ subroutine shr_assert_in_domain_5d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5183,11 +5102,9 @@ subroutine shr_assert_in_domain_6d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5383,11 +5300,9 @@ subroutine shr_assert_in_domain_7d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5583,11 +5498,9 @@ subroutine shr_assert_in_domain_0d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5783,11 +5696,9 @@ subroutine shr_assert_in_domain_1d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5983,11 +5894,9 @@ subroutine shr_assert_in_domain_2d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6183,11 +6092,9 @@ subroutine shr_assert_in_domain_3d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6383,11 +6290,9 @@ subroutine shr_assert_in_domain_4d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6583,11 +6488,9 @@ subroutine shr_assert_in_domain_5d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6783,11 +6686,9 @@ subroutine shr_assert_in_domain_6d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6983,7 +6884,6 @@ subroutine shr_assert_in_domain_7d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_long !-------------------------------------------------------------------------- @@ -6991,7 +6891,6 @@ end subroutine shr_assert_in_domain_7d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7022,11 +6921,9 @@ subroutine print_bad_loc_0d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7057,11 +6954,9 @@ subroutine print_bad_loc_1d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7093,11 +6988,9 @@ subroutine print_bad_loc_2d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7130,11 +7023,9 @@ subroutine print_bad_loc_3d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7168,11 +7059,9 @@ subroutine print_bad_loc_4d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7207,11 +7096,9 @@ subroutine print_bad_loc_5d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7247,11 +7134,9 @@ subroutine print_bad_loc_6d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7288,11 +7173,9 @@ subroutine print_bad_loc_7d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7323,11 +7206,9 @@ subroutine print_bad_loc_0d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7358,11 +7239,9 @@ subroutine print_bad_loc_1d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7394,11 +7273,9 @@ subroutine print_bad_loc_2d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7431,11 +7308,9 @@ subroutine print_bad_loc_3d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7469,11 +7344,9 @@ subroutine print_bad_loc_4d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7508,11 +7381,9 @@ subroutine print_bad_loc_5d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7548,11 +7419,9 @@ subroutine print_bad_loc_6d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7589,11 +7458,9 @@ subroutine print_bad_loc_7d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7624,11 +7491,9 @@ subroutine print_bad_loc_0d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7659,11 +7524,9 @@ subroutine print_bad_loc_1d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7695,11 +7558,9 @@ subroutine print_bad_loc_2d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7732,11 +7593,9 @@ subroutine print_bad_loc_3d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7770,11 +7629,9 @@ subroutine print_bad_loc_4d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7809,11 +7666,9 @@ subroutine print_bad_loc_5d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7849,11 +7704,9 @@ subroutine print_bad_loc_6d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7890,11 +7743,9 @@ subroutine print_bad_loc_7d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7925,11 +7776,9 @@ subroutine print_bad_loc_0d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7960,11 +7809,9 @@ subroutine print_bad_loc_1d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7996,11 +7843,9 @@ subroutine print_bad_loc_2d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8033,11 +7878,9 @@ subroutine print_bad_loc_3d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8071,11 +7914,9 @@ subroutine print_bad_loc_4d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8110,11 +7951,9 @@ subroutine print_bad_loc_5d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8150,11 +7989,9 @@ subroutine print_bad_loc_6d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8191,14 +8028,12 @@ subroutine print_bad_loc_7d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_long !-------------------------------------------------------------------------- !-------------------------------------------------------------------------- ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_0d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8227,10 +8062,8 @@ pure function find_first_loc_0d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_0d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_1d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8259,10 +8092,8 @@ pure function find_first_loc_1d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_1d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_2d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8292,10 +8123,8 @@ pure function find_first_loc_2d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_2d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_3d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8326,10 +8155,8 @@ pure function find_first_loc_3d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_3d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_4d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8361,10 +8188,8 @@ pure function find_first_loc_4d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_4d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_5d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8397,10 +8222,8 @@ pure function find_first_loc_5d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_5d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_6d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8434,10 +8257,8 @@ pure function find_first_loc_6d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_6d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" pure function find_first_loc_7d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8472,11 +8293,9 @@ pure function find_first_loc_7d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" end function find_first_loc_7d ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" elemental function within_tolerance_double(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8504,10 +8323,8 @@ elemental function within_tolerance_double(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" end function within_tolerance_double ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" elemental function within_tolerance_real(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8535,10 +8352,8 @@ elemental function within_tolerance_real(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" end function within_tolerance_real ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" elemental function within_tolerance_int(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8566,10 +8381,8 @@ elemental function within_tolerance_int(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" end function within_tolerance_int ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" elemental function within_tolerance_long(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8597,7 +8410,6 @@ elemental function within_tolerance_long(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" end function within_tolerance_long end module shr_assert_mod diff --git a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 index d925c9301b..dd043839e0 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 @@ -19,7 +19,6 @@ module shr_frz_mod !---------------------------------------------------------------------------- public :: shr_frz_freezetemp, shr_frz_freezetemp_init -# 18 "shr_frz_mod.F90.in" interface shr_frz_freezetemp module procedure shr_frz_freezetemp_0d module procedure shr_frz_freezetemp_1d @@ -36,18 +35,16 @@ module shr_frz_mod integer :: tfrz_option = TFREEZE_OPTION_UNINITIALIZED !=============================================================================== -# 34 "shr_frz_mod.F90.in" contains !=============================================================================== -# 37 "shr_frz_mod.F90.in" - subroutine shr_frz_freezetemp_init(tfreeze_option, mastertask) + subroutine shr_frz_freezetemp_init(tfreeze_option, maintask) implicit none character(len=*),parameter :: subname = "(shr_frz_freezetemp_init) " character(CS),intent(in) :: tfreeze_option ! option for computing freezing point - logical, intent(in) :: mastertask ! for io + logical, intent(in) :: maintask ! for io ! minus1p8 is constant -1.8C ! linear_salt is linear equation ! mushy for CICE mushy-layer nonlinear equation @@ -56,23 +53,21 @@ subroutine shr_frz_freezetemp_init(tfreeze_option, mastertask) ! Check tfreeze_option !--------------------------------------------------------------- if (trim(tfreeze_option) == 'minus1p8') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is minus1p8' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is minus1p8' tfrz_option = TFREEZE_OPTION_MINUS1P8 elseif (trim(tfreeze_option) == 'linear_salt') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is linear_salt' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is linear_salt' tfrz_option = TFREEZE_OPTION_LINEAR_SALT elseif (trim(tfreeze_option) == 'mushy') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is mushy' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is mushy' tfrz_option = TFREEZE_OPTION_MUSHY else call shr_sys_abort(subname//' ERROR: not a valid tfreeze_option '//trim(tfreeze_option)) endif -# 64 "shr_frz_mod.F90.in" end subroutine shr_frz_freezetemp_init ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_0d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -115,10 +110,8 @@ function shr_frz_freezetemp_0d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_0d ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_1d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -161,10 +154,8 @@ function shr_frz_freezetemp_1d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_1d ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_2d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -207,7 +198,6 @@ function shr_frz_freezetemp_2d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_2d !=============================================================================== diff --git a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 index 19f1ac824d..7a818485c7 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 @@ -3,7 +3,6 @@ ! DO NOT EDIT THIS FILE, it was generated using genf90.pl ! Any changes you make to this file may be lost !=================================================== -#define CPRINTEL 1 ! Flag representing compiler support of Fortran 2003's ! ieee_arithmetic intrinsic module. #if defined CPRIBM || defined CPRPGI || defined CPRINTEL || defined CPRCRAY || defined CPRNAG @@ -72,7 +71,6 @@ module shr_infnan_mod ! Locally defined isnan. #ifndef HAVE_IEEE_ARITHMETIC -# 70 "shr_infnan_mod.F90.in" interface shr_infnan_isnan ! TYPE double,real module procedure shr_infnan_isnan_double @@ -81,7 +79,6 @@ module shr_infnan_mod end interface #endif -# 76 "shr_infnan_mod.F90.in" interface shr_infnan_isinf ! TYPE double,real module procedure shr_infnan_isinf_double @@ -89,7 +86,6 @@ module shr_infnan_mod module procedure shr_infnan_isinf_real end interface -# 81 "shr_infnan_mod.F90.in" interface shr_infnan_isposinf ! TYPE double,real module procedure shr_infnan_isposinf_double @@ -97,7 +93,6 @@ module shr_infnan_mod module procedure shr_infnan_isposinf_real end interface -# 86 "shr_infnan_mod.F90.in" interface shr_infnan_isneginf ! TYPE double,real module procedure shr_infnan_isneginf_double @@ -125,7 +120,6 @@ module shr_infnan_mod end type shr_infnan_inf_type ! Allow assigning reals to NaN or Inf. -# 111 "shr_infnan_mod.F90.in" interface assignment(=) ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 @@ -226,13 +220,11 @@ module shr_infnan_mod end interface ! Conversion functions. -# 121 "shr_infnan_mod.F90.in" interface shr_infnan_to_r8 module procedure nan_r8 module procedure inf_r8 end interface -# 126 "shr_infnan_mod.F90.in" interface shr_infnan_to_r4 module procedure nan_r4 module procedure inf_r4 @@ -273,7 +265,6 @@ module shr_infnan_mod integer(i8), parameter :: dneginf_pat = ibset(dposinf_pat,bit_size(1_i8)-1) #endif -# 166 "shr_infnan_mod.F90.in" contains !--------------------------------------------------------------------- @@ -283,24 +274,20 @@ module shr_infnan_mod !--------------------------------------------------------------------- ! TYPE double,real -# 175 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_double(x) result(isinf) real(r8), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 181 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_double ! TYPE double,real -# 175 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_real(x) result(isinf) real(r4), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 181 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_real #ifdef HAVE_IEEE_ARITHMETIC @@ -312,7 +299,6 @@ end function shr_infnan_isinf_real !--------------------------------------------------------------------- ! TYPE double,real -# 192 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -323,10 +309,8 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 202 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 192 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -337,11 +321,9 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 202 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 205 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -352,10 +334,8 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 215 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 205 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -366,7 +346,6 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 215 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real #else @@ -375,24 +354,20 @@ end function shr_infnan_isneginf_real #ifdef CPRGNU ! NaN testing on gfortran. ! TYPE double,real -# 223 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_double(x) result(is_nan) real(r8), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 229 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_double ! TYPE double,real -# 223 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_real(x) result(is_nan) real(r4), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 229 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_real ! End GNU section. #endif @@ -403,7 +378,6 @@ end function shr_infnan_isnan_real !--------------------------------------------------------------------- ! TYPE double,real -# 239 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) real(r8), intent(in) :: x logical :: isposinf @@ -415,10 +389,8 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 250 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 239 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) real(r4), intent(in) :: x logical :: isposinf @@ -430,11 +402,9 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 250 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 253 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) real(r8), intent(in) :: x logical :: isneginf @@ -446,10 +416,8 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 264 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 253 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) real(r4), intent(in) :: x logical :: isneginf @@ -461,7 +429,6 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 264 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real ! End ieee_arithmetic conditional. @@ -485,7 +452,6 @@ end function shr_infnan_isneginf_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -524,11 +490,9 @@ pure subroutine set_nan_0d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -567,11 +531,9 @@ pure subroutine set_nan_1d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -610,11 +572,9 @@ pure subroutine set_nan_2d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -653,11 +613,9 @@ pure subroutine set_nan_3d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -696,11 +654,9 @@ pure subroutine set_nan_4d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -739,11 +695,9 @@ pure subroutine set_nan_5d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -782,11 +736,9 @@ pure subroutine set_nan_6d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -825,11 +777,9 @@ pure subroutine set_nan_7d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -868,11 +818,9 @@ pure subroutine set_nan_0d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -911,11 +859,9 @@ pure subroutine set_nan_1d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -954,11 +900,9 @@ pure subroutine set_nan_2d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -997,11 +941,9 @@ pure subroutine set_nan_3d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1040,11 +982,9 @@ pure subroutine set_nan_4d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1083,11 +1023,9 @@ pure subroutine set_nan_5d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1126,11 +1064,9 @@ pure subroutine set_nan_6d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1169,12 +1105,10 @@ pure subroutine set_nan_7d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1213,11 +1147,9 @@ pure subroutine set_inf_0d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1256,11 +1188,9 @@ pure subroutine set_inf_1d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1299,11 +1229,9 @@ pure subroutine set_inf_2d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1342,11 +1270,9 @@ pure subroutine set_inf_3d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1385,11 +1311,9 @@ pure subroutine set_inf_4d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1428,11 +1352,9 @@ pure subroutine set_inf_5d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1471,11 +1393,9 @@ pure subroutine set_inf_6d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1514,11 +1434,9 @@ pure subroutine set_inf_7d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1557,11 +1475,9 @@ pure subroutine set_inf_0d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1600,11 +1516,9 @@ pure subroutine set_inf_1d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1643,11 +1557,9 @@ pure subroutine set_inf_2d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1686,11 +1598,9 @@ pure subroutine set_inf_3d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1729,11 +1639,9 @@ pure subroutine set_inf_4d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1772,11 +1680,9 @@ pure subroutine set_inf_5d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1815,11 +1721,9 @@ pure subroutine set_inf_6d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1858,7 +1762,6 @@ pure subroutine set_inf_7d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_real !--------------------------------------------------------------------- @@ -1867,44 +1770,36 @@ end subroutine set_inf_7d_real ! Function methods to get reals from nan/inf types. !--------------------------------------------------------------------- -# 375 "shr_infnan_mod.F90.in" pure function nan_r8(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r8) :: output output = nan -# 381 "shr_infnan_mod.F90.in" end function nan_r8 -# 383 "shr_infnan_mod.F90.in" pure function nan_r4(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r4) :: output output = nan -# 389 "shr_infnan_mod.F90.in" end function nan_r4 -# 391 "shr_infnan_mod.F90.in" pure function inf_r8(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r8) :: output output = inf -# 397 "shr_infnan_mod.F90.in" end function inf_r8 -# 399 "shr_infnan_mod.F90.in" pure function inf_r4(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r4) :: output output = inf -# 405 "shr_infnan_mod.F90.in" end function inf_r4 end module shr_infnan_mod diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 5840cd1931..9452de8c3c 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c +Subproject commit 9452de8c3cb43fb2628f0722e6a51f79429d2160 diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index b841ac0e10..c04165ab09 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -1,12 +1,15 @@ ### CICE Fortran compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -ffree-line-length-none ") + if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") + endif() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "" ) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") @@ -17,20 +20,17 @@ endif() ### CICE C compiler flags if(CMAKE_C_COMPILER_ID MATCHES "GNU") - set(CMAKE_C_FLAGS "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") set(CMAKE_C_FLAGS_RELEASE "-O3") set(CMAKE_C_FLAGS_DEBUG "-O0") set(CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") - set( CMAKE_C_FLAGS "-g -traceback") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set( CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") - set(CMAKE_C_FLAGS "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") set( CMAKE_C_FLAGS_RELEASE "-O3" ) set( CMAKE_C_FLAGS_DEBUG "-O0" ) set( CMAKE_C_LINK_FLAGS "" ) @@ -39,7 +39,7 @@ else() endif() # Configuration Options -set(CICE_IO "NetCDF" CACHE STRING "CICE OPTIONS: Choose IO options.") +set(CICE_IO "PIO" CACHE STRING "CICE OPTIONS: Choose IO options.") set_property(CACHE CICE_IO PROPERTY STRINGS "NetCDF" "PIO" "Binary") # Too many files to list, so include them via this file @@ -51,7 +51,8 @@ list(APPEND lib_src_files ${cice_shared_files_c} ${icepack_files} ${cice_mpi_comm_files} - ${cice_nuopc_cmeps_driver_files}) + ${cice_nuopc_cmeps_driver_files} + ${cice_cdeps_inline_files}) list(APPEND _cice_defs FORTRANUNDERSCORE coupled) @@ -84,6 +85,11 @@ if(OpenMP_Fortran_FOUND) target_link_libraries(cice PRIVATE OpenMP::OpenMP_Fortran) endif() +# ice prescribed +add_dependencies(cice cdeps::cdeps) +target_compile_definitions(cice PUBLIC "DISABLE_FoX") +target_link_libraries(cice PUBLIC cdeps::cdeps) + ############################################################################### ### Install ############################################################################### diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 4b0b2f7421..2a62c72e30 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -27,7 +27,8 @@ list(APPEND cice_shared_files #Dynamics List: CICE/cicecore/cicedyn/dynamics/ice_dyn_eap.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_evp.F90 - CICE/cicecore/cicedyn/dynamics/ice_dyn_evp_1d.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_evp1d.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_core1d.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_shared.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_vp.F90 CICE/cicecore/cicedyn/dynamics/ice_transport_driver.F90 @@ -75,6 +76,7 @@ list(APPEND icepack_files CICE/icepack/columnphysics/icepack_orbital.F90 CICE/icepack/columnphysics/icepack_parameters.F90 CICE/icepack/columnphysics/icepack_shortwave.F90 + CICE/icepack/columnphysics/icepack_shortwave_data.F90 CICE/icepack/columnphysics/icepack_snow.F90 CICE/icepack/columnphysics/icepack_therm_bl99.F90 CICE/icepack/columnphysics/icepack_therm_itd.F90 @@ -86,7 +88,6 @@ list(APPEND icepack_files CICE/icepack/columnphysics/icepack_wavefracspec.F90 CICE/icepack/columnphysics/icepack_zbgc.F90 CICE/icepack/columnphysics/icepack_zbgc_shared.F90 - CICE/icepack/columnphysics/icepack_zsalinity.F90 ) list(APPEND cice_shared_files_c @@ -149,3 +150,22 @@ list(APPEND cice_nuopc_cmeps_driver_files CICE/cicecore/drivers/nuopc/cmeps/ice_shr_methods.F90 CICE/cicecore/drivers/nuopc/cmeps/ice_mesh_mod.F90 ) + +#-- Using ice prescribed ifndef cesmcoupled +list(APPEND cice_cdeps_inline_files + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_orb_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_const_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_abort_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_strconvert_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_log_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_sys_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_kind_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_nl_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_cal_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_string_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_timer_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_strdata_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_stream_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_methods_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/dshr/dshr_mod.F90 +) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 9923d6d177..f13e16e414 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 9923d6d17700daf502d9a016138bf8eb8aad7f09 +Subproject commit f13e16e414e115e268b2dd300b665e628e5f2429 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index f53d327bed..efbd585acc 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -3,20 +3,23 @@ ############################################################################### if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace -ffree-line-length-none") + #Set CPP defintions for the ufs/cdeps_share source component of the cmeps target library + list(APPEND CDEPS_SHARE_DEFS "CPRGNU") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") endif() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS}") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "") + #Set CPP defintions for the ufs/cdeps_share source component of the cmeps target library + list(APPEND CDEPS_SHARE_DEFS "CPRINTEL") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() @@ -25,12 +28,14 @@ endif() ### Source files ############################################################################### -list(APPEND _nems_util_files +list(APPEND _ufs_util_files CMEPS/ufs/flux_atmocn_mod.F90 CMEPS/ufs/glc_elevclass_mod.F90 CMEPS/ufs/ufs_kind_mod.F90 CMEPS/ufs/perf_mod.F90 CMEPS/ufs/ufs_const_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_orb_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_const_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_abort_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_strconvert_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_log_mod.F90 @@ -54,7 +59,7 @@ list(APPEND _mediator_files CMEPS/mediator/med_merge_mod.F90 CMEPS/mediator/med_constants_mod.F90 CMEPS/mediator/med_kind_mod.F90 - CMEPS/mediator/esmFldsExchange_nems_mod.F90 + CMEPS/mediator/esmFldsExchange_ufs_mod.F90 CMEPS/mediator/med_phases_prep_lnd_mod.F90 CMEPS/mediator/med_phases_prep_atm_mod.F90 CMEPS/mediator/med_phases_prep_ocn_mod.F90 @@ -76,6 +81,11 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_rof_mod.F90 CMEPS/mediator/med_phases_post_wav_mod.F90) +if(CDEPS_INLINE) + list(APPEND _mediator_files CMEPS/mediator/med_phases_cdeps_mod.F90) + add_definitions(-DCDEPS_INLINE) +endif() + ############################################################################### ### Host model for CCPP ############################################################################### @@ -128,7 +138,7 @@ if(CMEPS_AOFLUX) endif(return_code EQUAL 0) ### Add extra driver file to the source - list(APPEND _nems_util_files + list(APPEND _ufs_util_files CMEPS/ufs/ccpp/driver/med_ccpp_driver.F90 CMEPS/ufs/flux_atmocn_ccpp_mod.F90 CMEPS/ufs/ufs_io_mod.F90) @@ -166,19 +176,25 @@ endif() ############################################################################### ### Create target library -add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files} ${SCHEMES} ${CAPS} ${API}) +add_library(cmeps STATIC ${_ufs_util_files} ${_mediator_files} ${SCHEMES} ${CAPS} ${API}) ### Set PUBLIC interfaces on the library set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(cmeps PUBLIC $ $) -target_link_libraries(cmeps PUBLIC fms - esmf +target_compile_definitions(cmeps PRIVATE ${CDEPS_SHARE_DEFS}) +target_link_libraries(cmeps PUBLIC esmf PIO::PIO_Fortran) if(OpenMP_Fortran_FOUND) target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) endif() +### Set dependency for CDEPS if inline capability is requested +if(CDEPS_INLINE) + add_dependencies(cmeps cdeps::cdeps) + target_link_libraries(cmeps PUBLIC cdeps::cdeps) +endif() + ############################################################################### ### Install ############################################################################### diff --git a/CMakeLists.txt b/CMakeLists.txt index d2059d710e..e5fdd1e83a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL ATM_DS2S ATM_DS2S-PCICE HAFS HAFSW HAFS-MOM6 HAFS-MOM6W HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -66,11 +66,14 @@ set(DISABLE_FMA OFF CACHE BOOL "Disable Fused Multiply-Add instructions (wor set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") +set(REGIONAL_MOM6 OFF CACHE BOOL "Enable Regional MOM6") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB") +set(CDEPS_INLINE OFF CACHE BOOL "Enable CDEPS inline capability") +set(HYDRO OFF CACHE BOOL "Enable hydrostatic set") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -114,10 +117,13 @@ message("DEBUG ............ ${DEBUG}") message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("MOVING_NEST ...... ${MOVING_NEST}") +message("REGIONAL_MOM6..... ${REGIONAL_MOM6}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") +message("CDEPS_INLINE ..... ${CDEPS_INLINE}") +message("HYDRO ........... ${HYDRO}") message("") @@ -146,10 +152,10 @@ if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|NG-GODAS)$") + elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|ATM_DS2S|ATM_DS2S-PCICE|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|LND|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -323,6 +329,7 @@ if(CDEPS) add_dependencies(ufs cdeps::cdeps) list(APPEND _ufs_defs_private FRONT_CDEPS_DATM=cdeps_datm_comp) list(APPEND _ufs_defs_private FRONT_CDEPS_DOCN=cdeps_docn_comp) + list(APPEND _ufs_defs_private FRONT_CDEPS_DICE=cdeps_dice_comp) target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() diff --git a/FV3 b/FV3 index 00e47b8d24..9133d6f17f 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 00e47b8d24123dde735d5fe190fc770f6e80df7f +Subproject commit 9133d6f17f29d95778ed3ccd32e20816810d967b diff --git a/GOCART b/GOCART index b94145fca4..041422934c 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit b94145fca46169bbc53ec6b8d4ed849715dc5130 +Subproject commit 041422934cae1570f2f0e67239d5d89f11c6e1b7 diff --git a/HYCOM-interface/HYCOM b/HYCOM-interface/HYCOM index 24437531dc..bcf7777bb0 160000 --- a/HYCOM-interface/HYCOM +++ b/HYCOM-interface/HYCOM @@ -1 +1 @@ -Subproject commit 24437531dcf8580aadaf6ebeb9de544ccfc674f9 +Subproject commit bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 diff --git a/LICENSE.md b/LICENSE.md index ba11b8537c..a3a10c4366 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -10,19 +10,32 @@ This project includes a mix of the following: This project utilizes the following unmodified works under various licenses, as shown below. -- Atmos cube sphere dycore: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [atmos_cubed_sphere dycore](https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FV3 Atm: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [fv3atm](https://github.com/NOAA-EMC/fv3atm): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- NEMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [Stochastic Physics](https://github.com/NOAA-PSL/stochastic_physics): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Physics](https://github.com/ufs-community/ccpp-physics): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- Stochastic Physics: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Framework](https://github.com/NCAR/ccpp-framework): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- CCPP Physics: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) +- [AQM](https://github.com/NOAA-EMC/AQM): GNU General Public License 3.0 ([GPL](https://www.gnu.org/licenses/gpl-3.0.en.html)) + +- [CICE](https://github.com/NOAA-EMC/CICE): CICE Consortium license ([LICENSE.pdf](https://github.com/NOAA-EMC/CICE/blob/emc/develop/LICENSE.pdf)) + +- [CMakeModules](https://github.com/NOAA-EMC/CMakeModules): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [GOCART](https://github.com/GEOS-ESM/GOCART): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) + +- [HYCOM](https://github.com/NOAA-EMC/HYCOM-src): [MIT License](https://opensource.org/license/mit/) + +- [MOM6](https://github.com/NOAA-EMC/MOM6): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [WW3](https://github.com/NOAA-EMC/WW3): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [Unified Post Processor](https://github.com/NOAA-EMC/UPP): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- CCPP Framework: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) ## The rest of this project is in the worldwide public domain diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 67f4d875c7..f3cf811ec2 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -1,13 +1,13 @@ ### MOM6 Fortran compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -Waliasing -fcray-pointer -fconvert=big-endian -ffree-line-length-none -fno-range-check -fbacktrace") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") @@ -28,8 +28,14 @@ include("mom6_files.cmake") add_library(mom6_obj OBJECT ${mom6_src_files}) set_target_properties(mom6_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_obj PRIVATE $) -target_include_directories(mom6_obj PRIVATE $ - $) + +if(REGIONAL_MOM6) + target_include_directories(mom6_obj PRIVATE $ + $) +else() + target_include_directories(mom6_obj PRIVATE $ + $) +endif() target_link_libraries(mom6_obj PRIVATE fms esmf stochastic_physics @@ -42,8 +48,13 @@ target_link_libraries(mom6_obj PRIVATE fms add_library(mom6_nuopc_obj OBJECT ${mom6_nuopc_src_files}) set_target_properties(mom6_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_nuopc_obj PRIVATE $) -target_include_directories(mom6_nuopc_obj PRIVATE $ - $) +if(REGIONAL_MOM6) + target_include_directories(mom6_nuopc_obj PRIVATE $ + $) +else() + target_include_directories(mom6_nuopc_obj PRIVATE $ + $) +endif() target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj fms stochastic_physics diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index fdbfa25236..b32aea7bf3 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit fdbfa2523650b81a0771f3fb1791ea3e3dce66db +Subproject commit b32aea7bf3f9e2a774afa23d3386c88156cd1182 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 04adba4c30..fbe95fdce7 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -58,15 +58,19 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_obsolete_params.F90 MOM6/src/diagnostics/MOM_sum_output.F90 MOM6/src/diagnostics/MOM_wave_speed.F90 - MOM6/src/diagnostics/MOM_wave_structure.F90 MOM6/src/equation_of_state/MOM_EOS.F90 - MOM6/src/equation_of_state/MOM_EOS_NEMO.F90 + MOM6/src/equation_of_state/MOM_EOS_Jackett06.F90 + MOM6/src/equation_of_state/MOM_EOS_Roquet_SpV.F90 + MOM6/src/equation_of_state/MOM_EOS_Roquet_rho.F90 MOM6/src/equation_of_state/MOM_EOS_TEOS10.F90 MOM6/src/equation_of_state/MOM_EOS_UNESCO.F90 MOM6/src/equation_of_state/MOM_EOS_Wright.F90 + MOM6/src/equation_of_state/MOM_EOS_Wright_full.F90 + MOM6/src/equation_of_state/MOM_EOS_Wright_red.F90 MOM6/src/equation_of_state/MOM_EOS_linear.F90 MOM6/src/equation_of_state/MOM_TFreeze.F90 + MOM6/src/equation_of_state/MOM_temperature_convert.F90 MOM6/src/equation_of_state/TEOS10/gsw_chem_potential_water_t_exact.f90 MOM6/src/equation_of_state/TEOS10/gsw_ct_freezing_exact.f90 @@ -160,6 +164,8 @@ list(APPEND mom6_src_files MOM6/src/parameterizations/lateral/MOM_spherical_harmonics.F90 MOM6/src/parameterizations/lateral/MOM_thickness_diffuse.F90 MOM6/src/parameterizations/lateral/MOM_tidal_forcing.F90 + MOM6/src/parameterizations/lateral/MOM_Zanna_Bolton.F90 + MOM6/src/parameterizations/lateral/MOM_self_attr_load.F90 MOM6/src/parameterizations/vertical/MOM_ALE_sponge.F90 MOM6/src/parameterizations/vertical/MOM_CVMix_KPP.F90 @@ -204,7 +210,7 @@ list(APPEND mom6_src_files MOM6/src/tracer/MOM_OCMIP2_CFC.F90 MOM6/src/tracer/MOM_generic_tracer.F90 - MOM6/src/tracer/MOM_lateral_boundary_diffusion.F90 + MOM6/src/tracer/MOM_hor_bnd_diffusion.F90 MOM6/src/tracer/MOM_neutral_diffusion.F90 MOM6/src/tracer/nw2_tracers.F90 MOM6/src/tracer/MOM_offline_aux.F90 @@ -300,7 +306,11 @@ list(APPEND mom6_nuopc_src_files MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90 MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90 MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 - MOM6/config_src/drivers/unit_tests/MOM_unit_test_driver.F90 + MOM6/config_src/drivers/unit_tests/test_MOM_file_parser.F90 + MOM6/config_src/drivers/unit_tests/test_MOM_mixedlayer_restrat.F90 + MOM6/config_src/drivers/unit_tests/test_MOM_string_functions.F90 + MOM6/config_src/drivers/unit_tests/test_MOM_EOS.F90 + MOM6/config_src/drivers/timing_tests/time_MOM_EOS.F90 ) list(APPEND mom6_solo_src_files diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt index 4304d831a7..f8b6d99ab1 100644 --- a/NOAHMP-interface/CMakeLists.txt +++ b/NOAHMP-interface/CMakeLists.txt @@ -8,9 +8,10 @@ list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90 noahmp/drivers/nuopc/lnd_comp_domain.F90 noahmp/drivers/nuopc/lnd_comp_import_export.F90 noahmp/drivers/nuopc/lnd_comp_nuopc.F90 - noahmp/drivers/nuopc/lnd_comp_driver.F90) + noahmp/drivers/nuopc/lnd_comp_driver.F90 + noahmp/drivers/nuopc/lnd_comp_cplscalars.F90) -# CCPP interface +# CCPP interface list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 noahmp/drivers/ccpp/sfc_diff.f noahmp/drivers/ccpp/machine.F @@ -25,7 +26,7 @@ list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.F90 noahmp/src/module_sf_noahmp_glacier.F90) #------------------------------------------------------------------------------ -# Set CCPP flags for C/C++/Fortran preprocessor +# Set CCPP flags for C/C++/Fortran preprocessor add_definitions(-DCCPP) #------------------------------------------------------------------------------ @@ -55,8 +56,10 @@ endif() #------------------------------------------------------------------------------ # Add model-specific flags for C/C++/Fortran preprocessor -add_definitions(-DMOIST_CAPPA -DUSE_COND -DNEMS_GSM) -add_definitions(-DINTERNAL_FILE_NML) +if (NOT HYDRO) +add_definitions(-DMOIST_CAPPA -DUSE_COND) +endif() +add_definitions(-DINTERNAL_FILE_NML -DNEMS_GSM) #------------------------------------------------------------------------------ # NOAHMP @@ -64,7 +67,7 @@ add_library(noahmp STATIC ${_noahmp_cap_files} ${_noahmp_ccpp_files} ${_noahmp_f set_target_properties(noahmp PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(noahmp PUBLIC $ $) -target_link_libraries(noahmp PUBLIC esmf fms) +target_link_libraries(noahmp PUBLIC esmf) ############################################################################### ### Install diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index 569e354aba..ec38ea3d90 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit 569e354ababbde7a7cd68647533769a5c966468d +Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108 diff --git a/README.md b/README.md index 311fec3b65..cd17b6afc2 100644 --- a/README.md +++ b/README.md @@ -18,18 +18,21 @@ The top level directory structure groups source code and input files as follow: | -------------- | ------- | | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | +| ```AQM/``` | Contains air quality modeling component | | ```CMEPS-interface/``` | Contains CMEPS mediator | +| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | +| ```CDEPS-interface/``` | Contains CDEPS data components, including data-atmosphere (DATM) and data-ocean (DOCN) model components| | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | -| ```DATM/``` | Contains Data Atmosphere model component | -| ```WW3/``` | Contains community wave modeling framework WW3. | +| ```GOCART/``` | Contains GOCART aerosol model component | +| ```HYCOM-interface/``` | Contains HYCOM ocean model component | | ```MOM6-interface/``` | Contains MOM6 ocean model component | -| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | -| ```stochastic_physics/``` | Contains the stochastic physics source code. | +| ```NOAHMP-interface/``` | Contains Noah-MP land model component | +| ```WW3/``` | Contains community wave modeling framework WW3 | +| ```stochastic_physics/``` | Contains the stochastic physics source code | | ```cmake/``` | Contains compile option files on various platforms. | | ```modulefiles/``` | Contains module files on various platforms. | | ```tests/``` | Regression and unit testing framework scripts. | -| ```build.sh``` | Script to build the model executable. (also used by `tests/`) | +| ```build.sh``` | Script to build the model executable (also used by `tests/`) | E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. ``` diff --git a/WW3 b/WW3 index c4b116886b..d9b3172f41 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit c4b116886b5ef9af5fb4942d7161074df3402732 +Subproject commit d9b3172f4197c65d471662c6952a668152d71230 diff --git a/build.sh b/build.sh index 6b6e5e1249..c1cfe43d8d 100755 --- a/build.sh +++ b/build.sh @@ -1,21 +1,29 @@ #!/bin/bash set -eu - -if [[ $(uname -s) == Darwin ]]; then - readonly UFS_MODEL_DIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) +uname_s=$(uname -s) +if [[ ${uname_s} == Darwin ]]; then + UFS_MODEL_DIR=$(greadlink -f -n "${BASH_SOURCE[0]}") + UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") + UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) else - readonly UFS_MODEL_DIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + UFS_MODEL_DIR=$(readlink -f -n "${BASH_SOURCE[0]}") + UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") + UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) fi +echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" +readonly UFS_MODEL_DIR export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} export FC=${FC:-mpif90} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} -mkdir -p ${BUILD_DIR} +mkdir -p "${BUILD_DIR}" -cd ${BUILD_DIR} -cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} +cd "${BUILD_DIR}" +ARR_CMAKE_FLAGS=() +for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done +cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}" # Turn off OpenMP threading for parallel builds # to avoid exhausting the number of user processes -OMP_NUM_THREADS=1 make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" \ No newline at end of file diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 4069d922d7..b09e047cf4 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -1,9 +1,10 @@ -set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check") - -if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") +# https://github.com/ufs-community/ufs-weather-model/issues/2159 +if(MOVING_NEST) + message(FATAL_ERROR "Option MOVING_NEST not compatible with ${CMAKE_Fortran_COMPILER_ID}}") endif() +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ggdb -fbacktrace -cpp -fcray-pointer -ffree-line-length-none -fno-range-check") + if(NOT 32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") endif() @@ -11,6 +12,12 @@ endif() if(DEBUG) add_definitions(-DDEBUG) set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") + # https://github.com/ufs-community/ufs-weather-model/issues/2155 + if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND ${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "arm64") + set( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=small" ) + else() + set( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=medium" ) + endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") else() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index ca38182b45..73564f1783 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -1,6 +1,19 @@ -set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align") +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback -fpp -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox -align array64byte -qno-opt-dynamic-align") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -qno-opt-dynamic-align -sox -fp-model source") +# warning #5462: Global name too long. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 5462") + +# remark #7712: This variable has not been used. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 7712") + +# remark #8291: Recommended relationship between field width 'W' and the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'. +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -diag-disable 8291") + +if(CMAKE_Platform STREQUAL "derecho.intel") + set(CMAKE_Fortran_LINK_FLAGS "-Wl,--copy-dt-needed-entries") +endif() + if(NOT 32BIT) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -real-size 64") endif() @@ -25,6 +38,7 @@ else() elseif(SIMDMULTIARCH) set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -mcmodel=medium") elseif(AVX) set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx-i") set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx-i") diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 23205f8966..b6db3a5759 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -53,12 +53,13 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(APP MATCHES "^(S2SW|S2SWA|S2SWAL)") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Waves") endif() - if(APP MATCHES "^(S2SA|S2SWA)") + if(APP MATCHES "^(S2SA|S2SWA|S2SWAL)") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") endif() @@ -68,17 +69,33 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") message("${APP_MSG} mode") endif() -if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") +if(APP MATCHES "^(ATM_DS2S|ATM_DS2S-PCICE)$") + set(APP_MSG "Configuring UFS app in ATM_DS2S with CDEPS data") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) - if(APP MATCHES "^(HAFS-ALL)$") - set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) - message("Configuring UFS app in HAFS with CDEPS mode") + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + if (APP MATCHES "^(ATM_DS2S-PCICE)$") + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + string(CONCAT APP_MSG ${APP_MSG} " with prescribed ice sea ice") endif() + message("${APP_MSG} mode") +endif() + +if(APP MATCHES "^(HAFS|HAFSW|HAFS-MOM6|HAFS-MOM6W|HAFS-ALL)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - set(HYCOM ON CACHE BOOL "Enable HYCOM" FORCE) - if(APP MATCHES "^(HAFSW|HAFS-ALL)$") + if(APP MATCHES "^(HAFS-MOM6|HAFS-MOM6W)$") + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + endif() + if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") + set(HYCOM ON CACHE BOOL "Enable HYCOM" FORCE) + endif() + if(APP MATCHES "^(HAFSW|HAFS-MOM6W|HAFS-ALL)$") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in HAFS with Waves mode") endif() @@ -96,5 +113,4 @@ if(APP MATCHES "^(LND)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) - set(FMS ON CACHE BOOL "Enable FMS" FORCE) endif() diff --git a/cmake/configure_hercules.gnu.cmake b/cmake/configure_hercules.gnu.cmake new file mode 100644 index 0000000000..8f1ffe0d01 --- /dev/null +++ b/cmake/configure_hercules.gnu.cmake @@ -0,0 +1 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_hercules.intel.cmake b/cmake/configure_hercules.intel.cmake new file mode 100644 index 0000000000..8f1ffe0d01 --- /dev/null +++ b/cmake/configure_hercules.intel.cmake @@ -0,0 +1 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_noaacloud.intel.cmake b/cmake/configure_noaacloud.intel.cmake new file mode 100644 index 0000000000..92b8ecb75e --- /dev/null +++ b/cmake/configure_noaacloud.intel.cmake @@ -0,0 +1 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile index d0c3cbf102..a883b1dda4 100644 --- a/doc/UsersGuide/Makefile +++ b/doc/UsersGuide/Makefile @@ -3,16 +3,20 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build +SPHINXOPTS = -a -n +SPHINXBUILD = sphinx-build SOURCEDIR = source BUILDDIR = build +LINKCHECKDIR = $(BUILDDIR)/linkcheck # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -.PHONY: help Makefile +.PHONY: help Makefile linkcheck + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(SOURCEDIR) $(LINKCHECKDIR) # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/doc/UsersGuide/build/.gitignore b/doc/UsersGuide/build/.gitignore deleted file mode 100644 index 0addfc818b..0000000000 --- a/doc/UsersGuide/build/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except this file -!.gitignore diff --git a/doc/UsersGuide/requirements.in b/doc/UsersGuide/requirements.in new file mode 100644 index 0000000000..26c778f4aa --- /dev/null +++ b/doc/UsersGuide/requirements.in @@ -0,0 +1,3 @@ +sphinx>=6.0.0 +sphinx_rtd_theme +sphinxcontrib-bibtex diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 7be32f526d..9e47095cca 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,3 +1,76 @@ -sphinxcontrib-bibtex -sphinx_rtd_theme -docutils==0.16 \ No newline at end of file +# +# This file is autogenerated by pip-compile with Python 3.11 +# by the following command: +# +# pip-compile requirements.in +# +alabaster==0.7.16 + # via sphinx +babel==2.14.0 + # via sphinx +certifi==2024.7.4 + # via requests +charset-normalizer==3.3.2 + # via requests +docutils==0.20.1 + # via + # pybtex-docutils + # sphinx + # sphinx-rtd-theme + # sphinxcontrib-bibtex +idna==3.7 + # via requests +imagesize==1.4.1 + # via sphinx +jinja2==3.1.4 + # via sphinx +latexcodec==2.0.1 + # via pybtex +markupsafe==2.1.5 + # via jinja2 +packaging==23.2 + # via sphinx +pybtex==0.24.0 + # via + # pybtex-docutils + # sphinxcontrib-bibtex +pybtex-docutils==1.0.3 + # via sphinxcontrib-bibtex +pygments==2.17.2 + # via sphinx +pyyaml==6.0.1 + # via pybtex +requests==2.32.0 + # via sphinx +six==1.16.0 + # via + # latexcodec + # pybtex +snowballstemmer==2.2.0 + # via sphinx +sphinx==7.2.6 + # via + # -r requirements.in + # sphinx-rtd-theme + # sphinxcontrib-bibtex + # sphinxcontrib-jquery +sphinx-rtd-theme==2.0.0 + # via -r requirements.in +sphinxcontrib-applehelp==1.0.8 + # via sphinx +sphinxcontrib-bibtex==2.6.2 + # via -r requirements.in +sphinxcontrib-devhelp==1.0.6 + # via sphinx +sphinxcontrib-htmlhelp==2.0.5 + # via sphinx +sphinxcontrib-jquery==4.1 + # via sphinx-rtd-theme +sphinxcontrib-jsmath==1.0.1 + # via sphinx +sphinxcontrib-qthelp==1.0.7 + # via sphinx +sphinxcontrib-serializinghtml==1.1.10 + # via sphinx +urllib3==2.2.2 + # via requests diff --git a/doc/UsersGuide/source/AutomatedTesting.rst b/doc/UsersGuide/source/AutomatedTesting.rst index 06369c670e..8655532a17 100644 --- a/doc/UsersGuide/source/AutomatedTesting.rst +++ b/doc/UsersGuide/source/AutomatedTesting.rst @@ -31,14 +31,14 @@ The CI/CD workflow then executes the following steps: subcomponents are up to date with the top of the ``develop`` branch. #. If the check is successful, build jobs are started on GHA-provided virtual machines - by downloading the hpc-stack Docker container stored in Docker Hub. + by downloading the HPC-Stack Docker container stored in Docker Hub. #. Once all build jobs are successful, the created executable files are stored as artifacts in GHA. #. A number of AWS EC2 instances are started. - #. Test jobs are started on AWS after downloading the hpc-stack Docker container, + #. Test jobs are started on AWS after downloading the HPC-Stack Docker container, the executable file from the build job, and the input-data Docker container. #. When all tests are complete, EC2 instances are stopped. Test results are reported @@ -91,7 +91,7 @@ On supported HPC systems, a :term:`cron job` runs the ``start_rt_auto.sh`` bash This script checks the HPC name and sets certain python paths. Then, it runs ``rt_auto.py``, which uses the Github API (through pyGitHub) to check the labels on pull requests to ``ufs-weather-model``. If a PR label matches the HPC name -(e.g., hera-intel-RT or cheyenne-gnu-BL), the label provides the HPC +(e.g., hera-intel-RT or derecho-gnu-BL), the label provides the HPC with the compiler and job information to run a test or task on the machine. If no PR label matches HPC name, the script exits. diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index fd3502f9a0..02bfb2a846 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -10,11 +10,11 @@ Supported Platforms & Compilers Before running the Weather Model (:term:`WM`), users should determine which of the :ref:`levels of support ` is applicable to their system. Generally, Level 1 & 2 systems are restricted to those with access -through NOAA and its affiliates. These systems are named (e.g., Hera, Orion, Cheyenne). +through NOAA and its affiliates. These systems are named (e.g., Hera, Orion, Derecho). Level 3 & 4 systems include certain personal computers or non-NOAA-affiliated HPC systems. The prerequisite software libraries for building the WM already exist in a centralized location on Level 1/preconfigured systems, so users may skip directly to :ref:`getting the data ` and downloading the code. -On other systems, users will need to build the prerequisite libraries using :term:`HPC-Stack` or :term:`spack-stack`. +On other systems, users will need to build the prerequisite libraries using :term:`spack-stack` or :term:`HPC-Stack`. ======================= Prerequisite Libraries @@ -22,7 +22,7 @@ Prerequisite Libraries The UFS WM requires a number of libraries. The WM uses two categories of libraries, which are available as a bundle via -:term:`HPC-Stack` or :term:`spack-stack`: +:term:`spack-stack` or :term:`HPC-Stack`: #. :term:`NCEP` libraries (:term:`NCEPLIBS`): These are libraries developed for use with NOAA weather models. Most have an NCEPLIBS prefix in the repository (e.g., NCEPLIBS-bacio). Select tools from the UFS @@ -34,11 +34,12 @@ The WM uses two categories of libraries, which are available as a bundle via instead. .. note:: - Currently, HPC-Stack is the software stack validated by the UFS WM for running :term:`regression tests `. - However, UFS applications are shifting to spack-stack, which is a Spack-based - method for installing UFS prerequisite software libraries. The spack-stack is currently - used on NOAA Cloud platforms and in containers, while HPC-Stack is still used on NOAA - Research & Development HPC Systems (RDHPCS). + Currently, spack-stack is the software stack validated by the UFS WM for running + :term:`regression tests `. Spack-stack is a Spack-based method for installing UFS + prerequisite software libraries. UFS applications and components are also shifting to + spack-stack from HPC-Stack but are at various stages of this transition. + Although users can still build and use HPC-Stack, the UFS WM no longer uses HPC-Stack + for validation, and support for this option is being deprecated. ---------------- Common Modules @@ -70,8 +71,8 @@ The most updated list of common modules can be viewed in ``ufs_common.lua`` `here `__. .. attention:: - Documentation is available for installing `HPC-Stack `__ - and `spack-stack `__, respectively. + Documentation is available for installing `spack-stack `__ + and `HPC-Stack `__, respectively. One of these software stacks (or the libraries they contain) must be installed before running the UFS Weather Model. .. _GetData: @@ -88,23 +89,23 @@ the data required to run the WM RTs are already available in the following locat .. _DataLocations: .. table:: Data Locations for Level 1 & 2 Systems - +--------------+-----------------------------------------------------+ - | Machine | File location | - +==============+=====================================================+ - | Cheyenne | /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT | - +--------------+-----------------------------------------------------+ - | Gaea | /lustre/f2/pdata/ncep_shared/emc.nemspara/RT | - +--------------+-----------------------------------------------------+ - | Hera | /scratch1/NCEPDEV/nems/emc.nemspara/RT | - +--------------+-----------------------------------------------------+ - | Jet | /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT | - +--------------+-----------------------------------------------------+ - | Orion | /work/noaa/nems/emc.nemspara/RT | - +--------------+-----------------------------------------------------+ - | S4 | /data/prod/emc.nemspara/RT | - +--------------+-----------------------------------------------------+ - | WCOSS2 | /lfs/h2/emc/nems/noscrub/emc.nems/RT | - +--------------+-----------------------------------------------------+ + +--------------+--------------------------------------------------------+ + | Machine | File location | + +==============+========================================================+ + | Derecho | /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT | + +--------------+--------------------------------------------------------+ + | Gaea | /lustre/f2/pdata/ncep_shared/emc.nemspara/RT | + +--------------+--------------------------------------------------------+ + | Hera | /scratch1/NCEPDEV/nems/emc.nemspara/RT | + +--------------+--------------------------------------------------------+ + | Jet | /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT | + +--------------+--------------------------------------------------------+ + | Orion | /work/noaa/nems/emc.nemspara/RT | + +--------------+--------------------------------------------------------+ + | S4 | /data/prod/emc.nemspara/RT | + +--------------+--------------------------------------------------------+ + | WCOSS2 | /lfs/h2/emc/nems/noscrub/emc.nems/RT | + +--------------+--------------------------------------------------------+ For Level 3-4 systems, the data must be added to the user's system. Publicly available RT data is available in the `UFS WM Data Bucket `__. @@ -581,7 +582,9 @@ To run a single test, users can try the following command instead of creating a .. code-block:: console - ./rt.sh -r -k -n control_p8 + ./rt.sh -r -k -n "control_p8 " + +where ```` is ``gnu`` or ``intel``. Troubleshooting ^^^^^^^^^^^^^^^^^^ diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 7b304e2808..72297ea4d7 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -19,16 +19,16 @@ Four levels of support have been defined for :term:`UFS` applications, and the U Level 1 Systems ================== -Preconfigured (Level 1) systems for the UFS WM already have the required external libraries available in a central location via :term:`HPC-Stack` or :term:`spack-stack`. The WM is expected to build and run out-of-the-box on these systems, and users can download the WM code without first installing prerequisite software. Additionally, regression test data is already available on these systems. In general, users must have access to these Level 1 systems in order to use them. +Preconfigured (Level 1) systems for the UFS WM already have the required external libraries available in a central location via :term:`spack-stack`. The WM is expected to build and run out-of-the-box on these systems, and users can download the WM code without first installing prerequisite software. Additionally, regression test data is already available on these systems. In general, users must have access to these Level 1 systems in order to use them. Currently, Level 1 (or Tier-1) platforms for regression testing are: * WCOSS2 (Intel) - * Cheyenne (Intel/GNU compilers) * Gaea (Intel) * Hera (Intel/GNU compilers) * Jet (Intel) * Orion (Intel) + * Hercules (Intel/GNU compilers) * AWS Docker container (Intel) More information is available in the `UFS WM wiki `__. @@ -67,7 +67,7 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w * - :term:`FV3` dynamical core - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere * - Stochastic physics pattern generator - - https://github.com/noaa-psd/stochastic_physics + - https://github.com/NOAA-PSL/stochastic_physics * - Modular Ocean Model (:term:`MOM6`) - https://github.com/NOAA-EMC/MOM6 * - HYbrid Coordinate Ocean Model (:term:`HYCOM`) @@ -108,7 +108,8 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi ├── CDEPS-interface │ └── CDEPS │ ├── (datm) -------- CDEPS DATM - │ └── (docn) -------- CDEPS DOCN + │ ├── (docn) -------- CDEPS DOCN + │ └── (dice) -------- CDEPS DICE ├── CICE-interface │ └── CICE -------- CICE6 sea ice model │ ├── (icepack) -------- Sea ice column physics @@ -161,4 +162,4 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi │ └── fv3_conf └── WW3 └── (model) -------- WW3 model - └── (src) -------- NUOPC WW3 caps \ No newline at end of file + └── (src) -------- NUOPC WW3 caps diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst index a19df6d812..69d659ffa5 100644 --- a/doc/UsersGuide/source/Configurations.rst +++ b/doc/UsersGuide/source/Configurations.rst @@ -1,3 +1,9 @@ +.. |nbsp| unicode:: 0xA0 + :trim: + +.. role:: raw-html(raw) + :format: html + .. _Configurations: ************************* @@ -7,8 +13,7 @@ Configurations The UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, and mediator). This chapter documents a few of the currently supported configurations. For a full list of -supported configurations, view the `rt.conf `__ -and `rt.gnu.conf `__ files. +supported configurations, view the `rt.conf `__ file. .. attention:: @@ -26,15 +31,23 @@ and `rt.gnu.conf ` - Standalone Atmospheric Model (:term:`ATM`) + * - :ref:`ATMW ` + - Coupled :term:`ATM` and :term:`WW3` + * - :ref:`ATMAERO ` + - Coupled :term:`ATM` and :term:`GOCART` * - :ref:`ATML ` - Coupled :term:`ATM` and :term:`LND` * - :ref:`LND ` - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS` + * - :ref:`RRFS ` + - :term:`ATM` with :term:`data assimilation` + * - :ref:`HAFS ` + - Coupled components may include :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`MOM6` - :term:`CMEPS` This chapter details the supported build/run options for each supported configuration. Click on the configuration category in :numref:`Table %s ` to go to that section. Each configuration category includes sample code for setting ``CMAKE_FLAGS`` and ``CCPP_SUITES``. -Additionally, there is a list of preferred physics suites, examples of ``nems.configure`` files, +Additionally, there is a list of preferred physics suites, examples of ``ufs.configure`` files, and links to information on other input files required to run the model. ============ @@ -45,7 +58,7 @@ Each RT configuration file (located in the ``ufs-weather-model/tests/tests`` `directory `__) sets default variables by calling setup functions from ``ufs-weather-model/tests/default_vars.sh`` (see defaults `here `__). -Then, the RT configuration file sets test-specific variables; these values will override +Then, the RT configuration file sets test-specific variablesthese values will override the defaults. For example, the ``control_c48`` test file sets a list of files that it will use, calls the ``export_fv3`` function from ``default_vars.sh``, and then exports test-specific variables. An excerpt is included below (``...`` indicates omitted lines): @@ -138,7 +151,7 @@ it will be expanded to cover the full range of ATM-only supported configurations * - Test Name - Description - - Physics Suite + - Physics Suite (see `namelist options `__) - DT_ATMOS - Start Date - Forecast Length (hours) @@ -187,22 +200,138 @@ it will be expanded to cover the full range of ATM-only supported configurations **Additional Information** -Input files required for ATM configurations can be viewed in :numref:`Section %s ` +Input files required for ATM configurations can be viewed in :numref:`Section %s ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATM ``nems.configure`` file (``nems.configure.atm.IN``) is available -`here `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATM ``ufs.configure`` file (``ufs.configure.atm.IN``) is available +`here `__. +.. _atmw-documented: ATMW ======= -**COMING SOON!** +The ATMW configuration couples :term:`ATM` with :term:`WaveWatch III`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. list-table:: *ATMW regression test descriptions* + :widths: 50 10 30 50 10 10 10 10 10 + :header-rows: 1 + + * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| + - Description + - General Physics Parameters + - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) + - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| + - Fcst Length (hours) + - Output Grid + - Configuration Files + - Other + * - `atmwav_control_noaero_p8 `__ + - Compare global control results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_GFS_v16" :raw-html:`

` + + **Microphysics:** IMP_PHYSICS=8 :raw-html:`

` + + **Time Step:** DT_ATMOS=720 :raw-html:`

` + + - **Set to FALSE:** LHEATSTRG, DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, MULTIGRID, USE_CICE_ALB, DO_RRTMGP :raw-html:`

` + **Set to TRUE:** USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, CPL, CPLWAV, CPLWAV2ATM, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF :raw-html:`

` + **Set to VALUE:** IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, IAER=1011, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DNATS=0, DZ_MIN=6, cap_dbug_flag=0, MIN_SEAICE=0.15, + - 2021-03-22 06:00:00 + - 12 + - OUTPUT_GRID=gaussian_grid :raw-html:`

` + **Grid Parameters**: INPES=$INPES_cpl_atmw, JNPES=$JNPES_cpl_atmw, NPZ=127, NPZP=128 + - FIELD_TABLE=field_table_thompson_noaero_tke + DIAG_TABLE=diag_table_p8_template + INPUT_NML=cpld_control.nml.IN + UFS_CONFIGURE=ufs.configure.atmw.IN + FV3_RUN=control_run.IN + - RUNTYPE=startup, med_model=cmeps, atm_model=fv3, wav_model=ww3 + +.. _atmaero-documented: ATMAERO ========= -**COMING SOON!** +The ATMAERO configuration couples :term:`ATM` with :term:`GOCART`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. attention:: + + Certain physics-related settings are common to all of the supported RRFS configurations. These values are set in each test's configuration file because they differ from the ``default_vars.sh`` values: + + General Physics Parameters: + * **Suite:** CCPP_SUITE= `FV3_GFS_v17_p8 `__ + * **Microphysics:** IMP_PHYSICS=8 + * **Time Step:** DT_ATMOS=720 + + Detailed Physics Parameters: + * **Set to FALSE:** DO_UGWP_V1, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_TOFD, DO_UGWP_V1_OROG_ONLY, DO_UGWP_V0_NST_ONLY, LDIAG_UGWP, CA_GLOBAL, LANDICE, LGFDLMPRAD, DO_SAT_ADJ, USE_CICE_ALB, DO_RRTMGP + * **Set to TRUE:** WRITE_DOPOST, CPL, CPLCHM, USE_MERRA2, LSEASPRAY, DO_UGWP_V0, DO_GSL_DRAG_SS, DO_CA, CA_SGS, CA_TRIGGER, TILEDFIX, FRAC_GRID, WRITE_NSFLIP, DOGP_CLDOPTICS_LUT, DOGP_LWSCAT, DOGP_SGS_CNV, SATMEDMF + * **Set to VALUE:** NSTF_NAME='2,0,0,0,0', atm_model='fv3', chm_model='gocart', DOMAINS_STACK_SIZE=8000000, IALB=2, IEMS=2, LSM=2, IOPT_DVEG=4, IOPT_CRS=2, IOPT_RAD=3, IOPT_ALB=1, IOPT_STC=3, IOPT_SFC=3, IOPT_TRS=2, IOPT_DIAG=2, D2_BG_K1=0.20, D2_BG_K2=0.04, PSM_BC=1, DDDMP=0.1, GWD_OPT=2, KNOB_UGWP_VERSION=0, KNOB_UGWP_NSLOPE=1, NCA=1, NCELLS=5, NLIVES=12, NTHRESH=18, NSEED=1, NFRACSEED=0.5, NSPINUP=1, ISEED_CA=12345, FSICL=0, FSICS=0, DZ_MIN=6, MIN_SEAICE=0.15 + + The "Detailed Physics Parameters" column in :numref:`Table %s ` details physics settings that differ from both the ``default_vars.sh`` values and these ATMAERO-specific defaults. + +.. _atmaero-rts: + +.. list-table:: *ATMAERO regression test descriptions* + :widths: 50 10 50 10 10 10 10 10 + :header-rows: 1 + + * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| + - Description + - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) + - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| + - Fcst Length (hours) + - Output Grid + - Configuration Files + - Other + * - `atmaero_control_p8 `__ + - Compare global results for prognostic aerosols with previous trunk version + - **Set to FALSE:** LHEATSTRG :raw-html:`

` + **Set to TRUE:** ATMAERO default values only :raw-html:`

` + **Set to VALUE:** IAER=1011, DNATS=2 + - 2021-03-22 06:00:00 + - 24 + - OUTPUT_GRID=gaussian_grid :raw-html:`

` + **Grid Parameters**: INPES=${INPES_atmaero}, JNPES=${JNPES_atmaero}, NPZ=127, NPZP=128 + - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + DIAG_TABLE=diag_table_cpld.IN + INPUT_NML=ufs.configure.atmaero_esmf.IN + UFS_CONFIGURE=ufs.configure.atmaero.IN + FV3_RUN=control_run.IN + - RESTART_INTERVAL=12 -1 + * - `atmaero_control_p8_rad `__ + - Compare global results for prognostic aerosols with previous trunk version + - **Set to FALSE:** ATMAERO values only :raw-html:`

` + **Set to TRUE:** LHEATSTRG :raw-html:`

` + **Set to VALUE:** IAER=2011, DNATS=2 + - 2021-03-22 06:00:00 + - 24 + - OUTPUT_GRID=gaussian_grid :raw-html:`

` + **Grid Parameters**: NPZ=127, NPZP=128 + - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + DIAG_TABLE=diag_table_cpld.IN + INPUT_NML=cpld_control.nml.IN + UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN + FV3_RUN=control_run.IN + - RESTART_INTERVAL=12 -1 + * - `atmaero_control_p8_rad_micro `__ + - Compare global results for prognostic aerosols with previous trunk version + - **Set to FALSE:** :raw-html:`

` + **Set to TRUE:** LHEATSTRG :raw-html:`

` + **Set to VALUE:** IAER=2011, DNATS=4 + - 2021-03-22 06:00:00 + - 24 + - OUTPUT_GRID=gaussian_grid :raw-html:`

` + **Grid Parameters**: NPZ=127, NPZP=128 + - FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + DIAG_TABLE=diag_table_p8_gocart_micro + INPUT_NML=merra2_thompson.nml.IN + UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN + FV3_RUN=control_run.IN + - RESTART_INTERVAL='12 -1' ATMAQ ======= @@ -230,7 +359,7 @@ These tests use default values set in the ``export_fv3`` function of ``default_v * - Test Name - Description - - Physics Suite + - Physics Suite (see `namelist options `__) - DT_ATMOS - Start Date - Forecast Length (hours) @@ -261,12 +390,74 @@ These tests use default values set in the ``export_fv3`` function of ``default_v **Additional Information** -Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` -and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``nems.configure`` file (``nems.configure.atm_lnd.IN``) is available -`here `__. +Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` +and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. + + +.. _rrfs-documented: + +======================================= +Rapid Refresh Forecast System (RRFS) +======================================= + +The RRFS configurations use an :term:`ATM`-only configuration on a high-resolution +regional grid with data assimilation capabilities. +These tests use the default values set in the ``export_fv3``, ``export_rap_common``, ``export_rrfs_v1``, and/or ``export_hrrr_conus13km`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. Depending on the test, some of these values may be overriden by ``export_rrfs_v1`` (which includes values from ``export_rap_common``) or ``export_hrrr_conus13km``. :numref:`Table %s ` compares the values set in ``export_fv3`` to the values set in the other functions. + +.. note:: + + ``export_rrfs_v1`` calls ``export_rap_common``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_rap_common`` and then values in ``export_rrfs_v1``. Values in italics indicate that the value is inherited from a previously-called function. + +.. _rrfs-default-vars-comparison: + +.. csv-table:: *RRFS Default Variables* + :file: tables/RRFSDefaultVariables.csv + :widths: 50 10 10 10 10 + :header-rows: 1 + :stub-columns: 1 + +Current RRFS regression tests cover a wide variety of functionality and involve several +physics tests. :numref:`Table %s ` (below) contains a selection of RTs for RRFS functionality. Blanks indicate that the value comes from the default setting file. These default values are listed in :numref:`Table %s ` above. + +.. _rrfs-rts: + +.. csv-table:: *RRFS regression test descriptions* + :file: tables/rrfs-rts.csv + :widths: 20 20 30 50 10 10 10 + :header-rows: 1 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the RRFS configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_HRRR + - The FV3_HRRR physics suite is described in the :term:`CCPP` documentation `here `__. + * - FV3_RRFS_v1beta + - The FV3_RRFS_v1beta physics suite is described in the CCPP documentation `here `__. + * - FV3_RRFS_v1nssl + - The FV3_RRFS_v1nssl physics suite is similar to the *FV3_RRFS_v1beta* suite; however, it uses the NSSL 2-moment microphysics scheme instead of the Thompson microphysics scheme. + + +**Additional Information** + +Each test file lists the input files required for a given test. Input files required for RRFS ATM configurations can be downloaded from the `UFS WM RT Data Bucket `__. Users who wish to run additional (unsupported) cases may also find useful data in the `NOAA RRFS data bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. + +Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. .. _lnd-documented: @@ -309,11 +500,11 @@ The LND configuration couples :term:`DATM`, :term:`CDEPS`, and :term:`CMEPS` wit **Additional Information** -Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` +Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``nems.configure`` file (``nems.configure.atm_lnd.IN``) is available -`here `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. ============================================= @@ -328,13 +519,510 @@ NG-GODAS **COMING SOON!** +.. _hafs-documented: + ======================================================== Hurricane Analysis and Reforecast System Configurations ======================================================== -**COMING SOON!** +The HAFS configuration uses an :term:`DATM`-only configuration. + +These tests use the default values set in the ``export_fv3``, ``export_hafs``, ``export_hafs_regional``, ``export_hafs_datm_cdeps``, and ``export_hafs_docn_cdeps`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. + +.. note:: + + ``export_hafs`` calls ``export_hafs_regional``, which calls ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_hafs``, ``export_hafs_regional``, and then values in ``export_hafs_datm_cdeps`` or ``export_hafs_docn_cdeps``. + +.. list-table:: *Default physics-related variables used in the HAFS configurations below* + :widths: 10 50 + :header-rows: 1 + + * - Export Function + - Variables + * - export_hafs + - **Set to FALSE:** S2S, AQM, DATM_CDEPS, DOCN_CDEPS, HYBEDMF, CNVGWD, LTAEROSOL, LHEATSTRG, IS_MOVING_NEST :raw-html:`

` + **Set to TRUE:** FV3, HAFS, SATMEDMF, HURR_PBL, DO_GSL_DRAG_LS_BL, DO_GSL_DRAG_SS, DO_GSL_DRAG_TOFD, LRADAR, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** NTILES=1, IMFSHALCNV=2, IMFDEEPCNV=2, MONINQ_FAC=-1.0, ISATMEDMF=1, IOPT_SFC=1, IOPT_DVEG=2, IOPT_CRS=1, IOPT_RAD=1, IOPT_ALB=2, IOPT_STC=1, LSM=1, IMP_PHYSICS=11, IAER=111, CDMBWD=1.0,1.0,1.0,1.0, FV_CORE_TAU=5., RF_CUTOFF=30.e2, RF_CUTOFF_NEST=50.e2, VORTEX_TRACKER=0, NTRACK=0, MOVE_CD_X=0, MOVE_CD_Y=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, NSOUT=-1, OUTPUT_FH=-1 + * - export_hafs_regional + - **Set to FALSE:** S2S, AQM, DOCN_CDEPS, WRITE_DOPOST, USE_COLDSTART, MULTIGRID :raw-html:`

` + **Set to TRUE:** FV3, HAFS, CPL, QUILTING, OUTPUT_HISTORY, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** NTILES=1, FHMAX=6, ENS_NUM=1, DT_ATMOS=900, RESTART_INTERVAL=0, FHROT=0, coupling_interval_fast_sec=0, WRITE_GROUP=1, WRTTASK_PER_GROUP=6, NUM_FILES=2, FILENAME_BASE="'atm' 'sfc'", OUTPUT_GRID="'regional_latlon'", OUTPUT_FILE="'netcdf'", IDEFLATE=0, QUANTIZE_NSD=0, NFHOUT=3, NFHMAX_HF=-1, NFHOUT_HF=3, CEN_LON=-62.0, CEN_LAT=25.0, LON1=-114.5, LAT1=-5.0, LON2=-9.5, LAT2=55.0, DLON=0.03, DLAT=0.03, DIAG_TABLE=diag_table_hafs, FIELD_TABLE=field_table_hafs, WW3OUTDTHR=3, OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP", WAV_CUR='C', med_model=cmeps, pio_rearranger=box, CAP_DBUG_FLAG=0, CPLMODE=hafs, RUNTYPE=startup, MESH_WAV=mesh.hafs.nc, MODDEF_WAV=mod_def.natl_6m + * - export_hafs_datm_cdeps + - **Set to FALSE:** FV3, S2S, AQM, DOCN_CDEPS :raw-html:`

` + **Set to TRUE:** HAFS, DATM_CDEPS :raw-html:`

` + **Set to VALUE:** NTILES=1, atm_model=datm, DATM_IN_CONFIGURE=datm_in, DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + * - export_hafs_docn_cdeps + - **Set to FALSE:** S2S, AQM :raw-html:`

` + **Set to TRUE:** FV3, HAFS, DOCN_CDEPS :raw-html:`

` + **Set to VALUE:** NTILES=1, ocn_model=docn, ocn_datamode=sstdata, pio_rearranger=box, DOCN_IN_CONFIGURE=docn_in, DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN +.. _hafs-rts: +.. list-table:: *HAFS regression test descriptions* + :widths: 50 10 30 50 10 10 10 10 10 + :header-rows: 1 + * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| + - Description + - General Physics Parameters + - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options `here `__ |nbsp| for variable definitions) + - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| + - Fcst Length (hours) + - Output Grid + - Configuration Files + - Other + * - `rhafs_global_1nest_atm `__ + - Compare HAFS global with 1 nest and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=90 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` + **Set to VALUE:** + See ``export_hafs`` default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` + **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_global_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_global_multiple_4nests_atm `__ + - Compare HAFS global with 4 multiple nests and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=90 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=regional_latlon, OUTPUT_GRID_3=rotated_latlon, OUTPUT_GRID_4=rotated_latlon, OUTPUT_GRID_5=rotated_latlon :raw-html:`

` + **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=241, NPY_NEST02=241, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=241, NPY_NEST03=241, INPES_NEST04=6, JNPES_NEST04=10, NPX_NEST04=361, NPY_NEST04=361, INPES_NEST05=6, JNPES_NEST05=10, NPX_NEST05=361, NPY_NEST05=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_global_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + INPUT_NEST03_NML=input_nest_hafs.nml.IN + INPUT_NEST04_NML=input_nest_hafs.nml.IN + INPUT_NEST05_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_global_storm_following_1nest_atm `__ + - Compare HAFS global with 1 storm-following moving nest and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, CPLOCN2ATM, NESTED :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=global_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` + **Grid Parameters**: INPES=4, JNPES=5, NPX=97, NPY=97, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=73, NPY_NEST02=73 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_global_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_1nest_atm `__ + - Compare HAFS regional with 1 nest and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=90 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM, NESTED :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_atm `__ + - Compare HAFS regional atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_atm_ocn `__ + - Compare HAFS regional atmosphere-ocean coupled HYCOM results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_atm_ocn_wav `__ + - Compare HAFS regional atmosphere-ocean-wave coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV2ATM, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_atm_thompson_gfdlsf `__ + - Compare the results from HAFS regional atmosphere only using the Thompson microphysics scheme and GFDL surface layer scheme with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_thompson_tedmf_gfdlsf" + + **Microphysics:** IMP_PHYSICS=8 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, DO_SAT_ADJ, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=cubed_sphere_grid :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs_thompson + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_atm_wav `__ + - Compare HAFS regional atmosphere-wave coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLOCN2ATM, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_wav.IN" + FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_datm_cdeps `__ + - Compare HAFS regional coupled CDEPS data atmosphere from ERA5 with regional HYCOM results with previous trunk version + - N/A: No active atmospheric component + - **Set to FALSE:** CPLWAV, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_datm_cdeps then export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 24 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=$INPES_dflt, JNPES=$JNPES_dflt + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" + FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN" + DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_docn `__ + - Compare HAFS regional coupled with regional data ocean from MOM6 results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 24 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN" + FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_mom6.IN" + DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_docn_oisst `__ + - Compare HAFS regional coupled with global data ocean from OISST results with previous trunk version + - **Suite:** CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLWAV, CPLWAV2ATM :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_docn_cdeps then export_hafs_regional then export_hafs default values. + - 2019-08-29 00:00:00 + - 6 + - OUTPUT_GRID=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=20, JNPES=12, NPX=721, NPY=601, NPZ=91, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_docn.IN" + FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_oisst.IN" + DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_specified_moving_1nest_atm `__ + - Compare HAFS regional with 1 specified moving nest and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** WRITE_DOPOST, EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_storm_following_1nest_atm `__ + - Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLFLX, CPLWAV, CPLWAV2ATM, CPL_IMP_MRG, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon_moving :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_storm_following_1nest_atm_ocn `__ + - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional default values then export_hafs. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__ + - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV, CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional default values then export_hafs. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_storm_following_1nest_atm_ocn_debug `__ + - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional default values then export_hafs. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=regional_latlon, OUTPUT_GRID_2=regional_latlon_moving :raw-html:`

` + **Grid Parameters**: INPES=$INPES_thrd, JNPES=$JNPES_thrd, INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)) + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_storm_following_1nest_atm_ocn_wav `__ + - Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=180 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, IS_MOVING_NEST=".false.,.true.", CPLWAV2ATM, USE_COLDSTART, CDEPS_DOCN :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLFLX, CPLOCN2ATM, CPLWAV, CPL_IMP_MRG :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs_regional default values then export_hafs. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=rotated_latlon :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm_ocn_wav.IN" + FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + * - `hafs_regional_telescopic_2nests_atm `__ + - Compare HAFS regional with two telescopic nests and atmosphere only results with previous trunk version + - **Suite:** CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" + + **Microphysics:** IMP_PHYSICS=11 + + **Time Step:** DT_ATMOS=90 + - **Set to FALSE:** MOUNTAIN, WARM_START, FULL_ZS_FILTER, CPLFLX, CPLWAV, CPLWAV2ATM, CMEPS, USE_COLDSTART :raw-html:`

` + **Set to TRUE:** EXTERNAL_IC, NGGPS_IC, REGIONAL, CPLOCN2ATM :raw-html:`

` + **Set to VALUE:** + Also, see export_hafs default values. + - 2020-08-25 12:00:00 + - 6 + - OUTPUT_GRID=rotated_latlon, OUTPUT_GRID_2=lambert_conformal, OUTPUT_GRID_3=regional_latlon :raw-html:`

` + **Grid Parameters**: INPES=6, JNPES=10, NPX=241, NPY=241, NPZ=64, NPZP=$(($NPZ + 1)), INPES_NEST02=6, JNPES_NEST02=10, NPX_NEST02=361, NPY_NEST02=361, INPES_NEST03=6, JNPES_NEST03=10, NPX_NEST03=361, NPY_NEST03=361 + - FIELD_TABLE=field_table_hafs + DIAG_TABLE=diag_table_hafs_template + INPUT_NML=input_regional_hafs.nml.IN + INPUT_NEST02_NML=input_nest_hafs.nml.IN + INPUT_NEST03_NML=input_nest_hafs.nml.IN + MODEL_CONFIGURE="model_configure_hafs.IN" + UFS_CONFIGURE="ufs.configure.hafs_atm.IN" + FV3_RUN="hafs_fv3_run.IN" + - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.false., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=HAFS" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the HAFS configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_HAFS_v1_gfdlmp_tedmf + - The FV3_HAFS_v1_gfdlmp_tedmf physics suite is described in the :term:`CCPP` documentation `here `__. + * - FV3_HAFS_v1_gfdlmp_tedmf_nonsst + - The FV3_HAFS_v1_gfdlmp_tedmf_nonsst physics suite is described in the CCPP documentation `here `__. + * - FV3_HAFS_v1_thompson_tedmf_gfdlsf + - The FV3_HAFS_v1_thompson_tedmf_gfdlsf physics suite is described in the CCPP documentation `here `__. diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index 71ee5dc234..939f057bd6 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -29,14 +29,14 @@ The steps are: cd tests #. Find a configure (``*.conf``) file that contains the machine and compiler you are using. For this - example, the Intel compiler on Cheyenne is used. To create a custom configure file, two lines are + example, the Intel compiler on Derecho is used. To create a custom configure file, two lines are needed: a ``COMPILE`` line and a ``RUN`` line. The ``COMPILE`` line should contain the name - of the machine and compiler ``cheyenne.intel`` and the desired ``SUITES`` for the build. Choose a + of the machine and compiler ``derecho.intel`` and the desired ``SUITES`` for the build. Choose a ``RUN`` line under this ``COMPILE`` command that uses the desired ``SUITE``. For example: .. code-block:: console - COMPILE | 32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_no_nsst,FV3_GFS_v16beta_no_nsst | standard | cheyenne.intel | fv3 + COMPILE | 32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_no_nsst,FV3_GFS_v16beta_no_nsst | standard | derecho.intel | fv3 RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | Put these two lines into a file called ``my_test.conf``. The parameters used in this run can be @@ -49,16 +49,16 @@ The steps are: .. code-block:: console - if [[ $MACHINE_ID = cheyenne.* ]]; then stanza: + if [[ $MACHINE_ID = derecho.* ]]; then stanza: ... dprefix=/glade/scratch - This works for Cheyenne, since ``$USER/FV3_RT`` will be appended. Also check that ``RTPWD`` + This works for Derecho, since ``$USER/FV3_RT`` will be appended. Also check that ``RTPWD`` points to a diretory that exists: .. code-block:: console - if [[ $MACHINE_ID = cheyenne.* ]]; then + if [[ $MACHINE_ID = derecho.* ]]; then RTPWD=${RTPWD:-$DISKNM/ufs-public-release-20200224/${COMPILER^^}} #. Run the ``rt.sh`` script from the ``tests`` directory: @@ -166,7 +166,7 @@ options: MOM6, CICE6 and CMEPS restart files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -In ``nems.configure``, set the ALLCOMP_attribute ``restart_n`` to a +In ``ufs.configure``, set the ALLCOMP_attribute ``restart_n`` to a value greater than the forecast length. MOM6 history files @@ -229,11 +229,11 @@ How do I set the total number of tasks for my job? In the UFS WM, each component's MPI task information, including the starting and ending tasks and the number of threads, are specified using the component-specific ``petlist_bounds`` and -``omp_num_threads`` in ``nems.configure``. In general, the total +``omp_num_threads`` in ``ufs.configure``. In general, the total number of MPI tasks required is the sum of all the sub-component tasks, as long as those components do not overlap (i.e., share the same PETs). An example of a global 5 component coupled configuration -nems.configure at the end of this section. +ufs.configure at the end of this section. FV3atm ^^^^^^ @@ -286,7 +286,7 @@ If ESMF-managed threading is used, the total number of PETs for the atmosphere component is given by the product of the number of threads requested and the total number of MPI ranks (both forecast and write grid component). If ``num_threads_atm`` is the number of threads -specified for the FV3atm component, in ``nems.configure`` the ATM PET +specified for the FV3atm component, in ``ufs.configure`` the ATM PET bounds are given by :: @@ -295,7 +295,7 @@ bounds are given by ATM_omp_num_threads num_threads_atm Note that in UWM, the ATM component is normally listed first in -``nems.configure`` so that the starting PET for the ATM is 0. +``ufs.configure`` so that the starting PET for the ATM is 0. GOCART ^^^^^^ @@ -330,7 +330,7 @@ MPI tasks for CMEPS is given by total_tasks_med = smaller of (300, FV3atm forecast tasks) -and in ``nems.configure`` +and in ``ufs.configure`` :: @@ -342,7 +342,7 @@ MOM6 For MOM6 the only restriction currently on the number of MPI ranks used by MOM6 is that it is divisible by 2. The starting PET in -``nems.configure`` will be the last PET of the preceding component, +``ufs.configure`` will be the last PET of the preceding component, incremented by one. Threading in MOM6 is not recommended at this time. :: @@ -388,14 +388,14 @@ For the 1-deg CICE domain for example, ``ice_in`` would be In UFS, only a single thread is used for CICE so for ``nprocs`` set in -``ice_in``, the tasks in ``nems.configure`` are set as: +``ice_in``, the tasks in ``ufs.configure`` are set as: :: ICE_petlist_bounds: starting_ICE_PET nprocs+starting_ICE_PET-1 ICE_omp_num_threads: 1 -The starting ICE PET in ``nems.configure`` will be the last PET of the +The starting ICE PET in ``ufs.configure`` will be the last PET of the preceding component, incremented by one. WW3 @@ -409,20 +409,20 @@ for WW3 and the number of threads to be used. WAV_petlist_bounds: starting_WAV_PET num_tasks_wav*num_threads_wav+starting_WAV_PET-1 WAV_omp_num_threads: num_threads_wav -The starting WAV PET in ``nems.configure`` will be the last PET of the +The starting WAV PET in ``ufs.configure`` will be the last PET of the preceding component, incremented by one. -Example: 5-component nems.configure +Example: 5-component ufs.configure ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -For the fully coupled S2SWA application, a sample ``nems.configure`` is shown below : +For the fully coupled S2SWA application, a sample ``ufs.configure`` is shown below : .. code-block:: console ############################################# - #### NEMS Run-Time Configuration File ##### + #### UFS Run-Time Configuration File ##### ############################################# # ESMF # diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index c325d647c6..0ac0044002 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -29,7 +29,7 @@ Glossary The pool of CCPP-compliant physics schemes; also refers to a software repository of the same name CDEPS - The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. + The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. CESM The `Community Earth System Model `__ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. @@ -54,6 +54,9 @@ Glossary cron table Cron is a job scheduler accessed through the command-line on UNIX-like operating systems. It is useful for automating tasks such as regression testing. Cron periodically checks a cron table (aka crontab) to see if any tasks are are ready to execute. If so, it runs them. + data assimilation + Data assimilation is the process of combining observations, model data, and error statistics to achieve the best estimate of the state of a system. One of the major sources of error in weather and climate forecasts is uncertainty related to the initial conditions that are used to generate future predictions. Even the most precise instruments have a small range of unavoidable measurement error, which means that tiny measurement errors (e.g., related to atmospheric conditions and instrument location) can compound over time. These small differences result in very similar forecasts in the short term (i.e., minutes, hours), but they cause widely divergent forecasts in the long term. Errors in weather and climate forecasts can also arise because models are imperfect representations of reality. Data assimilation systems seek to mitigate these problems by combining the most timely observational data with a "first guess" of the atmospheric state (usually a previous forecast) and other sources of data to provide a "best guess" analysis of the atmospheric state to start a weather or climate simulation. When combined with an "ensemble" of model runs (many forecasts with slightly different conditions), data assimilation helps predict a range of possible atmospheric states, giving an overall measure of uncertainty in a given forecast. + DATM DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS Documentation `__. @@ -65,7 +68,7 @@ Glossary Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. EMC - The `Environmental Modeling Center `__ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + The `Environmental Modeling Center `_ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. ESMF `Earth System Modeling Framework `__. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. @@ -117,11 +120,11 @@ Glossary NCEPLIBS The software libraries created and maintained by :term:`NCEP` that are required for running - :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in the `HPC-Stack `__ and in `spack-stack `__. + :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__. NCEPLIBS-external A collection of third-party libraries required to build :term:`NCEPLIBS`, :term:`chgres_cube`, - the UFS Weather Model, and the :term:`UPP`. They are included in the :term:`HPC-Stack` and in :term:`spack-stack`. + the UFS Weather Model, and the :term:`UPP`. They are included in :term:`spack-stack` and :term:`HPC-Stack`. NEMS The NOAA Environmental Modeling System is a common modeling framework whose purpose is @@ -164,7 +167,7 @@ Glossary The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. spack-stack - The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. + The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. Suite Definition File (SDF) An external file containing information about the diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 7e19dca68a..fbf767c263 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -61,11 +61,14 @@ There are three types of files needed to execute a run: Information on the first two types of file appears in detail below for each component model. Information on Model Configuration files can be viewed in :numref:`Section %s `. -.. _atm-io: +.. _atm-in: ------- ATM ------- + +.. _atm-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -129,6 +132,8 @@ The static input files for global configurations are listed and described in :nu * - solarconstant_noaa_an.txt - External solar constant data table +.. _atm-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -194,9 +199,14 @@ The input files containing grid information and the initial conditions for globa - Surface properties for grid tile 7 - ✔ +.. _mom-in: + ------- MOM6 ------- + +.. _mom-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -240,8 +250,10 @@ The static input files for global configurations are listed and described in :nu - climatological 2-d background harmonic viscosities - 1.00 +.. _mom-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files +Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. @@ -309,9 +321,14 @@ The input files containing grid information and the initial conditions for globa - 1.00, 0.50, 0.25 - ✔ +.. _hycom-in: + ------- HYCOM ------- + +.. _hycom-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -391,6 +408,8 @@ Static input files are listed and described in :numref:`Table %s `__. +.. _cdeps-in: + ------- CDEPS ------- + +.. _cdeps-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ No fix files are required for CDEPS. +.. _cdeps-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -751,6 +791,25 @@ The input files containing grid information and the time-varying forcing files f - ERA5 forcing file for year YYYY and month MM - ✔ +.. note:: + + Users can find atmospheric forcing files for use with the land (:ref:`LND `) component in the `Land Data Assimilation (DA) data bucket `__. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `__) dataset. + + .. code-block:: console + + clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc + fv1.9x2.5_141008_ESMFmesh.nc + topodata_0.9x1.25_USGS_070110_stream_c151201.nc + topodata_0.9x1.SCRIP.210520_ESMFmesh.nc + + See the :ref:`Land DA User's Guide ` or the :ref:`WM LND Input ` section of this page for more information on files used in land configurations of the UFS WM. + **Data Ocean** .. _CDEPS_FilesOCN: @@ -789,9 +848,14 @@ The input files containing grid information and the time-varying forcing files f - GHRSST forcing file for year YYYY, month MM and day DD - ✔ +.. _gocart-in: + ------- GOCART ------- + +.. _gocart-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -886,7 +950,9 @@ The static input files when using climatology (MERRA2) are listed and described - Sea Salt optical look-up table for MERRA2 * - Optics_SU.dat - Sulfate optical look-up table for MERRA2 - + +.. _gocart-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -895,9 +961,14 @@ Running GOCART in UFS does not require aerosol initial conditions, as aerosol mo The aerosol initial input currently read by GOCART is the same format as the UFSAtm initial input data format of ``gfs_data_tile[1-6].nc`` in :numref:`Table %s `, so the aerosol initial conditions should be combined with the meteorological initial conditions as one initial input file. There are many tools available for this purpose. The `UFS_UTILS `__ preprocessing utilities provide a solution for this within the `Global Workflow `__. +.. _aqm-in: + -------------- AQM (CMAQ) -------------- + +.. _aqm-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -948,20 +1019,20 @@ AQM inputs defined in ``aqm.rc`` are listed and described in :numref:`Table %s < * - Hourly_Emissions_regrid_rrfs_13km_20190801_t12z_h72.nc - File Emissions File -.. _lnd-io: +.. _lnd-in: ------- LND ------- -LND component datasets are available from the Land Data Assimilation (DA) System Data Bucket and can be retrieved using a ``wget`` command: +LND component datasets are available from the `Land Data Assimilation (DA) System data bucket `__ and can be retrieved using a ``wget`` command: .. code-block:: console - wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/current_land_da_release_data/landda-test-inps.tar.gz - tar xvfz landda-test-inps.tar.gz + wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/current_land_da_release_data/v1.2.0/Landdav1.2.0_input_data.tar.gz + tar xvfz Landdav1.2.0_input_data.tar.gz -These files will be untarred into an ``inputs`` directory if the user does not specify a different name. They include data for Jan 1-2, 2016 with restarts available for Jan. 3-4, 2016. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. +These files will be untarred into an ``inputs`` directory if the user does not specify a different name. They include data for Dec. 21, 2019. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. .. _LndInputFiles: @@ -969,50 +1040,73 @@ These files will be untarred into an ``inputs`` directory if the user does not s :widths: 30 60 10 :header-rows: 1 - * - Filename + * - Filename(s) - Description - File Type - * - ufs-land_C96_static_fields.nc - - Static file that includes information on location, time, soil layers, and fixed (invariant) experiment parameters. - - Fix/static file - * - ufs-land_C96_init_fields_1hr.nc - - Initial conditions file that includes the initial state variables that are required for the UFS land snow DA to begin a cycling run. + * - ufs-land_C96_init_fields.tile*.nc + - Initial conditions files for each tile; the files include the initial state variables that are required for the UFS land snow DA to begin a cycling run. ``*`` stands for the grid tile number [1-6]. - Initial conditions - * - C96_grid.tileN.nc - - C96 grid information for tiles 1-6, where N is the grid tile number [1-6]. + * - C96.maximum_snow_albedo.tile*.nc + + C96.slope_type.tile*.nc + + C96.soil_type.tile*.nc + + C96.soil_color.tile*.nc + + C96.substrate_temperature.tile*.nc + + C96.vegetation_greenness.tile*.nc + + C96.vegetation_type.tile*.nc + + oro_C96.mx100.tile*.nc + - Tiled static files that contain information on maximum snow albedo, slope type, soil color and type, substrate temperature, vegetation greenness and type, and orography (grid and land mask information). ``*`` stands for the grid tile number [1-6]. + - Static/fixed files + * - grid_spec.nc + - Contains information on the mosaic grid - Grid - * - C96_oro_data.tileN.nc / oro_C96.mx100.tileN.nc - - Orography files that contain grid and land mask information, where N is the grid tile number [1-6]. ``mx100`` refers to the ocean resolution (100=1º). + * - C96_grid.tile*.nc + - C96 grid information for tiles 1-6, where ``*`` is the grid tile number [1-6]. - Grid - * - ufs-land.namelist.gdas - - Land component model configuration (namelist) file - - Model configuration + * - C96_oro_data.tile*.nc / oro_C96.mx100.tileN.nc + - Orography files that contain grid and land mask information, where ``*`` is the grid tile number [1-6]. ``mx100`` refers to the ocean resolution (100=1º). + - Grid + * - See :ref:`CDEPS ` for information on atmospheric forcing files. + - Atmospheric forcing + - CDEPS * - ghcn_snwd_ioda_YYYYMMDD.nc - - Snow depth data assimilation files + - GHCN snow depth data assimilation files - DA - * - C96_GDAS_forcing_YYYY-MM-DD.nc - - GDAS forcing files - - Forcing - * - ufs_land_restart.2015-09-01_18-00-00.nc - - Restart file - - Restart - * - ufs_land_restart.2016-01-01_18-00-00.nc + * - ufs_land_restart.YYYY-MM-DD_HH-mm-SS.nc - Restart file - Restart +.. _lnd-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The static file (listed in :numref:`Table %s `) includes specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. +The static files (listed in :numref:`Table %s `) include specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. -The static file is available in the ``inputs`` data directory at the following path: +The following static files are available in the ``inputs/UFS_WM/FV3_fix_tiled/C96/`` data directory (downloaded :ref:`above `): .. code-block:: - inputs/forcing/gdas/static/ufs-land_C96_static_fields.nc + C96.maximum_snow_albedo.tile*.nc + C96.slope_type.tile*.nc + C96.soil_type.tile*.nc + C96.soil_color.tile*.nc + C96.substrate_temperature.tile*.nc + C96.vegetation_greenness.tile*.nc + C96.vegetation_type.tile*.nc + oro_C96.mx100.tile*.nc + +where ``*`` refers to the tile number (1-6). +Details on the configuration variables included in this file are available in the :ref:`Land DA documentation `. -Details on the configuration variables included in this file are available from the :ref:`Land DA documentation `. +.. _lnd-grid-ic-files: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files @@ -1021,18 +1115,26 @@ Grid Description and Initial Condition Files The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. The initial conditions file includes the initial state variables that are required for the UFS land snow DA to begin a cycling run. The data must be provided in :term:`netCDF` format. - -The initial conditions file is available in the ``inputs`` data directory (downloaded :ref:`above `) at the following path: +The initial conditions file is available in the ``inputs`` data directory (downloaded :ref:`above `) at the following path: .. code-block:: - inputs/forcing/GDAS/init/ufs-land_C96_init_fields_1hr.nc + inputs/UFS_WM/NOAHMP_IC/ufs-land_C96_init_fields.tile*.nc + +Grid files are available in the ``inputs/UFS_WM/FV3_input_data/INPUT`` directory: + +.. code-block:: + + C96_grid.tile*.nc + grid_spec.nc # aka C96.mosaic.nc + +The ``C96_grid.tile*.nc`` files contain grid information for tiles 1-6 at C96 grid resolution. The ``grid_spec.nc`` file contains information on the mosaic grid. ^^^^^^^^^^^^^^^^^^^^ Additional Files ^^^^^^^^^^^^^^^^^^^^ -The LND component uses a model configuration namelist file as well as atmospheric forcing files, data assimilation files, and restart files, which are also listed in :numref:`Table %s `. +The LND component uses atmospheric forcing files, data assimilation files, and restart files, which are also listed in :numref:`Table %s `. .. _model-config-files: @@ -1045,7 +1147,7 @@ The configuration files used by the UFS Weather Model are listed here and descri * ``diag_table`` * ``field_table`` * ``model_configure`` - * ``nems.configure`` + * ``ufs.configure`` * ``suite_[suite_name].xml`` (used only at build time) * ``datm.streams`` (used by CDEPS) * ``datm_in`` (used by CDEPS) @@ -1278,6 +1380,8 @@ More information on the content of this file can be found in ``FMS/diag_manager/ .. note:: None of the lines in the ``diag_table`` can span multiple lines. +.. _field_tableFile: + ----------------------- ``field_table`` file ----------------------- @@ -1404,10 +1508,6 @@ shows the following parameters that can be set in ``model_configure`` at run-tim - atmosphere time step in second - integer - 1800 (for C96) - * - output_1st_tstep_rst - - output first time step history file after restart - - logical - - .false. * - restart_interval - frequency to output restart file or forecast hours to write out restart file - integer @@ -1452,22 +1552,6 @@ shows the following parameters that can be set in ``model_configure`` at run-tim - j-dimension for output grid - integer - 190 - * - nfhout - - history file output frequency - - integer - - 3 - * - nfhmax_hf - - forecast length of high history file - - integer - - 0 (0:no high frequency output) - * - nfhout_hf - - high history file output frequency - - integer - - 1 - * - nsout - - output frequency of number of time step - - integer - - -1 (negative: turn off the option, 1: output history file at every time step) * - output_fh - history file output forecast hours or history file output frequency if the second elelment is -1 - real @@ -1515,46 +1599,64 @@ are not usually changed. - integer - 0 -.. _nems-conf: +.. _ufs-conf: ------------------------ -``nems.configure`` file +``ufs.configure`` file ------------------------ This file contains information about the various NEMS components and their run sequence. The active components for a particular model configuration are given in the *EARTH_component_list*. For each active component, the model name and compute tasks assigned to the component are given. A specific component might also require additional configuration information to be present. The ``runSeq`` describes the order and time intervals over which one or more component models integrate in time. Additional *attributes*, if present, provide additional configuration of the model components when coupled with the CMEPS mediator. -For the ATM application, since it consists of a single component, the ``nems.configure`` is simple and does not need to be changed. +For the ATM application, since it consists of a single component, the ``ufs.configure`` is simple and does not need to be changed. A sample of the file contents is shown below: .. code-block:: console - EARTH_component_list: ATM - ATM_model: fv3 - runSeq:: - ATM - :: - -However, ``nems.configure`` files for other configurations of the Weather Model are more complex. A full set of ``nems.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``nems.configure.*.IN``. A number of samples are available below: - - * :doc:`ATMAQ ` configuration - * :doc:`S2S ` (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) - * :doc:`S2SW ` (fully coupled ``S2SW`` configuration) - * :doc:`S2SWA ` (coupled GOCART in the S2SAW configuration) - * :doc:`NG-GODAS ` (coupled NG-GODAS configuration) - * :doc:`HAFS ` (coupled HAFS configuration) - * :doc:`LND ` (ATML configuration) - - * For more HAFS, HAFSW, and HAFS-ALL configurations please see the following ``nems.configure`` templates: - - * `HAFS ATM-OCN `_ - * `HAFS ATM-WAV `_ - * `HAFS ATM-OCN-WAV `_ - * `HAFS ATM-DOCN `_ + # ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + globalResourceControl: true + + # EARTH # + EARTH_component_list: ATM + EARTH_attributes:: + Verbosity = 0 + :: + + # ATM # + ATM_model: @[atm_model] + ATM_petlist_bounds: @[atm_petlist_bounds] + ATM_omp_num_threads: @[atm_omp_num_threads] + ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + :: + + # Run Sequence # + runSeq:: + ATM + :: + +However, ``ufs.configure`` files for other configurations of the Weather Model are more complex. A full set of ``ufs.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``ufs.configure.*.IN``. A number of samples are available below: + + * `ATMAQ `__ configuration + * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) + * `S2SW `__ (fully coupled ``S2SW`` configuration) + * `S2SWA `__ (coupled GOCART in the S2SAW configuration) + * `ATM-LND `__ (ATML configuration) + + * For more HAFS, HAFSW, and HAFS-ALL configurations please see the following ``ufs.configure`` templates: + + * `HAFS ATM-OCN `__ + * `HAFS ATM-WAV `__ + * `HAFS ATM-OCN-WAV `__ + * `HAFS ATM-DOCN `__ .. note:: The ``aoflux_grid`` option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are ``xgrid`` (exchange grid), ``agrid`` (atmosphere model grid) and ``ogrid`` (ocean model grid). .. note:: The ``aoflux_code`` option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are ``cesm`` and ``ccpp``. If ``ccpp`` is selected then the suite file provided in the ``aoflux_ccpp_suite`` option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. +.. _SDF-file: + --------------------------------------- The Suite Definition File (SDF) File --------------------------------------- @@ -1573,6 +1675,8 @@ There are four SDFs currently supported for the UFS Short Range Weather App conf Detailed descriptions of the supported suites can be found with the `CCPP v6.0.0 Scientific Documentation `__. +.. _datm.streams-file: + --------------------------------------- ``datm.streams`` --------------------------------------- @@ -1633,6 +1737,7 @@ A sample of the data stream file is shown below: stream_data_files01: DATM_INPUT/cfsr.201110.nc stream_data_variables01: "slmsksfc Sa_mask" "DSWRF Faxa_swdn" "DLWRF Faxa_lwdn" "vbdsf_ave Faxa_swvdr" "vddsf_ave Faxa_swvdf" "nbdsf_ave Faxa_swndr" "nddsf_ave Faxa_swndf" "u10m Sa_u10m" "v10m Sa_v10m" "hgt_hyblev1 Sa_z" "psurf Sa_pslv" "tmp_hyblev1 Sa_tbot" "spfh_hyblev1 Sa_shum" "ugrd_hyblev1 Sa_u" "vgrd_hyblev1 Sa_v" "q2m Sa_q2m" "t2m Sa_t2m" "pres_hyblev1 Sa_pbot" "precp Faxa_rain" "fprecp Faxa_snow" +.. _datm_inFile: --------------------------------------- ``datm_in`` @@ -1709,8 +1814,7 @@ The atmosphere model reads many parameters from a Fortran namelist file, named ` * The `FV3 Dynamical Core Technical Documentation `__ describes some of the other namelist records (dynamics, grid, etc). * The namelist section ``&interpolator_nml`` is not used in this release, and any modifications to it will have no effect on the model results. -.. Last I saw, the Stochastic Physics release/public-v3 was more up-to-date than latest... - +.. _fms_io_nml_section: ^^^^^^^^^^^^^^^^^^ fms_io_nml @@ -1797,6 +1901,7 @@ This release of the UFS Weather Model sets the following variables in the ``&fms max_files_w = 100 / +.. _namsfc_section: ^^^^^^^^^^^^^^^^^^ ``namsfc`` @@ -1808,8 +1913,7 @@ The variables used in ``&namsfc`` to set the filenames are described in :numref: .. _namsfc_nml: -.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of - static datasets.* +.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of static datasets.* :widths: 15 40 15 20 :header-rows: 1 @@ -1918,6 +2022,8 @@ A sample subset of this namelist is shown below: Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/sfcsub.F`` file. +.. _atmos_model_nml_section: + ^^^^^^^^^^^^^^^^^^^^ ``atmos_model_nml`` ^^^^^^^^^^^^^^^^^^^^ @@ -1982,6 +2088,8 @@ A sample of this namelist is shown below: The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. +.. _gfs_physics_nml_section: + ^^^^^^^^^^^^^^^^^^ gfs_physics_nml ^^^^^^^^^^^^^^^^^^ @@ -2027,6 +2135,8 @@ file. Output files ============= +.. _fv3atm-out: + ------- FV3Atm ------- @@ -2054,6 +2164,8 @@ files (controlled by variable print_esmf in the ``model_configure`` file), calle Additional output files include: ``nemsusage.xml``, a timing log file; `time_stamp.out`, contains the model init time; ``RESTART/*nc``, files needed for restart runs. +.. _mom-out: + ------- MOM6 ------- @@ -2094,6 +2206,8 @@ A brief example of the diag_table is shown below. ``"..."`` denotes where lines "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 ... +.. _hycom-out: + ------- HYCOM ------- @@ -2138,6 +2252,8 @@ HYCOM outpus multiple datasets. These datasets contain both dot-a (.a), dot-b (. * - restart_out.(a,b) - HYCOM restart files +.. _cice-out: + ------- CICE6 ------- @@ -2172,7 +2288,9 @@ on the monthly, daily, hourly, yearly or timestep intervals set by the *histfreq *0* for both monthly and daily frequencies and neither yearly nor per-timestep output is requested, only 6-hour mean history files will be produced. -Further details of the configuration of CICE model output can be found in the CICE documentation `3.1.4 `_ +Further details of the configuration of CICE model output can be found in the CICE documentation `Section 3.1.4 `__. + +.. _ww3-out: ------- WW3 @@ -2180,19 +2298,22 @@ WW3 The run directory includes WW3 binary outputs for the gridded outputs (``YYYYMMDD.HHMMSS.out_grd.``), point outputs (``YYYYMMDD.HHMMSS.out_pnt.points``) and restart files (``YYYYMMDD.HHMMSS.restart.``). +.. _cmeps-out: + ------- CMEPS ------- The CMEPS mediator writes general information about the run-time configuration to the file ``mediator.log`` in the model run directory. Optionally, the CMEPS mediator can be configured to write history files for the purposes of examining the field exchanges at various points in the model run sequence. +.. _FMS-info: + ============================================================== Additional Information about the FMS Diagnostic Manager ============================================================== The FMS (Flexible Modeling System) diagnostic manager (``FMS/diag_manager``) manages the output for the ATM and, if present, the MOM6 component in the UFS Weather Model. It is configured using the ``diag_table`` file. Data can be written at any number of sampling and/or averaging intervals -specified at run-time. More information about the FMS diagnostic manager can be found at: -https://data1.gfdl.noaa.gov/summer-school/Lectures/July16/03_Seth1_DiagManager.pdf +specified at run-time. .. _DiagManagerNML: @@ -2201,8 +2322,7 @@ Diagnostic Manager Namelist ------------------------------ The ``diag_manager_nml`` namelist contains values to control the behavior of the diagnostic manager. Some of the more common namelist options are described in :numref:`Table %s `. See -``FMS/diag_manager/diag_manager.F90`` for the complete list or view the FMS documentation -`here `__ for additional information. +``FMS/diag_manager/diag_manager.F90`` for the complete list or view the `FMS documentation `__ for additional information. .. COMMENT: Is it worth linking to the FMS docs? WM just deals with the namelist file... @@ -2261,6 +2381,8 @@ This release of the UFS Weather Model uses the following namelist: prepend_date = .false. / +.. _write-component-info: + ============================================================== Additional Information about the Write Component ============================================================== diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index 291116bef0..b2d86b08c1 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -7,9 +7,8 @@ Introduction The Unified Forecast System (:term:`UFS`) Weather Model (:term:`WM`) is a prognostic model that can be used for short- and medium-range research and operational forecasts, as exemplified by its use in the operational Global Forecast System (GFS) of the National Oceanic and -Atmospheric Administration (NOAA). The UFS WM v2.0.0 is the latest public release of this -software and represents a snapshot of a continuously evolving system undergoing open -development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/. +Atmospheric Administration (NOAA). In addition to its use in NOAA's operational forecast systems, the UFS WM is the atmospheric model used in public UFS application releases, such as the Short-Range Weather (SRW) Application v2.2.0 release. These releases represent a snapshot of a continuously evolving system undergoing open +development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/ and on the Earth Prediction Innovation Center (EPIC) website at https://epic.noaa.gov/get-code/ufs-weather-model/. Key architectural elements of the UFS WM, along with links to external detailed documentation for those elements, are listed below: @@ -22,10 +21,10 @@ for those elements, are listed below: * `Stochastic physics `__ schemes apply randomized perturbations to the physical tendencies, or physical parameters, of a model in order to compensate for model uncertainty. They include the Stochastic Kinetic Backscatter Scheme (SKEBS), the Stochastically Perturbed Parameterization Tendencies (SPPT) scheme, the perturbed boundary layer humidity (SHUM) scheme, the Stochastically Perturbed Parameterizations (SPP) scheme, Land Surface Model SPP (LSM-SPP), and the cellular automata method (:cite:t:`BengtssonEtAl2020`). - * The libraries needed to build the system, such as: + * The libraries needed to build the system, which are bundled together via `spack-stack `__ and include: * `National Centers for Environmental Prediction (NCEP) Libraries `__ - * `Earth System Modeling Framework (ESMF) `__ + * `Earth System Modeling Framework (ESMF) `__ * `External libraries `__ * The build system used to compile the code and generate the executable. @@ -34,9 +33,9 @@ for those elements, are listed below: .. COMMENT: Should NCEP, ESMF, and external libraries be grouped as part of HPC-Stack? Or is this a different set of libraries? -The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v2.0.0 release (June 2022) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v2.0.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. +The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v2.2.0 release (October 2023) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v2.2.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. -The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Hera system, the National Center for Atmospheric Research (:term:`NCAR`) Cheyenne system, the National Science Foundation Stampede system, and Mac laptops. +The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Hera system, the National Center for Atmospheric Research (:term:`NCAR`) Derecho system, the National Science Foundation Stampede system, and Mac laptops. .. note:: @@ -48,7 +47,7 @@ The UFS WM code is portable and can be used with Linux or Mac operating systems Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `__ to make sure no inadvertent changes to the results have been introduced during the development process. -Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. +Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. This WM User's Guide is organized as follows: @@ -58,6 +57,8 @@ This WM User's Guide is organized as follows: * :numref:`Chapter %s ` (Data: Input, Model Configuration, and Output Files) lists the model inputs and outputs and has a description of the key files. + * :numref:`Chapter %s ` (Configurations) lists the currently supported configurations for the UFS WM. + * :numref:`Chapter %s ` (Configuration Parameters) lists the purpose and valid values for various configuration parameters. * :numref:`Chapter %s ` (Automated Testing) describes UFS WM automated testing options. @@ -66,4 +67,4 @@ This WM User's Guide is organized as follows: Finally, :numref:`Chapters %s ` and :numref:`%s ` contain a list of acronyms and a glossary, respectively. -.. bibliography:: references.bib \ No newline at end of file +.. bibliography:: references.bib diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index 3ea9ae9025..546afb385f 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -41,6 +41,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + 'sphinx_rtd_theme', 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', @@ -73,7 +74,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -83,6 +84,15 @@ # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' +# Avoid a 403 Forbidden error when accessing certain links (e.g., noaa.gov) +user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" + +# Ignore anchor tags for links that show Not Found even when they exist. +linkcheck_anchors_ignore = [r"L\d*", + ] +# Ignore working links that cause a linkcheck 403 error. +linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', + ] # -- Options for HTML output ------------------------------------------------- @@ -99,6 +109,7 @@ # # html_theme_options = {} html_theme_options = {"body_max_width": "none"} +html_logo="https://github.com/ufs-community/ufs/wiki/images/ufs-epic-logo.png" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib index 92a6d96b98..0015b43304 100644 --- a/doc/UsersGuide/source/references.bib +++ b/doc/UsersGuide/source/references.bib @@ -16,6 +16,6 @@ @article{BengtssonEtAl2020 title={A Stochastic Parameterization of Organized Tropical Convection Using Cellular Automata for Global Forecasts in NOAA's Unified Forecast System}, author={L. Bengtsson and J. Dias and S. Tulich and M. Gehne and J. Bao}, journal={Journal of Advances in Modeling Earth Systems}, - url={https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002260}, + url={https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020MS002260}, year={2020}, } diff --git a/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst b/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst deleted file mode 100644 index 006a275364..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst +++ /dev/null @@ -1,38 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``ATMAQ`` WM Configuration -******************************************************************* - -.. code-block:: console - - EARTH_component_list: ATM AQM - EARTH_attributes:: - Verbosity = 0 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 271 - ATM_attributes:: - Verbosity = 0 - :: - - # AQM # - AQM_model: aqm - AQM_petlist_bounds: 0 271 - AQM_attributes:: - Verbosity = 0 - :: - - # Run Sequence # - runSeq:: - @180 - ATM phase1 - ATM -> AQM - AQM - AQM -> ATM - ATM phase2 - @ - :: - diff --git a/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst b/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst deleted file mode 100644 index c154e51311..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst +++ /dev/null @@ -1,130 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``LND`` WM Configuration -******************************************************************* - -.. code-block:: console - - # ESMF # - logKindFlag: ESMF_LOGKIND_MULTI - globalResourceControl: true - - # EARTH # - EARTH_component_list: MED ATM LND - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: @[med_model] - MED_petlist_bounds: @[med_petlist_bounds] - MED_omp_num_threads: @[med_omp_num_threads] - MED_attributes:: - Verbosity = 1 - Diagnostic = 0 - ATM_model = @[atm_model] - LND_model = @[lnd_model] - MED_model = cmeps - history_n = 6 - history_option = nhours - history_ymd = -999 - coupling_mode = @[CPLMODE] - history_tile_lnd = 96 - history_n_lnd_inst = 6 - history_option_lnd_inst = nhours - :: - - # ATM # - ATM_model: @[atm_model] - ATM_petlist_bounds: @[atm_petlist_bounds] - ATM_omp_num_threads: @[atm_omp_num_threads] - ATM_attributes:: - Verbosity = 0 - Diagnostic = 0 - :: - - # LND # - LND_model: @[lnd_model] - LND_petlist_bounds: @[lnd_petlist_bounds] - LND_omp_num_threads: @[lnd_omp_num_threads] - LND_attributes:: - Verbosity = 1 - Diagnostic = 0 - mosaic_file = @[mosaic_file] - input_dir = INPUT/ - ic_type = @[lnd_ic_type] - layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs - num_soil_levels = 4 - forcing_height = 10 - soil_level_thickness = 0.10:0.30:0.60:1.00 - soil_level_nodes = 0.05:0.25:0.70:1.50 - dynamic_vegetation_option = 4 - canopy_stomatal_resistance_option = 2 - soil_wetness_option = 1 - runoff_option = 1 - surface_exchange_option = 3 - supercooled_soilwater_option = 1 - frozen_soil_adjust_option = 1 - radiative_transfer_option = 3 - snow_albedo_option = 1 - precip_partition_option = 4 - soil_temp_lower_bdy_option = 2 - soil_temp_time_scheme_option = 3 - surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 - glacier_option = 1 - surface_thermal_roughness_option = 2 - output_freq = 10800 - calc_snet = @[CALC_SNET] - :: - - # cold - runSeq:: - @@[coupling_interval_sec] - MED med_phases_prep_atm - MED -> ATM :remapMethod=redist - ATM - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - MED med_phases_prep_lnd - MED -> LND :remapMethod=redist - LND - LND -> MED :remapMethod=redist - MED med_phases_post_lnd - MED med_phases_restart_write - MED med_phases_history_write - @ - :: - - # Other Attributes # - DRIVER_attributes:: - :: - - ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 2.5e-1 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - read_restart = @[READRESTART] - mediator_present = true - :: \ No newline at end of file diff --git a/doc/UsersGuide/source/samples/nems.configure.HAFS.rst b/doc/UsersGuide/source/samples/nems.configure.HAFS.rst deleted file mode 100644 index 92aeafcde1..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.HAFS.rst +++ /dev/null @@ -1,110 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``HAFS`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: ATM OCN MED - - # MED # - MED_model: cmeps - MED_petlist_bounds: 1340 1399 - MED_attributes:: - coupling_mode = hafs - system_type = ufs - normalization = none - merge_type = copy - ATM_model = fv3 - OCN_model = hycom - history_ymd = -999 - ScalarFieldCount = 0 - ScalarFieldIdxGridNX = 0 - ScalarFieldIdxGridNY = 0 - ScalarFieldName = cpl_scalars - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0000 1339 - ATM_attributes:: - Verbosity = 1 - Diagnostic = 0 - :: - - # OCN # - OCN_model: hycom - OCN_petlist_bounds: 1340 1399 - OCN_attributes:: - Verbosity = 1 - Diagnostic = 0 - cdf_impexp_freq = 3 - cpl_hour = 0 - cpl_min = 0 - cpl_sec = 360 - base_dtg = 2020082512 - merge_import = .true. - skip_first_import = .true. - hycom_arche_output = .false. - hyc_esmf_exp_output = .true. - hyc_esmf_imp_output = .true. - import_diagnostics = .false. - import_setting = flexible - hyc_impexp_file = nems.configure - espc_show_impexp_minmax = .true. - ocean_start_dtg = 43702.50000 - start_hour = 0 - start_min = 0 - start_sec = 0 - end_hour = 12 - end_min = 0 - end_sec = 0 - :: - - DRIVER_attributes:: - start_type = startup - :: - - ALLCOMP_attributes:: - mediator_read_restart = false - :: - - # CMEPS cold run sequence - - runSeq:: - @360 - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_prep_atm - MED med_phases_prep_ocn_accum - MED med_phases_prep_ocn_avg - MED -> ATM :remapMethod=redist - MED -> OCN :remapMethod=redist - ATM - OCN - @ - :: - - # HYCOM field coupling configuration (location set by hyc_impexp_file) - - ocn_export_fields:: - 'sst' 'sea_surface_temperature' 'K' - 'mask' 'ocean_mask' '1' - :: - - 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' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' - 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' - :: - - diff --git a/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst b/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst deleted file mode 100644 index d2e173dbbb..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst +++ /dev/null @@ -1,131 +0,0 @@ -:orphan: - -*********************************************************************** -Sample ``nems.configure`` File for the ``NG-GODAS`` WM Configuration -*********************************************************************** - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM OCN ICE - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 11 - Verbosity = 5 - dbug_flag = 5 - - :: - - # ATM # - ATM_model: datm - ATM_petlist_bounds: 0 11 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - mesh_atm = DATM_INPUT/cfsr_mesh.nc - diro = "." - logfile = atm.log - stop_n = 24 - stop_option = nhours - stop_ymd = -999 - write_restart_at_endofrun = .true. - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 12 27 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx100.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 28 39 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx100.nc - stop_n = 12 - stop_option = nhours - stop_ymd = -999 - :: - - # CMEPS concurrent warm run sequence - - runSeq:: - @3600 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @900 - MED med_phases_prep_ice - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_aofluxes_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - mediator_read_restart = false - :: - MED_attributes:: - ATM_model = datm - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_orig_data - :: - ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = DATM_CFSR - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - coldair_outbreak_mod = .false. - flds_wiso = .false. - flux_convergence = 0.0 - flux_max_iteration = 2 - ocn_surface_flux_scheme = 0 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 - :: - - - diff --git a/doc/UsersGuide/source/samples/nems.configure.S2S.rst b/doc/UsersGuide/source/samples/nems.configure.S2S.rst deleted file mode 100644 index 05d008c321..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2S.rst +++ /dev/null @@ -1,129 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2S`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM CHM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 143 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 149 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 150 269 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx025.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 270 317 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx025.nc - stop_n = 840 - stop_option = nhours - stop_ymd = -999 - :: - - # CMEPS warm run sequence - runSeq:: - @720 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @720 - MED med_phases_aofluxes_run - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - MED med_phases_history_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - :: - - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 3 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_frac_aoflux - history_tile_atm = 96 - aoflux_grid = 'xgrid' - aoflux_code = 'ccpp' - aoflux_ccpp_suite = 'FV3_sfc_ocean' - ccpp_restart_interval = -1 - ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' - ccpp_input_dir = 'INPUT/' - ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' - ccpp_nstf_name = 2,1,0,0,0 - ccpp_ini_read = true - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 1.0e-1 - stop_n = 840 - stop_option = nhours - stop_ymd = -999 - :: - -.. note:: The *aoflux_grid* option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are *xgrid* (exchange grid), *agrid* (atmosphere model grid) and *ogrid* (ocean model grid). - -.. note:: The *aoflux_code* option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are *cesm* and *ccpp*. If *ccpp* is selected then the suite file provided in the *aoflux_ccpp_suite* option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. - diff --git a/doc/UsersGuide/source/samples/nems.configure.S2SW.rst b/doc/UsersGuide/source/samples/nems.configure.S2SW.rst deleted file mode 100644 index 3f7aa34698..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2SW.rst +++ /dev/null @@ -1,103 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2SW`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 143 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 149 - ATM_attributes:: - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 150 179 - OCN_attributes:: - mesh_ocn = mesh.mx100.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 180 191 - ICE_attributes:: - mesh_ice = mesh.mx100.nc - :: - - # WAV # - WAV_model: ww3 - WAV_petlist_bounds: 192 395 - WAV_attributes:: - :: - - # CMEPS warm run sequence - runSeq:: - @3600 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 - OCN - @900 - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - WAV -> ATM :srcMaskValues=1 - ATM -> WAV - ICE -> WAV - ATM - ICE - WAV - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - @ - :: - - # CMEPS variables - - :: - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_orig - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 24 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - :: diff --git a/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst b/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst deleted file mode 100644 index e3a83199b9..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst +++ /dev/null @@ -1,140 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2SWA`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM CHM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 287 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 311 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - :: - - # CHM # - CHM_model: gocart - CHM_petlist_bounds: 0 287 - CHM_attributes:: - Verbosity = 0 - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 312 431 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx025.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 432 479 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx025.nc - stop_n = 6 - stop_option = nhours - stop_ymd = -999 - :: - - # WAV # - WAV_model: ww3 - WAV_petlist_bounds: 480 559 - WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - :: - - # CMEPS warm run sequence - runSeq:: - @1800 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 - OCN - @300 - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - WAV -> ATM :srcMaskValues=1 - ATM -> WAV - ICE -> WAV - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - WAV - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - :: - - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_frac - history_tile_atm = 384 - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 6 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 1.0e-1 - stop_n = 6 - stop_option = nhours - stop_ymd = -999 - :: - - diff --git a/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv b/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv new file mode 100644 index 0000000000..89eb311bb1 --- /dev/null +++ b/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv @@ -0,0 +1,66 @@ +Variable, ``export_fv3`` , ``export_rap_common``, ``export_rrfs_v1``, ``export_hrrr_conus13km`` +DATE (SYEAR-SMONTH-SDAY SHOUR:00:00), 2016-10-03 00:00:00, 2021-03-22 06:00:00, *2021-03-22 06:00:00*, 2021-05-12 16:00:00 +Forecast Length in hours (FHMAX), 24, *24*, *24*, 2 +CCPP_SUITE, None set (set in subsequent functions or test file), None set, FV3_RRFS_v1beta, FV3_HRRR +IMP_PHYSICS, 11, 8, *8*, 8 +DT_ATMOS, 1800, 300, *300*, 120 +OUTPUT_GRID, \"'cubed_sphere_grid'\", 'gaussian_grid', *'gaussian_grid'*, lambert_conformal +NTILES, 6, *6*, *6*, 1 +WRITE_DOPOST, .false., .true., *.true.*, .false. +NSTF_NAME, "2\,1\,1\,0\,5", "'2\,0\,0\,0\,0'", "*'2\,0\,0\,0\,0'*", "*'2\,0\,0\,0\,0'*" +IAER, 111, 5111, *5111*, 1011 +NPX, 97, *97*, *97*, 397 +NPY, 97, *97*, *97*, 233 +NPZ, 64, 127, *127*, 65 +NPZP, 65, 128, *128*, 66 +INPES, 3 (``$INPES_dflt`` --- set in machine section), *3*, *3*, 12 +JNPES, 8 (``$JNPES_dflt`` --- set in machine section), *8*, *8*, 12 +UFS_CONFIGURE, ufs.configure.atm.IN, *ufs.configure.atm.IN*, *ufs.configure.atm.IN*, *ufs.configure.atm.IN* +MODEL_CONFIGURE, model_configure.IN, *model_configure.IN*, *model_configure.IN*, model_configure_rrfs_conus13km.IN +DIAG_TABLE, diag_table_gfsv16, *diag_table_gfsv16*, diag_table_rap_noah, diag_table_hrrr +DIAG_TABLE_ADDITIONAL, Not set, Not set, Not set, diag_additional_rrfs_smoke +FIELD_TABLE, field_table_gfsv16, field_table_thompson_aero_tke, *field_table_thompson_aero_tke*, field_table_thompson_aero_tke_smoke +FV3_RUN, None set, control_run.IN, *control_run.IN*, rrfs_warm_run.IN +INPUT_NML, None set, rap.nml.IN, *rap.nml.IN*, rrfs_conus13km_hrrr.nml.IN +MAKE_NH, .true., *.true.*, *.true.*, .false. +NA_INIT, 1, *1*, *1*, 0 +LHEATSTRG, .true., .false., .false., .false. +SEDI_SEMI, .true., *.true.*, *.true.*, .false. +DECFL, 10, *10*, *10*, 8 +RRFS_SMOKE, .false., *.false.*, *.false.*, .true. +SEAS_OPT, 2, *2*, *2*, 0 +LKM, 0, *0*, *0*, 1 +SFCLAY_COMPUTE_FLUX, .false., *.false.*, *.false.*, .true. +ICLIQ_SW, 1, *1*, *1*, 2 +IOVR, 1, *1*, *1*, 3 +KICE, 2, 9, *9*, 9 +EXTERNAL_IC, .true., *.true.*, *.true.*, .false. +NGGPS_IC, .true., *.true.*, *.true.*, .false. +MOUNTAIN, .false., *.false.*, *.false.*, .true. +WARM_START, .false., *.false.*, *.false.*, .true. +RES_LATLON_DYNAMICS, \"''\", *\"''\"*, *\"''\"*, \"'fv3_increment.nc'\" +FHZERO, 6, *6*, *6*, 1.0 +PRINT_DIFF_PGR, .false., *.false.*, *.false.*, .true. +FHCYC, 24, *24*, *24*, 0.0 +CNVCLD, .true., *.true.*, *.true.*, .false. +CDMBWD, "'0.14\,1.8\,1.0\,1.0' (``${CDMBWD_c96}``)", "*'0.14\,1.8\,1.0\,1.0\'*", "*'0.14\,1.8\,1.0\,1.0\'*", "'3.5\,1.0'" +GWD_OPT, 1, *1*, *1*, 3 +DO_GSL_DRAG_LS_BL, .false., *.false.*, *.false.*, .true. +DO_GSL_DRAG_SS, .false., *.false.*, *.false.*, .true. +DO_GSL_DRAG_TOFD, .false., *.false.*, *.false.*, .true. +DNATS, 1, 0, *0*, 0 +DO_SAT_ADJ, .true., .false., *.false.*, .false. +IALB , 1, 2, *2*, 2 +IEMS, 1, 2, *2*, 2 +HYBEDMF, .true., .false., *.false.*, .false. +DO_MYNNEDMF, .false., .true., *.true.*, .true. +DO_MYNNSFCLAY, .false., .true., *.true.*, .true. +DO_MYJPBL, .false., *.false.*, *.false.*, .true. +DO_DEEP, .true., *.true.*, .false., .false. +SHAL_CNV, .true., *.true.*, .false., .false. +IMFSHALCNV, 2, *2*, -1, -1 +IMFDEEPCNV, 2, *2*, -1, -1 +LSM, 1, *1*, 2, 3 +LSOIL_LSM, 4, *4*, 4, 9 +RESTART_INTERVAL, 0, *0*, *0*, 1 +OUTPUT_FH, \"12 -1\", *\"12 -1\"*, *\"12 -1\"*, *\"12 -1\"* \ No newline at end of file diff --git a/doc/UsersGuide/source/tables/rrfs-rts.csv b/doc/UsersGuide/source/tables/rrfs-rts.csv new file mode 100644 index 0000000000..df89f780fe --- /dev/null +++ b/doc/UsersGuide/source/tables/rrfs-rts.csv @@ -0,0 +1,11 @@ +Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|,Description,Default Settings,Physics |nbsp| Parameters |nbsp| (see |nbsp| `namelist options `__ for variable definitions),Fcst Length (hours),FIELD_TABLE,Other +`rrfs_v1beta `__,Compare RRFS_v1beta results with previous trunk version,``export_rrfs_v1``, , , ,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' +`rrfs_v1beta_debug `__,Compare RRFS_v1beta debug results with previous trunk version,``export_rrfs_v1``,,1, ,OUTPUT_FH="0 1" +`rrfs_v1nssl `__,Compare RRFS_v1nssl results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_CCN_ON; NSSL_HAIL_ON; NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=7, ,field_table_nssl_tke,RESTART_INTERVAL="6 -1"\; OUTPUT_FH='0 09 12' +`rrfs_v1nssl_nohailnoccn `__,Compare RRFS_v1nssl_nohailnoccn results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** NSSL_CCN_ON; NSSL_HAIL_ON; LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=6,,field_table_nssl_nohailnoccn_tke,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' +`conus13km_control `__,"HRRR physics on 13km domain, control",``export_hrrr_conus13km``, , , ,RESTART_INTERVAL=1; QUILTING_RESTART=.false. +`conus13km_debug `__,"HRRR physics on 13km domain, debug run",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; QUILTING_RESTART=.false. +`conus13km_restart_mismatch `__,"HRRR physics on 13km domain, restart run",``export_hrrr_conus13km``,,,,FHROT=1;RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000"; RRFS_RESTART=YES; QUILTING_RESTART=.false. +`conus13km_2threads `__,"HRRR physics on 13km domain, two threads",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; atm_omp_num_threads=2; QUILTING_RESTART=.false.; WRTTASK_PER_GROUP=6 +`conus13km_debug_2threads `__,"HRRR physics on 13km domain, debug run with threads",``export_hrrr_conus13km``,,1, ,RESTART_INTERVAL=1; atm_omp_num_threads=2; WRTTASK_PER_GROUP=6; QUILTING_RESTART=.false. +`conus13km_radar_tten_debug `__,"HRRR physics on 13km domain, debug, with radar-derived temperature tendencies",``export_hrrr_conus13km``,,1,,"RESTART_INTERVAL=1; FH_DFI_RADAR='0.0\,0.25\,0.50\,0.75\,1.0'; QUILTING_RESTART=.false." \ No newline at end of file diff --git a/driver/UFS.F90 b/driver/UFS.F90 index a180578883..26501a124b 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -79,6 +79,9 @@ PROGRAM UFS TYPE(ESMF_Config) :: CF_MAIN !<-- The Configure object ! CHARACTER(ESMF_MAXSTR) :: MESSAGE_CHECK +! + CHARACTER(len=MPI_MAX_LIBRARY_VERSION_STRING) :: library_version + INTEGER :: resultlen ! INTEGER :: RC, RC_USER !<-- The running error signal ! @@ -91,7 +94,7 @@ PROGRAM UFS !*** Initialize the ESMF framework. !----------------------------------------------------------------------- ! - CALL ESMF_Initialize(configFileName="nems.configure" & !<-- top level configuration + CALL ESMF_Initialize(configFileName="ufs.configure" & !<-- top level configuration ,defaultCalKind =ESMF_CALKIND_GREGORIAN & !<-- Set up the default calendar. ,VM =VM & !<-- The ESMF Virtual Machine ,rc =RC) @@ -122,7 +125,12 @@ PROGRAM UFS !*** Print subversion version and other status information. !----------------------------------------------------------------------- ! - if (mype==0) call w3tagb('ufs ',0000,0000,0000,'np23 ') + if (mype == 0) then + call w3tagb('ufs-weather-model',0,0,0,'np23') + call MPI_Get_library_version(library_version, resultlen, rc) + write(*,'(A,A)') 'MPI Library = ', library_version(1:resultlen) + write(*,'(A,I0,A,I0)')'MPI Version = ', mpi_version,'.',mpi_subversion + endif ! !----------------------------------------------------------------------- !*** Set up the default log. diff --git a/driver/UFSDriver.F90 b/driver/UFSDriver.F90 index e94b792f4f..53c51d818b 100644 --- a/driver/UFSDriver.F90 +++ b/driver/UFSDriver.F90 @@ -61,6 +61,9 @@ MODULE UFSDriver #endif #ifdef FRONT_CDEPS_DOCN use FRONT_CDEPS_DOCN, only: DOCN_SS => SetServices +#endif +#ifdef FRONT_CDEPS_DICE + use FRONT_CDEPS_DICE, only: DICE_SS => SetServices #endif ! - Handle build time ICE options: #ifdef FRONT_CICE6 @@ -199,13 +202,13 @@ SUBROUTINE UFSDriver_SS(driver,RC) ! create, open, and set the config config = ESMF_ConfigCreate(rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call ESMF_ConfigLoadFile(config, "nems.configure", rc=RC) + call ESMF_ConfigLoadFile(config, "ufs.configure", rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return call ESMF_GridCompSet(driver, config=config, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - ! Load the required entries from the fd_nems.yaml file - call NUOPC_FieldDictionarySetup("fd_nems.yaml", rc=rc) + ! Load the required entries from the fd_ufs.yaml file + call NUOPC_FieldDictionarySetup("fd_ufs.yaml", rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return !----------------------------------------------------------------------- @@ -410,6 +413,23 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_CDEPS_DICE + if (trim(model) == "dice") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg,line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif + call NUOPC_DriverAddComp(driver, trim(prefix), DICE_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_CICE6 if (trim(model) == "cice6") then call NUOPC_DriverAddComp(driver, trim(prefix), CICE6_SS, & diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index b1ab064d25..4257dc8b3f 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,30 +2,19 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) +load("stack-intel") +load("stack-cray-mpich") -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" -hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" -load(pathJoin("hpc", hpc_ver)) -load(pathJoin("hpc-intel", hpc_intel_ver)) -load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) +--Avoid production installations; use spack-stack only: +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/compiler/intel/19.1.3.304") +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.4") +remove_path("MODULEPATH", "/apps/ops/prod/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") +remove_path("MODULEPATH", "/apps/prod/lmodules/intel/19.1.3.304") +remove_path("MODULEPATH", "/apps/prod/lmodules/INTEL_cray_mpich/19.1.3.304/cray-mpich/8.1.4") +load("cmake") load("ufs_common") prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua deleted file mode 100644 index 6d96ab95d3..0000000000 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ /dev/null @@ -1,46 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/GNU -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python_ver)) - -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -gnu_ver=os.getenv("gnu_ver") or "10.1.0" -load(pathJoin("gnu", gnu_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) - -load("ufs_common") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.gnu") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua deleted file mode 100644 index 66e7c8e8f4..0000000000 --- a/modulefiles/ufs_cheyenne.intel.lua +++ /dev/null @@ -1,47 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/Intel -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python)) - ---load programming environment -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1" -load(pathJoin("intel", intel_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) - -load("ufs_common") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index 6b9c9d4042..6e9c1f6f45 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -3,23 +3,25 @@ whatis("Description: UFS build environment common libraries") help([[Load UFS Model common libraries]]) local ufs_modules = { - {["jasper"] = "2.0.25"}, - {["zlib"] = "1.2.11"}, - {["libpng"] = "1.6.37"}, - {["hdf5"] = "1.10.6"}, - {["netcdf"] = "4.7.4"}, - {["pio"] = "2.5.7"}, - {["esmf"] = "8.3.0b09"}, - {["fms"] = "2022.04"}, - {["bacio"] = "2.4.1"}, - {["crtm"] = "2.4.0"}, - {["g2"] = "3.4.5"}, - {["g2tmpl"] = "1.10.2"}, - {["ip"] = "3.3.3"}, - {["sp"] = "2.3.3"}, - {["w3emc"] = "2.9.2"}, - {["gftl-shared"] = "v1.5.0"}, - {["mapl"] = "2.22.0-esmf-8.3.0b09"}, + {["jasper"] = "2.0.32"}, + {["zlib"] = "1.2.13"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf-c"] = "4.9.2"}, + {["netcdf-fortran"] = "4.6.1"}, + {["parallelio"] = "2.5.10"}, + {["esmf"] = "8.6.0"}, + {["fms"] = "2023.04"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "4.3.0"}, + {["sp"] = "2.5.0"}, + {["w3emc"] = "2.10.0"}, + {["gftl-shared"] = "1.6.1"}, + {["mapl"] = "2.40.3-esmf-8.6.0"}, + {["scotch"] = "7.0.4"}, } for i = 1, #ufs_modules do diff --git a/modulefiles/ufs_common_spack.lua b/modulefiles/ufs_common_spack.lua deleted file mode 100644 index 76faa011ad..0000000000 --- a/modulefiles/ufs_common_spack.lua +++ /dev/null @@ -1,57 +0,0 @@ -help([[ -loads UFS Model common libraries -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.32" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.13" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.14.0" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.9.0" -load(pathJoin("netcdf-c", netcdf_ver)) -load(pathJoin("netcdf-fortran", "4.6.0")) - -pio_ver=os.getenv("pio_ver") or "2.5.9" -load(pathJoin("parallelio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -whatis("Description: UFS build environment common libraries") diff --git a/modulefiles/ufs_derecho.gnu.lua b/modulefiles/ufs_derecho.gnu.lua new file mode 100644 index 0000000000..cb70e716ab --- /dev/null +++ b/modulefiles/ufs_derecho.gnu.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for Derecho/GNU +]]) + +setenv("LMOD_TMOD_FIND_FIRST","yes") +prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles") +load("ecflow/5.8.4") +load("mysql/8.0.33") + +setenv("LMOD_TMOD_FIND_FIRST","yes") +prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +unload("ncarcompilers") +stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" +load(pathJoin("stack-gcc", stack_gnu_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +setenv("CMAKE_Platform", "derecho.gnu") +load("ufs-weather-model-env") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua new file mode 100644 index 0000000000..24b93b8f19 --- /dev/null +++ b/modulefiles/ufs_derecho.intel.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for NOAA Parallelworks/Intel +]]) + +setenv("LMOD_TMOD_FIND_FIRST","yes") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles") +load("ecflow/5.8.4") +load("mysql/8.0.33") + +setenv("LMOD_TMOD_FIND_FIRST","yes") +prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +unload("ncarcompilers") +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack-cray-mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +setenv("CMAKE_Platform", "derecho.intel") +load("ufs-weather-model-env") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_frontera.intel.lua b/modulefiles/ufs_frontera.intel.lua new file mode 100644 index 0000000000..fd62e79d30 --- /dev/null +++ b/modulefiles/ufs_frontera.intel.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Frontera/Intel +]]) + +prepend_path("MODULEPATH", "/work2/06146/tg854455/frontera/spack-stack/modulefiles") +load("ecflow/5.8.4") + +prepend_path("MODULEPATH", "/work2/01118/tg803972/frontera/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "19.1.1.217" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2020.4.304" +load(pathJoin("stack-intel-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.24.2" +load(pathJoin("cmake", cmake_ver)) +--load("cmake/3.24.2") + +load("ufs_common") + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "frontera.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 93256704f5..c202ad6423 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -1,27 +1,33 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea using Intel-2022.0.2 + on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") -prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-classic-2022.0.2/modulefiles/stack") -load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" +load(pathJoin("stack-intel", stack_intel_ver)) -load(pathJoin("intel-classic", os.getenv("intel_classic_ver") or "2022.0.2")) -load(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "7.7.20")) -load(pathJoin("hpc-intel-classic", os.getenv("hpc_intel_classic_ver") or "2022.0.2")) -load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.20")) -load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) --- Needed at runtime: -load("alps") +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + setenv("CC","cc") -setenv("FC","ftn") setenv("CXX","CC") +setenv("FC","ftn") setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index f2f4f71665..861019fb02 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,33 +2,29 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/gnu/modulefiles") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/installs/openmpi/modulefiles") +prepend_path("MODULEPATH", "/scratch2/NCEPDEV/stmp1/role.epic/spack-stack/spack-stack-1.6.0_gnu13/envs/ufs-wm-srw-rocky8/install/modulefiles/Core") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -gnu_ver=os.getenv("gnu_ver") or "9.2.0" -load(pathJoin("gnu", gnu_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") +stack_gnu_ver=os.getenv("stack_gnu_ver") or "13.3.0" +load(pathJoin("stack-gcc", stack_gnu_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_openmpi_ver=os.getenv("stack_openmpi_ver") or "4.1.6" +load(pathJoin("stack-openmpi", stack_openmpi_ver)) -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) -hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" -load(pathJoin("hpc-mpich", hpc_mpich_ver)) +load("ufs_common") -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) -load("ufs_common") +prepend_path("CPPFLAGS", " -I/apps/slurm_hera/23.11.3/include/slurm"," ") +prepend_path("LD_LIBRARY_PATH", "/apps/slurm_hera/23.11.3/lib") setenv("CC", "mpicc") -setenv("CXX", "mpicxx") +setenv("CXX", "mpic++") setenv("FC", "mpif90") setenv("CMAKE_Platform", "hera.gnu") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index c56a806bc5..993e05372a 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,40 +2,25 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1.2" -load(pathJoin("intel", intel_ver)) - -impi_ver=os.getenv("impi_ver") or "2022.1.2" -load(pathJoin("impi", impi_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") -prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua new file mode 100644 index 0000000000..69534c28d8 --- /dev/null +++ b/modulefiles/ufs_hercules.gnu.lua @@ -0,0 +1,28 @@ +help([[ +loads UFS Model prerequisites for Hercules/GNU +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +-- for mvapich2, need: +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") + +stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" +load(pathJoin("stack-gcc", stack_gnu_ver)) + +stack_mvapich2_ver=os.getenv("stack_mvapich2_ver") or "2.3.7" +load(pathJoin("stack-mvapich2", stack_mvapich2_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("CC", "mpicc") +setenv("CXX", "mpic++") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "hercules.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua new file mode 100644 index 0000000000..63cfaa989c --- /dev/null +++ b/modulefiles/ufs_hercules.intel.lua @@ -0,0 +1,26 @@ +help([[ +loads UFS Model prerequisites for Hercules/Intel +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hercules.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 2ce9e944ba..b29373eec1 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,31 +2,28 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") -prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_linux.gnu b/modulefiles/ufs_linux.gnu index 41c3588f9f..fd1f49e8c1 100644 --- a/modulefiles/ufs_linux.gnu +++ b/modulefiles/ufs_linux.gnu @@ -4,7 +4,7 @@ ## ## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers -echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" +echo "Setting environment variables for UFS Model on Linux with gcc/gfortran" ## ## load programming environment: compiler, flags, paths @@ -25,16 +25,6 @@ export CMAKE_Platform=linux.gnu ## export NETCDF=${NETCDF:-/home/builder/opt} -## -## use SIONlib library if installed and environment variable is set -## -SIONLIB=${SIONLIB:-} -if [ ! "x$SIONLIB" == "x" ]; then - echo "Use SIONlib installation in ${SIONLIB}" - export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" - export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" -fi - ## ## use pre-compiled EMSF library for above compiler / MPI combination ## diff --git a/modulefiles/ufs_linux.intel b/modulefiles/ufs_linux.intel new file mode 100644 index 0000000000..6e47862e41 --- /dev/null +++ b/modulefiles/ufs_linux.intel @@ -0,0 +1,37 @@ +#!/bin/bash + +#%Module###################################################################### +## +## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers + +echo "Setting environment variables for UFS Model on Linux with gcc/gfortran" + +## +## load programming environment: compiler, flags, paths +## +export CC=${CC:-mpicc} +export CXX=${CXX:-mpicxx} +export F77=${F77:-mpif77} +export F90=${F90:-mpif90} +export FC=${FC:-mpif90} + +## +## set up variables for ../cmake/configure_linux.intel.cmake +## +export CMAKE_Platform=linux.intel + +## +## use own NetCDF library +## +export NETCDF=${NETCDF:-/home/builder/opt} + +## +## use pre-compiled EMSF library for above compiler / MPI combination +## +export ESMFMKFILE=${ESMFMKFILE:-/home/builder/opt/lib/esmf.mk} + +## +## NCEP libraries (need to download and build manually, see doc/README_{UBUNTU,CENTOS,...}.txt and https://github.com/NCAR/NCEPlibs) +## +export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} +export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} diff --git a/modulefiles/ufs_macosx.gnu b/modulefiles/ufs_macosx.gnu index 63f7ac2081..961d673b67 100644 --- a/modulefiles/ufs_macosx.gnu +++ b/modulefiles/ufs_macosx.gnu @@ -2,9 +2,9 @@ #%Module###################################################################### ## -## UFS prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: macOS with gcc/gfortran or clang/gfortran compilers -echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" +echo "Setting environment variables for UFS Model on macOS with gcc/gfortran or clang/gfortran" ## ## load programming environment: compiler, flags, paths diff --git a/modulefiles/ufs_macosx.intel b/modulefiles/ufs_macosx.intel index 42a9a7a9d4..8f29ab8b26 100644 --- a/modulefiles/ufs_macosx.intel +++ b/modulefiles/ufs_macosx.intel @@ -2,9 +2,9 @@ #%Module###################################################################### ## -## UFS prerequisites: MACOSX with clang/gfortran compilers +## UFS prerequisites: macOS with icc/ifort compilers -echo "Setting environment variables for NEMSfv3gfs on MACOSX with icc/ifort" +echo "Setting environment variables for UFS Model on macOS with with icc/ifort" ## ## load programming environment: compiler, flags, paths diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua index f4023658fe..98397ef11c 100644 --- a/modulefiles/ufs_noaacloud.intel.lua +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -2,8 +2,7 @@ help([[ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) - -prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -14,11 +13,7 @@ load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/contrib/spack-stack/modulefiles/core") -stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" -load(pathJoin("stack-python", stack_python_ver)) - -load("ufs_common_spack") +load("ufs_common") setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 6c3c01b0f9..1d717663ae 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,28 +2,22 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -load("contrib") -load("noaatools") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env-rocky9/install/modulefiles/Core") -cmake_ver=os.getenv("cmake_ver") or "3.22.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -scotch_ver=os.getenv("scotch_ver") or "7.0.3" -load(pathJoin("scotch", scotch_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("ufs_common") +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + setenv("CC", "mpiicc") setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua index 50372f364c..e42a2ddde6 100644 --- a/modulefiles/ufs_s4.intel.lua +++ b/modulefiles/ufs_s4.intel.lua @@ -1,24 +1,14 @@ help([[ -loads UFS Model prerequisites for S4 +loads UFS Model prerequisites for S4/Intel ]]) -miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" -load(pathJoin("miniconda", miniconda3_ver)) +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") -license_ver=os.getenv("license_ver") or "S4" -load(pathJoin("license_intel",license_ver)) +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" +load(pathJoin("stack-intel", stack_intel_ver)) - -prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.1.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" -load(pathJoin("hpc-impi", hpc_impi_ver)) +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) load("ufs_common") diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index 8e9fdcaf13..47326f4e45 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -12,71 +12,40 @@ load(pathJoin("intel", intel_ver)) craype_ver=os.getenv("craype_ver") or "2.7.13" load(pathJoin("craype", craype_ver)) -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.12" load(pathJoin("cray-mpich", cray_mpich_ver)) cmake_ver=os.getenv("cmake_ver") or "3.20.2" load(pathJoin("cmake", cmake_ver)) -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms", fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - --- Second, look for libraries in "para" -setenv("HPC_OPT", "/apps/ops/para/libs") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - --- Finally, look for libraries in "dev" space -prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" -load(pathJoin("gftl_shared", gftl_shared_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) +local ufs_modules = { + {["jasper"] = "2.0.25"}, + {["zlib"] = "1.2.11"}, + {["libpng"] = "1.6.37"}, + {["hdf5-C"] = "1.14.0"}, + {["netcdf-C"] = "4.9.2"}, + {["pio-C"] = "2.5.10"}, + {["esmf-C"] = "8.6.0"}, + {["fms-C"] = "2023.04"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.6.1"}, + {["mapl-C"] = "2.40.3"}, + {["pnetcdf-C"] = "1.12.2"}, + {["scotch"] = "7.0.4"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end setenv("CC", "cc") setenv("CXX", "CC") diff --git a/stochastic_physics b/stochastic_physics index 3bfa4468d8..fad2fe9f42 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 3bfa4468d85e5b63980c28434f494967f38b10a3 +Subproject commit fad2fe9f42f6b7f744b128b4a2a9433f91e4296f diff --git a/tests/atparse.bash b/tests/atparse.bash index a1d9496982..5e0e8985d8 100755 --- a/tests/atparse.bash +++ b/tests/atparse.bash @@ -1,42 +1,106 @@ #! /usr/bin/env bash function atparse { - local __set_x - [ -o xtrace ] && __set_x='set -x' || __set_x='set +x' - set +x + # Usage: + # source atparse.bash # defines the "atparse" function; only do this once + # atparse [ var1=value1 [ var2=value2 [...] ] ] < input_file > output_file + # This function filters text from stdin to stdout. It scans for text sequences like: + # @[varname] + # And replaces them with the value of the corresponding ${varname} variable. + # You can provide variables that are not set in bash by providing them on the command line. + # If set -u is enabled, it will exit the process when a variable is empty or undefined via set -u. + # Use __ in names to avoid clashing with variables in {var} blocks. - local __text __before __after __during + local __text # current line of text being parsed, or the current command-line argument being parsed + local __before # all text before the next @[...] option + local __after # all text after the next @[...] option + local __during # the contents of the @[...] option, including the @[ and ] + local __set_x=":" # will be "set -x" if the calling script had that option enabled + local __set_u=":" # will be "set -u" if the calling script had that option enabled + local __set_e=":" # will be "set -e" if the calling script had that option enabled + local __abort_on_undefined=NO # YES = script should abort if a variable is undefined, NO otherwise + + # Ensure "set -x -e -u" are all inactive, but remember if they + # were active so we can reset them later. + if [[ -o xtrace ]] ; then + __set_x="set -x" + fi + if [[ -o errexit ]] ; then + __set_e="set -e" + fi + if [[ -o nounset ]] ; then + __set_u="set -u" + __abort_on_undefined=YES + fi + set +eux + + # Allow setting variables on the atparse command line rather than the environment. + # They will be local variables in this function. for __text in "$@" ; do if [[ $__text =~ ^([a-zA-Z][a-zA-Z0-9_]*)=(.*)$ ]] ; then eval "local ${BASH_REMATCH[1]}" eval "${BASH_REMATCH[1]}="'"${BASH_REMATCH[2]}"' else - echo "ERROR: Ignoring invalid argument $__text\n" 1>&2 + echo "ERROR: Ignoring invalid argument $__text" 1>&2 fi done - while IFS= read -r __text ; do + + # Loop over all lines of text. + while [[ 1 == 1 ]] ; do + # Read the next line of text. This will "fail" if no more text + # is left OR if the last line lacks an end-of-line character. + read -d '' -r __text + + # Stop when "read" reports it is done ($? -ne 0) AND the text is + # non-empty (! -n "$__text"). This ensures we read the final line + # even if it lacks an end-of-line character. + if [[ $? -ne 0 ]] ; then + if [[ -n "$__text" ]] ; then + # Text remained, but it had no end-of-line. + : + else + break + fi + fi + # Search for strings like @[varname] or @['string'] or @[@] while [[ "$__text" =~ ^([^@]*)(@\[[a-zA-Z_][a-zA-Z_0-9]*\]|@\[\'[^\']*\'\]|@\[@\]|@)(.*) ]] ; do __before="${BASH_REMATCH[1]}" __during="${BASH_REMATCH[2]}" __after="${BASH_REMATCH[3]}" -# printf 'PARSE[%s|%s|%s]\n' "$__before" "$__during" "$__after" printf %s "$__before" + # @['string'] inserts string if [[ "$__during" =~ ^@\[\'(.*)\'\]$ ]] ; then printf %s "${BASH_REMATCH[1]}" + # @[@] inserts @ elif [[ "$__during" == '@[@]' ]] ; then printf @ + # @[varname] inserts $varname elif [[ "$__during" =~ ^@\[([a-zA-Z_][a-zA-Z_0-9]*)\] ]] ; then + # Flag unknown variables at this step only. + if [[ ${__abort_on_undefined} == YES ]] ; then + set -u + fi eval 'printf %s "$'"${BASH_REMATCH[1]}"'"' + if [[ ${__abort_on_undefined} == YES ]] ; then + set +u + fi + # Unrecognized sequences are inserted verbatim. else printf '%s' "$__during" fi + # Continue until we run out of text in this line. if [[ "$__after" == "$__text" ]] ; then break fi __text="$__after" done + # Print the corrected text printf '%s\n' "$__text" done + + # Restore the calling script's shell options. eval "$__set_x" + eval "$__set_u" + eval "$__set_e" } function test_atparse { @@ -45,14 +109,18 @@ function test_atparse { testvar='[testvar]' var1='[var1]' var2='[var2]' - cat<<\EOF | atparse var3='**' + var4='[var4]' + ( cat<<\EOF ; echo -n "line with no end-of-line character [var4] = @[var4]" ) | atparse var3='**' Nothing special here. = @['Nothing special here.'] [testvar] = @[testvar] [var1] [var2] = @[var1] @[var2] ** = @[var3] +[var4] == @[var4] @ = @[@] = @['@'] +@[undefined_variable_that_should_exit_script_if_set_minus_u_is_used] -n eval "export PE$c=\${PE$c:-0}" = @[' eval "export PE$c=\${PE$c:-0}"'] EOF + echo " ... this text should be on the same line as the line with no end-of-line character" echo "After block, \$var3 = \"$var3\" should be empty" } diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index 95d565e8dc..7b18e54ac8 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -20,7 +20,7 @@ def set_directories(job_obj): logger = logging.getLogger('BL/SET_DIRECTORIES') if job_obj.machine == 'hera': workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' - blstore = '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' + blstore = '/scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs' rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST' elif job_obj.machine == 'jet': @@ -28,20 +28,20 @@ def set_directories(job_obj): blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' - blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' - rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ - f'REGRESSION_TEST' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' - blstore = '/work2/noaa/epic-ps/RT/NEMSfv3gfs' + blstore = '/work/noaa/epic/UFS-WM_RT/NEMSfv3gfs' rtbldir = '/work/noaa/stmp/role-epic-ps/stmp/role-epic-ps/FV3_RT/'\ f'REGRESSION_TEST' - elif job_obj.machine == 'cheyenne': - workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' - blstore = '/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs' - rtbldir = '/glade/scratch/epicufsrt/FV3_RT/'\ + elif job_obj.machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/tests/auto/pr' + blstore = '/work/noaa/epic/hercules/UFS-WM_RT' + rtbldir = '/work/noaa/stmp/role-epic/stmp/role-epic/FV3_RT/'\ + f'REGRESSION_TEST' + elif job_obj.machine == 'derecho': + workdir = '/glade/derecho/scratch/epicufsrt/autort/jenkins/autort/pr' + blstore = '/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/NEMSfv3gfs' + rtbldir = '/glade/derecho/scratch/epicufsrt/FV3_RT/'\ f'REGRESSION_TEST' else: logger.critical(f'Machine {job_obj.machine} is not supported for this job') diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 4780dfed9f..6622eae37a 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -27,12 +27,12 @@ def set_directories(job_obj): workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif job_obj.machine == 'jet': workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' - elif job_obj.machine == 'cheyenne': - workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + elif job_obj.machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/tests/auto/pr' + elif job_obj.machine == 'derecho': + workdir = '/glade/derecho/scratch/epicufsrt/autort/jenkins/autort/pr' else: print(f'Machine {job_obj.machine} is not supported for this job') raise KeyError diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py index 38ef8b6372..9c54a7d3a5 100755 --- a/tests/auto-jenkins/rt_auto_jenkins.py +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -77,12 +77,12 @@ def delete_pr_dirs(each_pr, machine): workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif machine == 'jet': workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' - elif machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' - elif machine == 'cheyenne': - workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + elif machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/pr' + elif machine == 'derecho': + workdir = '/glade/derecho/scratch/epicufsrt/autort/jenkins/autort/pr' else: logging.error(f'Machine {machine} is not supported for this job') raise KeyError @@ -112,12 +112,12 @@ def delete_rt_dirs(in_dir, machine, workdir): elif machine == 'jet': rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ f'emc.nemspara/FV3_RT' - elif machine == 'gaea': - rt_dir = '/lustre/f2/scratch/role.epic/FV3_RT' elif machine == 'orion': rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' - elif machine == 'cheyenne': - rt_dir = '/glade/scratch/epicufsrt/FV3_RT' + elif machine == 'hercules': + rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' + elif machine == 'derecho': + rt_dir = '/glade/derecho/scratch/epicufsrt/FV3_RT' else: logging.error(f'Machine {machine} is not supported for this job') raise KeyError @@ -288,18 +288,15 @@ def setup_env(): elif bool(re.match(re.compile('tfe.+'), hostname)): machine = 'jet' os.environ['ACCNR'] = 'hfv3gfs' - elif bool(re.match(re.compile('gaea.+'), hostname)): - machine = 'gaea' - os.environ['ACCNR'] = 'nggps_emc' elif bool(re.match(re.compile('Orion-login.+'), hostname)): machine = 'orion' os.environ['ACCNR'] = 'epic-ps' - elif bool(re.match(re.compile('cheyenne.+'), hostname)): - machine = 'cheyenne' - os.environ['ACCNR'] = 'SCSG0002' - elif bool(re.match(re.compile('chadmin.+'), hostname)): - machine = 'cheyenne' - os.environ['ACCNR'] = 'SCSG0002' + elif bool(re.match(re.compile('Hercules-login.+'), hostname)): + machine = 'hercules' + os.environ['ACCNR'] = 'epic' + elif bool(re.match(re.compile('derecho.+'), hostname)): + machine = 'derecho' + os.environ['ACCNR'] = 'NRAL0032' else: raise KeyError(f'Hostname: {hostname} does not match '\ 'for a supported system. Exiting.') diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh index 203b334767..7c40126b89 100755 --- a/tests/auto-jenkins/start_rt_auto_jenkins.sh +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -10,6 +10,9 @@ elif [[ $HOSTNAME == hecflow* ]]; then elif [[ $HOSTNAME == Orion-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == Hercules-login-* ]]; then + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages @@ -19,9 +22,10 @@ elif [[ $HOSTNAME == tfe* ]]; then elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages -elif [[ $HOSTNAME == *chadmin* ]] || [[ $HOSTNAME == *cheyenne* ]]; then - export MACHINE_ID=cheyenne +elif [[ $HOSTNAME == derecho* ]]; then + export MACHINE_ID=derecho export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PATH=/glade/work/epicufsrt/contrib/derecho/rocoto/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else echo "No Python Path for this machine." diff --git a/tests/auto/jobs/bl.py b/tests/auto/jobs/bl.py index 1b758211a4..581056ac81 100644 --- a/tests/auto/jobs/bl.py +++ b/tests/auto/jobs/bl.py @@ -28,17 +28,12 @@ def set_directories(job_obj): blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' - blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' - rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ - f'REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' blstore = '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' rtbldir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/'\ f'REGRESSION_TEST_{job_obj.compiler.upper()}' - elif job_obj.machine == 'cheyenne': + elif job_obj.machine == 'derecho': workdir = '/glade/scratch/dtcufsrt/autort/tests/auto/pr' blstore = '/glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs' rtbldir = '/glade/scratch/dtcufsrt/FV3_RT/'\ diff --git a/tests/auto/jobs/rt.py b/tests/auto/jobs/rt.py index c69bcda669..706c5058c7 100644 --- a/tests/auto/jobs/rt.py +++ b/tests/auto/jobs/rt.py @@ -18,11 +18,9 @@ def set_directories(job_obj): workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'jet': workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' - elif job_obj.machine == 'cheyenne': + elif job_obj.machine == 'derecho': workdir = '/glade/scratch/dtcufsrt/autort/tests/auto/pr' else: print(f'Machine {job_obj.machine} is not supported for this job') diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index bed530b3d0..2b1b5aaea9 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -217,13 +217,10 @@ def setup_env(): elif bool(re.match(re.compile('fe.+'), hostname)): machine = 'jet' os.environ['ACCNR'] = 'h-nems' - elif bool(re.match(re.compile('gaea.+'), hostname)): - machine = 'gaea' - os.environ['ACCNR'] = 'nggps_emc' elif bool(re.match(re.compile('Orion-login.+'), hostname)): machine = 'orion' elif bool(re.match(re.compile('chadmin.+'), hostname)): - machine = 'cheyenne' + machine = 'derecho' os.environ['ACCNR'] = 'P48503002' else: raise KeyError(f'Hostname: {hostname} does not match '\ diff --git a/tests/auto/start_rt_auto.sh b/tests/auto/start_rt_auto.sh index af85cdccbb..d0817f7356 100644 --- a/tests/auto/start_rt_auto.sh +++ b/tests/auto/start_rt_auto.sh @@ -17,8 +17,9 @@ elif [[ $HOSTNAME == gaea* ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages elif [[ $HOSTNAME == *chadmin* ]]; then - export MACHINE_ID=cheyenne + export MACHINE_ID=derecho export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PATH=/glade/work/epicufsrt/contrib/derecho/rocoto/bin:$PATH export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages else echo "No Python Path for this machine." diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 489cf12f4a..2fc1026343 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1,2 +1 @@ -export BL_DATE=20230713 - +export BL_DATE=20240730 diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index b3e13cbbcb..966b94aa3b 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaepic/ubuntu20.04-gnu9.3-hpc-stack:v1.2 +From noaaepic/ubuntu20.04-gnu9.3-hpc-stack:v2.0 CMD ["/bin/bash"] @@ -13,7 +13,7 @@ ENV test_name=$test_name ENV run_case=$run_case ENV CI_TEST=true ENV RT_COMPILER=gnu -ENV RT_MACHINE=linux +ENV MACHINE=linux ENV MACHINE_ID=linux # ACCNR CAN BE ANYTHING; DOCKER DOES NOT NEED THIS ENV ACCNR=nems diff --git a/tests/ci/Jenkinsfile b/tests/ci/Jenkinsfile index 6ed2403134..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 @@ -6,8 +38,19 @@ pipeline { overrideIndexTriggers(false) skipDefaultCheckout(true) } - stages { + + stage('Launch SonarQube') { + steps { + script { + build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ + string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'), + string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '') + ], wait: false + } + } + } + stage('ORT') { matrix { axes { @@ -77,21 +120,42 @@ 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}"' } } } - - post { + + post { always { sh ''' docker rmi -f "$(docker image ls | grep -E -m1 "${IMG_NAME}" | awk '{ print $3 }')" docker rmi -f "$(docker image ls | grep -E -m1 'noaaepic' | awk '{ print $3 }')" ''' } + + } + } + } + } + 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/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined new file mode 100644 index 0000000000..e0b86d6bea --- /dev/null +++ b/tests/ci/Jenkinsfile.combined @@ -0,0 +1,390 @@ +matchedNode = [] +generateBaselineNode = [] +for (label in pullRequest.labels) { + listOfLabelNodeNames = jenkins.model.Jenkins.instance.nodes.collect { + node -> node.getLabelString().contains(label) ? node.name : null + + if ((label.matches(node.getLabelString()+"-(.*)"))) { + matchedNode += node.getLabelString() + } + + if ((label.matches(node.getLabelString()+"(.*)-BL"))) { + generateBaselineNode += node.getLabelString() + } + } +} + +modifiedLabels = matchedNode.collect{"'" + it + "'"} +baselineLabels = generateBaselineNode.collect{"'" + it + "'"} +def generateStage(nodeLabel) { + return { + stage("Running on ${nodeLabel}") { + node(nodeLabel) { + cleanWs() + checkout scm + script { + try { + echo "Running on ${nodeLabel}" + if (baselineLabels.contains(nodeLabel)) { + sh ''' + git submodule update --init --recursive + cd tests + pwd + export BL_DATE=$(cat bl_date.conf | cut -d '=' -f2) + export machine=${NODE_NAME} + export PATH=$PATH:~/bin + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + + if [[ $machine =~ "Jet" ]] + then + echo "Creating baselines on $machine" + export dprefix=/lfs1/NAGAPE/$ACCNR/$USER + ./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + elif [[ $machine =~ "Hercules" ]] + then + echo "Creating baselines on $machine" + export dprefix=/work2/noaa/$ACCNR/$USER + sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh + export ACCNR=epic + ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + export DISKNM=/work/noaa/epic/hercules/UFS-WM_RT + cd ${DISKNM}/NEMSfv3gfs/ + mkdir develop-${BL_DATE} + cd /work2/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT + rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} + cd ${DISKNM}/NEMSfv3gfs/ + ./adjust_permissions.sh hercules develop-${BL_DATE} + chgrp noaa-hpc develop-${BL_DATE} + cd $WORKSPACE/tests + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hercules.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Orion" ]] + then + cd .. + module load git/2.28.0 + git submodule update --init --recursive + cd tests + echo "Creating baselines on $machine" + export dprefix=/work2/noaa/$ACCNR/$USER + sed -i 's|/work/noaa/stmp/${USER}|/work/noaa/epic/stmp/role-epic/|g' rt.sh + export ACCNR=epic + ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + export DISKNM=/work/noaa/epic/UFS-WM_RT + cd ${DISKNM}/NEMSfv3gfs/ + mkdir develop-${BL_DATE} + cd /work/noaa/epic/stmp/role-epic/stmp/role-epic/FV3_RT/ + rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} + cd ${DISKNM}/NEMSfv3gfs/ + ./adjust_permissions.sh orion develop-${BL_DATE} + chgrp noaa-hpc develop-${BL_DATE} + cd $WORKSPACE/tests + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_orion.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Gaea" ]] + then + echo "Creating baselines on $machine" + ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + unset LD_LIBRARY_PATH + export DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT + cd ${DISKNM}/NEMSfv3gfs/ + mkdir develop-${BL_DATE} + cd /gpfs/f5/epic/scratch/role.epic/FV3_RT + rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} + cd ${DISKNM}/NEMSfv3gfs/ + chgrp ncep develop-${BL_DATE} + cd $WORKSPACE/tests + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_gaea.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Hera" ]] + then + echo "Creating baselines on $machine" + export ACCNR=epic + ./rt.sh -a ${ACCNR} -c -r -l rt.conf + export DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT + cd ${DISKNM}/NEMSfv3gfs/ + mkdir develop-${BL_DATE} + cd /scratch1/NCEPDEV/stmp4/role.epic/FV3_RT + rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} + cd $WORKSPACE/tests + ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Derecho" ]] + then + echo "Creating baselines on $machine" + export ACCNR=nral0032 + ./rt.sh -a ${ACCNR} -c -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + export DISKNM=/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/ + cd ${DISKNM}/NEMSfv3gfs/ + mkdir develop-${BL_DATE} + cd /glade/derecho/scratch/epicufsrt/FV3_RT + rsync -a REGRESSION_TEST/ ${DISKNM}/NEMSfv3gfs/develop-${BL_DATE} + cd $WORKSPACE/tests + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_derecho.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + else + echo "Creating baselines on $machine" + ./rt.sh -a ${ACCNR} -c -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + fi + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Testing concluded...removing labels for $machine from $GIT_URL" + + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git add logs/RegressionTests_$machine_name_logs.log + git commit -m "[AutoRT] $machine Job Completed.\n\n\n on-behalf-of @ufs-community " + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + + tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log + + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/$machine-BL + ''' + s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: [] + + } + else { + sh ''' + git submodule update --init --recursive + pwd + cd tests + export machine=${NODE_NAME} + export PATH=$PATH:~/bin + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + + if [[ $machine =~ "Jet" ]] + then + echo "Running regression tests on $machine" + export dprefix=/lfs1/NAGAPE/$ACCNR/$USER + ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + elif [[ $machine =~ "Hercules" ]] + then + echo "Running regression tests on $machine" + export dprefix=/work2/noaa/$ACCNR/$USER + sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh + export ACCNR=epic + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hercules.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hercules.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Orion" ]] + then + echo "Running regression tests on $machine" + cd .. + module load git/2.28.0 + git submodule update --init --recursive + cd tests + export dprefix=/work2/noaa/$ACCNR/$USER + sed "s|/noaa/stmp/|/noaa/$ACCNR/stmp/|g" -i rt.sh + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_orion.log /work/noaa/epic/role-epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_orion.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Gaea" ]] + then + echo "Running regression tests on $machine" + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + unset LD_LIBRARY_PATH + cd logs/ + cp RegressionTests_gaea.log /gpfs/f5/epic/scratch/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_gaea.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Hera" ]] + then + echo "Running regression tests on $machine" + export ACCNR=epic + ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + elif [[ $machine =~ "Derecho" ]] + then + echo "Running regression tests on $machine" + export ACCNR=nral0032 + ./rt.sh -a ${ACCNR} -e -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + cd logs/ + cp RegressionTests_derecho.log /glade/derecho/scratch/epicufsrt/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp RegressionTests_derecho.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + else + echo "Running regression tests on $machine" + ./rt.sh -a ${ACCNR} -r -l rt.conf | tee $WORKSPACE/tests/logs/RT-run-$machine.log + fi + + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + echo "Testing concluded...removing labels for $machine from $GIT_URL" + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git add logs/RegressionTests_$machine_name_logs.log + git commit -m "[AutoRT] $machine Job Completed.\n\n\n on-behalf-of @ufs-community " + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + + tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log + + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/$machine-RT + + ''' + s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: [] + } + } + catch(err) { + sh ''' + export machine=${NODE_NAME} + export CHANGE_ID=${CHANGE_ID} + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + cd $WORKSPACE/tests + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + echo "Testing concluded...removing labels for $machine from $GIT_URL" + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + + if [[ -f $WORKSPACE/tests/logs/RT-run-$machine.log ]] ; then + git add $WORKSPACE/tests/logs/RT-run-$machine.log + fi + git commit --allow-empty -m "[AutoRT] $machine Job Failed!\n\n\n on-behalf-of @ufs-community " + + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + + tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log + + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels/{$machine-RT,$machine-BL} + ''' + s3Upload consoleLogLevel: 'INFO', dontSetBuildResultOnFailure: false, dontWaitForConcurrentBuildCompletion: false, entries: [[bucket: 'noaa-epic-prod-jenkins-artifacts', excludedFile: '', flatten: true, gzipFiles: false, keepForever: false, managedArtifacts: true, noUploadOnFailure: false, selectedRegion: 'us-east-1', showDirectlyInBrowser: false, sourceFile: "**/*tgz*", storageClass: 'STANDARD', uploadFromSlave: false, useServerSideEncryption: false]], pluginFailureResultConstraint: 'FAILURE', profileName: 'main', userMetadata: [] + currentBuild.result = 'FAILURE' + } + } + } + } + } +} + +def parallelStagesMap = modifiedLabels.collectEntries { + ["${it}" : generateStage(it)] +} + +pipeline { + agent none + environment { + ACCNR = 'epic' + AWS_PROD_ACCOUNT_ID = credentials('AWS_PROD_ACCOUNT_ID') + AWS_PROD_SNS_TOPIC = credentials('AWS_PROD_SNS_TOPIC') + GITHUB_TOKEN = credentials('GithubJenkinsNew') + GIT_URL = 'https://github.com/ufs-community/ufs-weather-model.git' + } + stages { + stage('Run SonarQube Testing') { + steps { + script { + build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ + string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop'), + string(name: 'FORK_NAME', value: env.CHANGE_FORK ?: '') + ], wait: false + } + } + } + stage('Run Regression Tests in Parallel') { + steps { + script { + parallel parallelStagesMap + } + } + } + } + post { + success { + node('built-in') { + echo 'This will run only if successful.' + sh ''' + aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":sunny: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *succeeded*"}}' + ''' + } + } + failure { + node('built-in') { + echo 'This will run only if the run was marked as unstable.' + sh ''' + aws sns publish --topic-arn "arn:aws:sns:us-east-1:${AWS_PROD_ACCOUNT_ID}:${AWS_PROD_SNS_TOPIC}" --region us-east-1 --message '{"version":"1.0","source":"custom","content":{"description":":warning: Jenkins build *'"$JOB_NAME"' '"$BUILD_NUMBER"'* with *PR-'"$CHANGE_ID"'* *failed!*"}}' + ''' + } + } + } +} diff --git a/tests/ci/Jenkinsfile.noaacloud b/tests/ci/Jenkinsfile.noaacloud new file mode 100644 index 0000000000..7ba2b0b2bd --- /dev/null +++ b/tests/ci/Jenkinsfile.noaacloud @@ -0,0 +1,144 @@ +pipeline { + agent none + stages { + stage('Start Parallelworks Cluster') { + agent { + label 'built-in' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("(.*)-aws-(.*)"))) { + env.CHOICE_NODE='pclusternoaav2use1' + } + else if ((label.matches("(.*)-gcp-(.*)"))) { + env.CHOICE_NODE='gclusternoaav2usc1' + } + else if ((label.matches("(.*)-azure-(.*)"))) { + env.CHOICE_NODE='azclusternoaav2use1' + } + else { + env.CHOICE_NODE='none' + } + } +// Why do I need another if..block, because it just works this way. + + if (CHOICE_NODE == 'azclusternoaav2use1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'azclusternoaav2use1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + + } + else if (CHOICE_NODE == 'gclusternoaav2usc1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'gclusternoaav2usc1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + } + else if (CHOICE_NODE == 'pclusternoaav2use1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'pclusternoaav2use1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + } + else { + echo "${CHOICE_NODE} is NOT a Parallelworks cluster, moving on..." + } + } + } + } + stage('Run Regression Tests script') { + agent { + label "${CHOICE_NODE}" + } + environment { + GITHUB_SSH_KEY = credentials('ParallelworksGithubPrivateKey') + ACCNR = 'epic' + GITHUB_TOKEN = credentials('zachgithubtoken') + NODE_PATH = '/lustre/' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("(.*)-BL"))) { + env.CREATE_BASELINES='true' + } + else { + env.CREATE_BASELINES='false' + } + } + } + cleanWs() + checkout scm + sh ''' + pwd + git submodule update --init --recursive + cd tests/ + if [[ "${CREATE_BASELINES}" = true ]] + then + echo "Creating baselines for regressions tests" + ./rt.sh -c -l rt.conf + echo "Sending regression test logs to $GIT_URL" + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + set +x + cd ${WORKSPACE} + export httpsorigin=`echo ${GIT_URL} | sed -e "s/github/$GITHUB_TOKEN@github/"` > /dev/null 2>&1 + git remote -v | grep -w httpsorigin > /dev/null 2>&1 && git remote remove httpsorigin > /dev/null 2>&1 + git remote add httpsorigin $httpsorigin > /dev/null 2>&1 + git add tests/logs/RegressionTests_noaacloud.log + git commit -m "[AutoRT] noaacloud Job Completed.\n\n\n on-behalf-of @ufs-community " + git push httpsorigin HEAD:$CHANGE_BRANCH > /dev/null 2>&1 + set -x + echo "Pushed logs to $GIT_URL $CHANGE_BRANCH" + echo "Removing labels from $GIT_URL" + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":[".*BL"]}' + else + echo "Running regression tests and NOT creating baselines." + ./rt.sh -l rt.conf + echo "Sending regression test logs to $GIT_URL" + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + set +x + cd ${WORKSPACE} + export httpsorigin=`echo ${GIT_URL} | sed -e "s/github/$GITHUB_TOKEN@github/"` > /dev/null 2>&1 + git remote -v | grep -w httpsorigin > /dev/null 2>&1 && git remote remove httpsorigin > /dev/null 2>&1 + git remote add httpsorigin $httpsorigin > /dev/null 2>&1 + git add tests/logs/RegressionTests_noaacloud.log + git commit -m "[AutoRT] noaacloud Job Completed.\n\n\n on-behalf-of @ufs-community " + git push httpsorigin HEAD:$CHANGE_BRANCH > /dev/null 2>&1 + set -x + echo "Pushed logs to $GIT_URL $CHANGE_BRANCH" + echo "Removing labels from $GIT_URL" + GIT_OWNER=$(echo $GIT_URL | cut -d '/' -f4) + GIT_REPO_NAME=$(echo $GIT_URL | cut -d '/' -f5 | cut -d '.' -f1) + curl --silent -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":[".*RT"]}' + fi + ''' + } + } + stage('Stop Parallelworks Cluster') { + agent { + label 'built-in' + } + // Pedantic comment. + steps { + script { + if (CHOICE_NODE == 'azclusternoaav2use1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'azclusternoaav2use1')] + + } + else if (CHOICE_NODE == 'gclusternoaav2usc1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'gclusternoaav2usc1')] + } + else if (CHOICE_NODE == 'pclusternoaav2use1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'pclusternoaav2use1')] + } + else { + echo "${CHOICE_NODE} is NOT a Parallelworks cluster, moving on..." + } + } + } + } + } +} diff --git a/tests/ci/Jenkinsfile.ort b/tests/ci/Jenkinsfile.ort new file mode 100644 index 0000000000..53e0a8823d --- /dev/null +++ b/tests/ci/Jenkinsfile.ort @@ -0,0 +1,107 @@ +pipeline { + agent none + stages { + stage('Run ORTs') { + agent { + label 'built-in' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("orion"))) { + env.CHOICE_NODE='orion' + } + else if ((label.matches("hera"))) { + env.CHOICE_NODE='hera' + } + else if ((label.matches("hercules"))) { + env.CHOICE_NODE='hercules' + } + else if ((label.matches("jet"))) { + env.CHOICE_NODE='jet' + } + else { + env.CHOICE_NODE='none' + } + } +// Why do I need another if..block, because it just works this way. + + if (CHOICE_NODE == 'orion') { + echo "Starting up orion ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + + } + else if (CHOICE_NODE == 'jet') { + echo "Starting up jet ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hercules') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else if (CHOICE_NODE == 'hera') { + echo "Starting up hera ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + } + else { + echo "${CHOICE_NODE} is NOT a platform, moving on..." + } + } + } + } + stage('Run ORT on Hera') { + agent { + label "hera" + } + environment { + ACCNR = 'epic' + NODE_PATH = '/scratch2/NAGAPE/epic/role.epic/' + } + steps { + + cleanWs() + checkout scm + sh ''' + git submodule update --init --recursive + cd tests/fv3_conf + sed 's/#SBATCH --time=.*/#SBATCH --time=02:00:00/g' -i fv3_slurm.IN_hera + cd .. + export machine=${NODE_NAME} + export PATH=$PATH:~/bin + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/ufs-community/ufs-weather-model/pulls/$CHANGE_ID | jq -r '.head.ref') + pwd + sed "s|intel|gnu|g" -i opnReqTest + export ACCNR=epic + ./opnReqTest -n regional_control -a ${ACCNR} -c bit,dcp,thr + cd logs/ + cp OpnReqTests_regional_control_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n cpld_control_nowave_noaero_p8 -a ${ACCNR} -c dbg,rst + cd logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + cd .. + ./opnReqTest -n control_p8 -a ${ACCNR} -c std,dbg,bit,mpi,rst,thr,dcp + cd logs/ + cp OpnReqTests_control_p8_hera.log /scratch2/NAGAPE/epic/role.epic/jenkins/workspace + git remote -v + git fetch --no-recurse-submodules origin + git reset FETCH_HEAD --hard + cd .. && cd .. && cd .. + cp OpnReqTests_control_p8_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_regional_control_hera.log $WORKSPACE/tests/logs/ + cp OpnReqTests_cpld_control_nowave_noaero_p8_hera.log $WORKSPACE/tests/logs/ + cd $WORKSPACE/tests/ + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Testing concluded...removing labels for $machine from $GIT_URL" + + export machine_name_logs=$(echo $machine | awk '{ print tolower($1) }') + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git add logs/OpnReqTests_control_p8_hera.log logs/OpnReqTests_regional_control_hera.log logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log + git commit -m "ORT Jobs Completed.\n\n\n on-behalf-of @ufs-community " + git pull sshorigin $FORK_BRANCH + git push sshorigin HEAD:$FORK_BRANCH + ''' + } + } + } +} diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index b8d0487e61..7f5deb31c8 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -1,95 +1,113 @@ #!/bin/bash -set -eu - -# This script checks if head repo of PR is up to date with ufs-weather-model develop -# Checks for top level (ufs-weather-model) and next level components (submodules) -result() { - if [[ -n $comment ]]; then - logID=$1 - comment="@$logID please bring these up to date with respective authoritative repositories\n"$comment - printf %s "$comment" - #exit 1 - fi +#set -eu + +get_shas () { + cwd=$(pwd) + # Get sha-1's of the top of develop and feature branches + app="Accept: application/vnd.github.v3+json" + url=$1 + gitapi=$2 + branch=$3 + base_sha=$(curl -sS -H "$app" $gitapi | jq -r '.commit.sha') + workspace=$4 + cd $workspace + git remote add upstream $url + git fetch -q upstream $branch + common=$(git merge-base $base_sha @) + echo $common $base_sha $workspace + if [[ $common != $base_sha ]]; then + printf "%s\n\n" "** $workspace **NOT** up to date" + flag_sync=false + fi + cd $cwd } -# Declare variables -declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake -submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake" -comment='' -ownerID=$1 - -# Base branch: this is the top of develop of ufs-weather-model -base[repo]='https://github.com/ufs-community/ufs-weather-model' -base[branch]='develop' - -# Submodules to check -fv3[repo]='https://github.com/NOAA-EMC/fv3atm' -fv3[branch]='develop' -fv3[dir]='FV3' - -mom6[repo]='https://github.com/NOAA-EMC/MOM6' -mom6[branch]='dev/emc' -mom6[dir]='MOM6-interface/MOM6' - -cice[repo]='https://github.com/NOAA-EMC/CICE' -cice[branch]='emc/develop' -cice[dir]='CICE-interface/CICE' - -ww3[repo]='https://github.com/NOAA-EMC/WW3' -ww3[branch]='dev/ufs-weather-model' -ww3[dir]='WW3' - -stoch[repo]='https://github.com/noaa-psd/stochastic_physics' -stoch[branch]='master' -stoch[dir]='stochastic_physics' - -gocart[repo]='https://github.com/GEOS-ESM/GOCART' -gocart[branch]='develop' -gocart[dir]='GOCART' - -cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' -cmeps[branch]='emc/develop' -cmeps[dir]='CMEPS-interface/CMEPS' - -cdeps[repo]='https://github.com/NOAA-EMC/CDEPS' -cdeps[branch]='develop' -cdeps[dir]='CDEPS-interface/CDEPS' - -hycom[repo]='https://github.com/NOAA-EMC/HYCOM-src' -hycom[branch]='emc/develop' -hycom[dir]='HYCOM-interface/HYCOM' - -cmake[repo]='https://github.com/NOAA-EMC/CMakeModules' -cmake[branch]='develop' -cmake[dir]='CMakeModules' - -# Get sha-1's of the top of develop of ufs-weather-model -app="Accept: application/vnd.github.v3+json" -url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop" -base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha') +flag_sync=true + +declare -A urls branches pathes +submodules="base fv3 mom6 cice ww3 stoch cmeps cdeps hycom ccpp_physics aqm noahmp cubed_sphere" + +urls[base]='https://github.com/ufs-community/ufs-weather-model' +branches[base]='develop' +pathes[base]='' + +urls[fv3]='https://github.com/NOAA-EMC/fv3atm' +branches[fv3]='develop' +pathes[fv3]='FV3' + +urls[mom6]='https://github.com/NOAA-EMC/MOM6' +branches[mom6]='dev/emc' +pathes[mom6]='MOM6-interface/MOM6' + +urls[cice]='https://github.com/NOAA-EMC/CICE' +branches[cice]='emc/develop' +pathes[cice]='CICE-interface/CICE' + +urls[ww3]='https://github.com/NOAA-EMC/WW3' +branches[ww3]='dev/ufs-weather-model' +pathes[ww3]='WW3' + +urls[stoch]='https://github.com/noaa-psl/stochastic_physics' +branches[stoch]='master' +pathes[stoch]='stochastic_physics' + +urls[gocart]='https://github.com/GEOS-ESM/GOCART' +branches[gocart]='develop' +pathes[gocart]='GOCART' + +urls[cmeps]='https://github.com/NOAA-EMC/CMEPS' +branches[cmeps]='emc/develop' +pathes[cmeps]='CMEPS-interface/CMEPS' + +urls[cdeps]='https://github.com/NOAA-EMC/CDEPS' +branches[cdeps]='develop' +pathes[cdeps]='CDEPS-interface/CDEPS' + +urls[hycom]='https://github.com/NOAA-EMC/HYCOM-src' +branches[hycom]='emc/develop' +pathes[hycom]='HYCOM-interface/HYCOM' + +urls[cmake]='https://github.com/NOAA-EMC/CMakeModules' +branches[cmake]='develop' +pathes[cmake]='CMakeModules' + +urls[ccpp_physics]='https://github.com/ufs-community/ccpp-physics' +branches[ccpp_physics]='ufs/dev' +pathes[ccpp_physics]='FV3/ccpp/physics' + +urls[ccpp_framework]='https://github.com/NCAR/ccpp-framework' +branches[ccpp_framework]='main' +pathes[ccpp_framework]='FV3/ccpp/framework' + +urls[aqm]='https://github.com/NOAA-EMC/AQM' +branches[aqm]='develop' +pathes[aqm]='AQM' + +urls[noahmp]='https://github.com/NOAA-EMC/noahmp' +branches[noahmp]='develop' +pathes[noahmp]='NOAHMP-interface/noahmp' + +#urls[upp]='https://github.com/NOAA-EMC/UPP' +#branches[upp]='develop' +#pathes[upp]='upp' + +urls[cubed_sphere]='https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere' +branches[cubed_sphere]='dev/emc' +pathes[cubed_sphere]='FV3/atmos_cubed_sphere' + for submodule in $submodules; do - eval url=https://api.github.com/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}' - eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')' + url=${urls[$submodule]} + branch=${branches[$submodule]} + workspace=${GITHUB_WORKSPACE}'/'${pathes[$submodule]} + gitapi=$(echo "$url" | sed 's/github.com/api.github.com\/repos/g')'/branches/'$branch + get_shas $url $gitapi $branch $workspace done -# Check if the head branch is up to date with the base branch -cd ${GITHUB_WORKSPACE} -git remote add upstream ${base[repo]} -git fetch -q upstream ${base[branch]} -common=$(git merge-base ${base[sha]} @) -if [[ $common != ${base[sha]} ]]; then - comment="* ufs-weather-model **NOT** up to date\n" +if [[ ! $flag_sync ]]; then + echo "** ${GITHUB_WORKSPACE} **NOT** up to date" + exit 1 fi -for submodule in $submodules; do - eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}' - eval git remote add upstream '${'$submodule'[repo]}' - eval git fetch -q upstream '${'$submodule'[branch]}' - common=$(eval git merge-base '${'$submodule'[sha]}' @) - if (eval test $common != '${'$submodule'[sha]}'); then - comment+="* $submodule **NOT** up to date\n" - fi -done +echo "** ${GITHUB_WORKSPACE} up to date **" -result $ownerID exit 0 diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py deleted file mode 100755 index 4051bcc781..0000000000 --- a/tests/compare_ncfile.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python -import sys -import numpy as np -from netCDF4 import Dataset - -with Dataset(sys.argv[1]) as nc1, Dataset(sys.argv[2]) as nc2: - # Check if the list of variables are the same - if nc1.variables.keys()!=nc2.variables.keys(): - print("Variables are different") - sys.exit(2) - - for varname in nc1.variables.keys(): - if varname == "time_iso": - continue - # First check if each variable has the same dimension - if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): - print(varname,"dimension is different") - sys.exit(2) - # If dimension is the same, compare data - else: - diff = nc2[varname][:]-nc1[varname][:] - - if (np.abs(diff)).max() != 0: - print(varname,"is different") - sys.exit(2) diff --git a/tests/compile.sh b/tests/compile.sh index 8702efe135..458d985a88 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -7,73 +7,82 @@ function trim { var="${var#"${var%%[![:space:]]*}"}" # remove trailing whitespace characters var="${var%"${var##*[![:space:]]}"}" - echo -n "$var" + echo -n "${var}" } SECONDS=0 -if [[ $(uname -s) == Darwin ]]; then - readonly MYDIR=$(cd "$(dirname "$(greadlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) +uname_s=$(uname -s) +if [[ ${uname_s} == Darwin ]]; then + greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" ) + MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P) else - readonly MYDIR=$(cd "$(dirname "$(readlink -f -n "${BASH_SOURCE[0]}" )" )" && pwd -P) + readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" ) + MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P) fi +readonly MYDIR # ---------------------------------------------------------------------- # Parse arguments. readonly ARGC=$# -if [[ $ARGC -lt 2 ]]; then - echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_NR ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]" +if [[ ${ARGC} -lt 2 ]]; then + echo "Usage: $0 MACHINE_ID [ MAKE_OPT ] [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ]" echo Valid MACHINE_IDs: - echo $( ls -1 ../cmake/configure_* | sed s:.*configure_::g | sed s:\.cmake:: ) | fold -sw72 + echostuff=$( ls -1 ../cmake/configure_* ) + echostuff=${echostuff/:.*configure_::g} + echostuff=${echostuff/:\.cmake::} + echostuff=$( fold -sw72 <<< "${echostuff}" ) exit 1 else MACHINE_ID=$1 MAKE_OPT=${2:-} - COMPILE_NR=${3:+_$3} + COMPILE_ID=${3:+$3} RT_COMPILER=${4:-intel} clean_before=${5:-YES} clean_after=${6:-YES} fi -BUILD_NAME=fv3${COMPILE_NR} +BUILD_NAME=fv3_${COMPILE_ID} -PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )} -BUILD_DIR=$(pwd)/build_${BUILD_NAME} +PATHTR=${PATHTR:-$( cd "${MYDIR}/.." && pwd )} +BUILD_DIR=${BUILD_DIR:-$(pwd)/build_${BUILD_NAME}} # ---------------------------------------------------------------------- # Make sure we have reasonable number of threads. -if [[ $MACHINE_ID == cheyenne ]]; then +if [[ ${MACHINE_ID} == derecho ]]; then BUILD_JOBS=${BUILD_JOBS:-3} fi BUILD_JOBS=${BUILD_JOBS:-8} -hostname +#hostname set +x -if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then - source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} -else - # Activate lua environment for gaea - if [[ $MACHINE_ID == gaea ]]; then - source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh - fi - # Load fv3 module - module use $PATHTR/modulefiles - modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" - module load $modulefile - module list -fi +case ${MACHINE_ID} in + macosx|linux) + source "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}" + ;; + *) + # Activate lua environment for gaea c5 + if [[ ${MACHINE_ID} == gaea ]]; then + module reset + fi + # Load fv3 module + module use "${PATHTR}/modulefiles" + modulefile="ufs_${MACHINE_ID}.${RT_COMPILER}" + module load "${modulefile}" + module list +esac set -x -echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" +echo "Compiling ${MAKE_OPT} into ${BUILD_NAME}.exe on ${MACHINE_ID}" # set CMAKE_FLAGS based on $MAKE_OPT -CMAKE_FLAGS=$MAKE_OPT +CMAKE_FLAGS=${MAKE_OPT} CMAKE_FLAGS+=" -DMPI=ON" if [[ ${MAKE_OPT} == *-DDEBUG=ON* ]]; then @@ -87,15 +96,11 @@ fi # Check if suites argument is provided or not set +ex -TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" ) -if [[ $? -eq 0 ]]; then - SUITES=$( echo $MAKE_OPT | sed 's/.*-DCCPP_SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${SUITES}" -fi +SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") +export SUITES set -ex # Valid applications - if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi @@ -104,31 +109,27 @@ if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi -CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") +CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" -if [ $clean_before = YES ] ; then - rm -rf ${BUILD_DIR} -fi +[[ ${clean_before} = YES ]] && rm -rf "${BUILD_DIR}" export BUILD_VERBOSE=1 export BUILD_DIR export BUILD_JOBS export CMAKE_FLAGS -bash -x ${PATHTR}/build.sh +bash -x "${PATHTR}/build.sh" -mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ $MACHINE_ID == linux ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} ${PATHTR}/tests/modules.${BUILD_NAME} +mv "${BUILD_DIR}/ufs_model" "${PATHTR}/tests/${BUILD_NAME}.exe" +if [[ ${MACHINE_ID} == linux ]]; then + cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}" "${PATHTR}/tests/modules.${BUILD_NAME}" else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua + cp "${PATHTR}/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER}.lua" "${PATHTR}/tests/modules.${BUILD_NAME}.lua" fi -if [ $clean_after = YES ] ; then - rm -rf ${BUILD_DIR} -fi +[[ ${clean_after} == YES ]] && rm -rf "${BUILD_DIR}" -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished" -echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_NR}_time.log +elapsed=${SECONDS} +echo "Elapsed time ${elapsed} seconds. Compiling ${CMAKE_FLAGS} finished" +echo "Compile ${COMPILE_ID} elapsed time ${elapsed} seconds. ${CMAKE_FLAGS}" > "compile_${COMPILE_ID}_time.log" diff --git a/tests/default_vars.sh b/tests/default_vars.sh old mode 100755 new mode 100644 index 2b2b7beb1b..78a89ec8e6 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1,4 +1,4 @@ - +#!/bin/bash ############################################################################### # # Export variables to the default values @@ -9,306 +9,400 @@ THRD=1 - INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6 - - THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_cpl_atmw=30 - WAV_thrds_cpl_atmw=1 - - THRD_cpl_c48=1 - INPES_cpl_c48=1; JNPES_cpl_c48=1; WPG_cpl_c48=6 - OCN_tasks_cpl_c48=4 - ICE_tasks_cpl_c48=4 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - OCN_thrds_cpl_thrd=1 - ICE_tasks_cpl_thrd=10 - ICE_thrds_cpl_thrd=1 - WAV_tasks_cpl_thrd=12 - WAV_thrds_cpl_thrd=2 - - THRD_cpl_dcmp=1 - INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 - OCN_tasks_cpl_dcmp=20 - ICE_tasks_cpl_dcmp=10 - WAV_tasks_cpl_dcmp=20 - - THRD_cpl_mpi=1 - INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 - OCN_tasks_cpl_mpi=34 - ICE_tasks_cpl_mpi=20 - WAV_tasks_cpl_mpi=28 - - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=8; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48 - OCN_tasks_cpl_bmrk=120 - OCN_thrds_cpl_bmrk=1 - ICE_tasks_cpl_bmrk=48 - ICE_thrds_cpl_bmrk=1 - WAV_tasks_cpl_bmrk=80 - WAV_thrds_cpl_bmrk=2 - - THRD_cpl_c192=2 - INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - WAV_tasks_cpl_c192=80 - - ATM_compute_tasks_cdeps_100=12 - OCN_tasks_cdeps_100=16 - ICE_tasks_cdeps_100=12 - - ATM_compute_tasks_cdeps_025=40 - OCN_tasks_cdeps_025=120 - ICE_tasks_cdeps_025=48 - - INPES_aqm=33; JNPES_aqm=8 - - THRD_cpl_unstr=1 - INPES_cpl_unstr=3; JNPES_cpl_unstr=8; WPG_cpl_unstr=6 - OCN_tasks_cpl_unstr=20 - ICE_tasks_cpl_unstr=10 - WAV_tasks_cpl_unstr=60 - - THRD_cpl_unstr_mpi=1 - INPES_cpl_unstr_mpi=4; JNPES_cpl_unstr_mpi=8; WPG_cpl_unstr_mpi=6 - OCN_tasks_cpl_unstr_mpi=34 - ICE_tasks_cpl_unstr_mpi=20 - WAV_tasks_cpl_unstr_mpi=50 - - aqm_omp_num_threads=1 - atm_omp_num_threads=1 - chm_omp_num_threads=1 - ice_omp_num_threads=1 - lnd_omp_num_threads=1 - med_omp_num_threads=1 - ocn_omp_num_threads=1 - wav_omp_num_threads=1 - -if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - - TPN=128 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = orion ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = hera ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=4 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - -elif [[ $MACHINE_ID = linux ]]; then - - TPN=40 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - -elif [[ $MACHINE_ID = jet ]]; then - - TPN=24 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=240 + export INPES_atmaero=4 + export JNPES_atmaero=8 + export WPG_atmaero=6 + + export THRD_cpl_atmw=1 + export INPES_cpl_atmw=3 + export JNPES_cpl_atmw=8 + export WPG_cpl_atmw=6 + export WAV_tasks_cpl_atmw=30 + export WAV_thrds_cpl_atmw=1 + + export THRD_cpl_c48=1 + export INPES_cpl_c48=1 + export JNPES_cpl_c48=1 + export WPG_cpl_c48=6 + export OCN_tasks_cpl_c48=4 + export ICE_tasks_cpl_c48=4 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8; + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4 + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export OCN_thrds_cpl_thrd=1 + export ICE_tasks_cpl_thrd=10 + export ICE_thrds_cpl_thrd=1 + export WAV_tasks_cpl_thrd=12 + export WAV_thrds_cpl_thrd=2 + + export THRD_cpl_dcmp=1 + export INPES_cpl_dcmp=4 + export JNPES_cpl_dcmp=6 + export WPG_cpl_dcmp=6 + export OCN_tasks_cpl_dcmp=20 + export ICE_tasks_cpl_dcmp=10 + export WAV_tasks_cpl_dcmp=20 + + export THRD_cpl_mpi=1 + export INPES_cpl_mpi=4 + export JNPES_cpl_mpi=8 + export WPG_cpl_mpi=6 + export OCN_tasks_cpl_mpi=34 + export ICE_tasks_cpl_mpi=20 + export WAV_tasks_cpl_mpi=28 + + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=8 + export JNPES_cpl_bmrk=8 + export WPG_cpl_bmrk=48 + export OCN_tasks_cpl_bmrk=120 + export OCN_thrds_cpl_bmrk=1 + export ICE_tasks_cpl_bmrk=48 + export ICE_thrds_cpl_bmrk=1 + export WAV_tasks_cpl_bmrk=80 + export WAV_thrds_cpl_bmrk=2 + + export THRD_cpl_c192=2 + export INPES_cpl_c192=6 + export JNPES_cpl_c192=8 + export WPG_cpl_c192=12 + export OCN_tasks_cpl_c192=60 + export ICE_tasks_cpl_c192=24 + export WAV_tasks_cpl_c192=80 + + export ATM_compute_tasks_cdeps_100=12 + export OCN_tasks_cdeps_100=16 + export ICE_tasks_cdeps_100=12 + + export ATM_compute_tasks_cdeps_025=40 + export OCN_tasks_cdeps_025=120 + export ICE_tasks_cdeps_025=48 + + export INPES_aqm=33 + export JNPES_aqm=8 + + export THRD_cpl_unstr=1 + export INPES_cpl_unstr=3 + export JNPES_cpl_unstr=8 + export WPG_cpl_unstr=6 + export OCN_tasks_cpl_unstr=20 + export ICE_tasks_cpl_unstr=10 + export WAV_tasks_cpl_unstr=60 + + export THRD_cpl_unstr_mpi=1 + export INPES_cpl_unstr_mpi=4 + export JNPES_cpl_unstr_mpi=8 + export WPG_cpl_unstr_mpi=6 + export OCN_tasks_cpl_unstr_mpi=34 + export ICE_tasks_cpl_unstr_mpi=20 + export WAV_tasks_cpl_unstr_mpi=50 + + export aqm_omp_num_threads=1 + export atm_omp_num_threads=1 + export chm_omp_num_threads=1 + export ice_omp_num_threads=1 + export lnd_omp_num_threads=1 + export med_omp_num_threads=1 + export ocn_omp_num_threads=1 + export wav_omp_num_threads=1 + +if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then + + export TPN=128 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = orion ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = hercules ]]; then + + export TPN=80 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + + +elif [[ ${MACHINE_ID} = hera ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=4 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = linux ]]; then + + export TPN=40 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8 + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4 + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export ICE_tasks_cpl_thrd=10 + export WAV_tasks_cpl_thrd=12 + +elif [[ ${MACHINE_ID} = jet ]]; then + + export TPN=24 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=12 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + export WRTTASK_PER_GROUP_c384=84 + export WRTTASK_PER_GROUP_c384gdas=88 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=240 # run only in weekly test - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=16; JNPES_cpl_bmrk=16; WPG_cpl_bmrk=48 - OCN_tasks_cpl_bmrk=100 - ICE_tasks_cpl_bmrk=48 - WAV_tasks_cpl_bmrk=100 - WLCLK_cpl_bmrk=120 + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=16 + export JNPES_cpl_bmrk=16 + export WPG_cpl_bmrk=48 + export OCN_tasks_cpl_bmrk=100 + export ICE_tasks_cpl_bmrk=48 + export WAV_tasks_cpl_bmrk=100 + export WLCLK_cpl_bmrk=120 # run only in weekly test - THRD_cpl_c192=2 - INPES_cpl_c192=12; JNPES_cpl_c192=16; WPG_cpl_c192=24 - OCN_tasks_cpl_c192=100 - ICE_tasks_cpl_c192=48 - WAV_tasks_cpl_c192=80 - WLCLK_cpl_c192=120 - -elif [[ $MACHINE_ID = s4 ]]; then - - TPN=32 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1 - - THRD_cpl_atmw_gdas=2 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=248 - - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=24 - OCN_tasks_cpl_bmrk=120 - ICE_tasks_cpl_bmrk=48 - WAV_tasks_cpl_bmrk=80 - -elif [[ $MACHINE_ID = gaea ]]; then - - TPN=24 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=3 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=264 - -elif [[ $MACHINE_ID = cheyenne ]]; then - - TPN=36 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_atmw_gdas=3 - INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 - WAV_tasks_atmw_gdas=264 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=6; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=6; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=20 - - THRD_cpl_dcmp=1 - INPES_cpl_dcmp=4; JNPES_cpl_dcmp=12; WPG_cpl_dcmp=6 - OCN_tasks_cpl_dcmp=20 - ICE_tasks_cpl_dcmp=10 - WAV_tasks_cpl_dcmp=20 - - THRD_cpl_mpi=1 - INPES_cpl_mpi=6; JNPES_cpl_mpi=12; WPG_cpl_mpi=6 - OCN_tasks_cpl_mpi=24 - ICE_tasks_cpl_mpi=12 - WAV_tasks_cpl_mpi=24 - - THRD_cpl_bmrk=2 - INPES_cpl_bmrk=12; JNPES_cpl_bmrk=8; WPG_cpl_bmrk=48 - OCN_tasks_cpl_bmrk=120 - ICE_tasks_cpl_bmrk=48 - WAV_tasks_cpl_bmrk=100 - -elif [[ $MACHINE_ID = stampede ]]; then + export THRD_cpl_c192=2 + export INPES_cpl_c192=12 + export JNPES_cpl_c192=16 + export WPG_cpl_c192=24 + export OCN_tasks_cpl_c192=100 + export ICE_tasks_cpl_c192=48 + export WAV_tasks_cpl_c192=80 + export WLCLK_cpl_c192=120 + +elif [[ ${MACHINE_ID} = s4 ]]; then + + export TPN=32 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=1 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + + export THRD_cpl_bmrk=2 + export INPES_cpl_bmrk=6; + export JNPES_cpl_bmrk=8 + export WPG_cpl_bmrk=24 + export OCN_tasks_cpl_bmrk=120 + export ICE_tasks_cpl_bmrk=48 + export WAV_tasks_cpl_bmrk=80 + +elif [[ ${MACHINE_ID} = gaea ]]; then + + export TPN=128 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=3 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=264 + +elif [[ ${MACHINE_ID} = derecho ]]; then + + export TPN=128 + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=2 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=248 + +elif [[ ${MACHINE_ID} = stampede ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 - TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 - TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 - TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + # TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 + # TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 + # TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 + # TPN_c768=20 ; INPES_c768=8 ; JNPES_c768=16 + # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" + # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + # THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" elif [[ ${MACHINE_ID} = noaacloud ]] ; then - if [[ $PW_CSP == aws ]]; then - TPN=36 - elif [[ $PW_CSP == azure ]]; then - TPN=44 - elif [[ $PW_CSP == google ]]; then - TPN=30 + if [[ ${PW_CSP} == aws ]]; then + export TPN=36 + elif [[ ${PW_CSP} == azure ]]; then + export TPN=44 + elif [[ ${PW_CSP} == google ]]; then + export TPN=30 fi - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - - INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 - OCN_tasks_cpl_dflt=20 - ICE_tasks_cpl_dflt=10 - WAV_tasks_cpl_dflt=20 - - THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - -elif [[ $MACHINE_ID = expanse ]]; then + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + + export INPES_c384=8 + export JNPES_c384=6 + export THRD_c384=2 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_dflt=1 + export INPES_cpl_dflt=3 + export JNPES_cpl_dflt=8 + export WPG_cpl_dflt=6 + export OCN_tasks_cpl_dflt=20 + export ICE_tasks_cpl_dflt=10 + export WAV_tasks_cpl_dflt=20 + + export THRD_cpl_thrd=2 + export INPES_cpl_thrd=3 + export JNPES_cpl_thrd=4; + export WPG_cpl_thrd=6 + export OCN_tasks_cpl_thrd=20 + export ICE_tasks_cpl_thrd=10 + export WAV_tasks_cpl_thrd=12 + +elif [[ ${MACHINE_ID} = expanse ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" exit 1 - TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 - TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 - TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 + # TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 + # TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 + # TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" + # TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 + # THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" else @@ -317,15 +411,85 @@ else fi -WLCLK_dflt=30 +export WLCLK_dflt=30 -export WLCLK=$WLCLK_dflt +export WLCLK=${WLCLK_dflt} export CMP_DATAONLY=false +# Defaults for ufs.configure +export esmf_logkind="ESMF_LOGKIND_MULTI" +export DumpFields="false" +export MED_history_n=1000000 + +export_fv3_v16 () +{ +# Add support for v16 test cases. This section +# will be removed once support for GFSv16 is +# officially depricated. + +# Load in FV3 values +export_fv3 + +# Replace FV3 variable with old values as needed +export USE_MERRA2=.false. +export WRITE_NSFLIP=.false. + +export DIAG_TABLE=diag_table_gfsv16 +export FIELD_TABLE=field_table_gfsv16 +export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v16 + +export DOGP_CLDOPTICS_LUT=.false. +export DOGP_LWSCAT=.false. +export IAER=111 +export ICLIQ_SW=1 +export IOVR=1 +export IMP_PHYSICS=11 +export DNATS=1 +export DO_SAT_ADJ=.true. +export LHEATSTRG=.true. +export LSEASPRAY=.false. +export GWD_OPT=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_SS=.false. +export SATMEDMF=.false. +export ISATMEDMF=0 + +export LSM=1 +export LANDICE=.true. +export IALB=1 +export IEMS=1 + +export NSTF_NAME=2,1,1,0,5 +export FNALBC="'global_snowfree_albedo.bosu.t126.384.190.rg.grb'" +export FNVETC="'global_vegtype.igbp.t126.384.190.rg.grb'" +export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" +export FNSOCC="''" +export FNSMCC="'global_soilmgldas.t126.384.190.grb'" +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" +export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" + +export RF_CUTOFF=30.0 +export FAST_TAU_W_SEC=0.0 + +export ATMRES=C96 +export TILEDFIX=.false. +export DO_CA=.false. +export CA_SGS=.false. + +} + + export_fv3 () { -# nems.configure defaults -export NEMS_CONFIGURE=nems.configure.atm.IN +if [[ -z ${ATMRES+x} || -z ${ATMRES} ]]; then + export ATMRES=C96 +fi + +# ufs.configure defaults +export UFS_CONFIGURE=ufs.configure.atm_esmf.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 @@ -335,26 +499,32 @@ export HAFS=false export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false +export DICE_CDEPS=false +export CICE_PRESCRIBED=false +export CDEPS_INLINE=false export POSTAPP='global' -export USE_MERRA2=.false. +export USE_MERRA2=.true. +export NESTED=.false. export NTILES=6 -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt +export INPES=${INPES_dflt} +export JNPES=${JNPES_dflt} export RESTART_INTERVAL=0 export QUILTING=.true. -export QUILTING_RESTART=.false. +export QUILTING_RESTART=.true. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 export ITASKS=1 export OUTPUT_HISTORY=.true. +export HISTORY_FILE_ON_NATIVE_GRID=.false. export WRITE_DOPOST=.false. export NUM_FILES=2 export FILENAME_BASE="'atm' 'sfc'" export OUTPUT_GRID="'cubed_sphere_grid'" export OUTPUT_FILE="'netcdf'" +export ZSTANDARD_LEVEL=0 export IDEFLATE=0 -export NBITS=0 +export QUANTIZE_NSD=0 export ICHUNK2D=0 export JCHUNK2D=0 export ICHUNK3D=0 @@ -362,11 +532,19 @@ export JCHUNK3D=0 export KCHUNK3D=0 export IMO=384 export JMO=190 -export WRITE_NSFLIP=.false. +export WRITE_NSFLIP=.true. + +export DZ_MIN=6 +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MIN_LAKEICE=0.15 #input file -export DIAG_TABLE=diag_table_gfsv16 -export FIELD_TABLE=field_table_gfsv16 +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN export DOMAINS_STACK_SIZE=3000000 @@ -382,29 +560,38 @@ export EXTERNAL_IC=.true. export MAKE_NH=.true. export MOUNTAIN=.false. export NA_INIT=1 +export DO_VORT_DAMP=.true. +export HYDROSTATIC=.false. +export KORD_XX=9 +export KORD_TM=-9 +export D_CON=1. +export HORD_XX=5 +export HORD_DP=-5 +export HORD_TR=8 # Radiation export DO_RRTMGP=.false. -export DOGP_CLDOPTICS_LUT=.false. -export DOGP_LWSCAT=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. export USE_LW_JACOBIAN=.false. export DAMP_LW_FLUXADJ=.false. export RRTMGP_LW_PHYS_BLKSZ=2 export ICLOUD=0 -export IAER=111 -export ICLIQ_SW=1 -export IOVR=1 +export IAER=1011 +export ICLIQ_SW=2 +export IOVR=3 export LFNC_K=-999 export LFNC_P0=-999 # Microphysics -export IMP_PHYSICS=11 +export IMP_PHYSICS=8 export NWAT=6 # GFDL MP -export DNATS=1 -export DO_SAT_ADJ=.true. -export LHEATSTRG=.true. -export LSEASPRAY=.false. +export DNATS=0 +export DO_SAT_ADJ=.false. +export LHEATSTRG=.false. +export LSEASPRAY=.true. export LGFDLMPRAD=.false. export EFFR_IN=.false. # Thompson MP @@ -431,14 +618,23 @@ export SEAS_OPT=2 export LDIAG_UGWP=.false. export DO_UGWP=.false. export DO_TOFD=.false. -export GWD_OPT=1 -export DO_UGWP_V0=.false. +export GWD_OPT=2 +export DO_UGWP_V0=.true. +export DO_UGWP_V1_W_GSLDRAG=.false. export DO_UGWP_V0_OROG_ONLY=.false. export DO_GSL_DRAG_LS_BL=.false. -export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GWD_OPT_PSL=.false. +export PSL_GWD_DX_FACTOR=6.0 export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. +export KNOB_UGWP_DOKDIS=1 +export KNOB_UGWP_NDX4LH=1 +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_PALAUNCH=500.e2 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0_NST_ONLY=.false. # resolution dependent settings export CDMBWD_c48='0.071,2.1,1.0,1.0' @@ -458,13 +654,11 @@ export CDMBWD=${CDMBWD_c96} export DT_INNER=${DT_INNER_c96} # PBL -export SATMEDMF=.false. -export ISATMEDMF=0 +export SATMEDMF=.true. export HYBEDMF=.true. export SHINHONG=.false. export DO_YSU=.false. export DO_MYNNEDMF=.false. -export DO_MYJPBL=.false. export HURR_PBL=.false. export MONINQ_FAC=1.0 export SFCLAY_COMPUTE_FLUX=.false. @@ -480,6 +674,9 @@ export RAS=.false. export RANDOM_CLDS=.false. export CNVCLD=.true. export PROGSIGMA=.false. +export BETASCU=8.0 +export BETAMCU=1.0 +export BETADCU=2.0 # Aerosol convective scavenging export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' @@ -487,14 +684,30 @@ export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc # SFC export DO_MYJSFC=.false. export DO_MYNNSFCLAY=.false. +export BL_MYNN_TKEADVECT=.false. # LSM -export LSM=1 +export LSM=2 export LSOIL_LSM=4 -export LANDICE=.true. +export LANDICE=.false. export KICE=2 -export IALB=1 -export IEMS=1 +export IALB=2 +export IEMS=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 + +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 + +export DDDMP=0.1 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.true. @@ -506,7 +719,10 @@ export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake poi export IOPT_LAKE=2 # 1=flake, 2=clm lake export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it -export FRAC_ICE=.false. +export FRAC_ICE=.true. # should be false for flake, true for clm_lake + +# Tiled Fix files +export TILEDFIX=.true. export CPL=.false. export CPLCHM=.false. @@ -515,38 +731,31 @@ export CPLICE=.false. export CPLWAV=.false. export CPLWAV2ATM=.false. export CPLLND=.false. +export CPLLND2ATM=.false. export USE_MED_FLUX=.false. export DAYS=1 export NPX=97 export NPY=97 export NPZ=64 export NPZP=65 -export NSTF_NAME=2,1,1,0,5 +export NSTF_NAME=2,1,0,0,0 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'" -export FNSOTC="'global_soiltype.statsgo.t126.384.190.rg.grb'" -export FNSOCC="''" -export FNSMCC="'global_soilmgldas.t126.384.190.grb'" -export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" -export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" -export FNABSC="'global_mxsnoalb.uariz.t126.384.190.rg.grb'" +export FSICL=0 +export FSICS=0 -# Tiled Fix files -export ATMRES=C96 -export TILEDFIX=.false. +# Dynamical core +export FV_CORE_TAU=0. +export RF_CUTOFF=10.0 +export FAST_TAU_W_SEC=0.2 +export DRY_MASS=98320.0 export ENS_NUM=1 export SYEAR=2016 export SMONTH=10 export SDAY=03 export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` +export SECS=$(( SHOUR*3600 )) export FHMAX=$(( DAYS*24 )) export DT_ATMOS=1800 export FHCYC=24 @@ -555,6 +764,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.false. export MAX_OUTPUT_FIELDS=310 +export UPDATE_FULL_OMEGA=.false. # Stochastic physics export STOCHINI=.false. @@ -569,30 +779,46 @@ export SHUM=-999. export LNDP_VAR_LIST="'XXX'" export LNDP_PRT_LIST=-999 export LNDP_MODEL_TYPE=0 +export LNDP_TAU=21600, +export LNDP_LSCALE=500000, +export ISEED_LNDP=2010, #IAU export IAU_INC_FILES="''" +export IAU_DELTHRS=0 +export IAUFHRS=-1 +export IAU_OFFSET=0 export FH_DFI_RADAR='-2e10' #Cellular automata -export DO_CA=.false. -export CA_SGS=.false. +export DO_CA=.true. +export CA_SGS=.true. export CA_GLOBAL=.false. - -export IAU_DRYMASSFIXER=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 #waves -export WW3RSTDTHR=12 -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export WW3OUTDTHR=1 -export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export WW3_RSTDTHR=12 +WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )))" +export WW3_DT_2_RST +export WW3_OUTDTHR=1 +WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" +export WW3_DTFLD +WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )))" +export WW3_DTPNT export DTRST=0 export RSTTYPE=T export GOFILETYPE=1 export POFILETYPE=1 -export OUTPARS_WAV="WND HS FP DP PHS PTP PDIR" +export WW3_OUTPARS="WND HS FP DP PHS PTP PDIR" export CPLILINE='$' export ICELINE='$' export WINDLINE='$' @@ -607,21 +833,23 @@ export FGRDPROC=T export UNIPOINTS='points' export FLAGMASKCOMP=' F' export FLAGMASKOUT=' F' -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END -export WAV_CUR='F' -export WAV_ICE='F' -export WAV_IC1='F' -export WAV_IC5='F' +RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" +export RUN_BEG +RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( SHOUR )))0000" +export RUN_END +export OUT_BEG=${RUN_BEG} +export OUT_END=${RUN_END} +export RST_BEG=${RUN_BEG} +export RST_2_BEG=${RUN_BEG} +export RST_END=${RUN_END} +export RST_2_END=${RUN_END} +export WW3_CUR='F' +export WW3_ICE='F' +export WW3_IC1='F' +export WW3_IC5='F' # ATMW -export MULTIGRID=true -export MODDEF_WAV=mod_def.glo_1deg +export WW3_MULTIGRID=true +export WW3_MODDEF=mod_def.glo_1deg export MESH_WAV=mesh.glo_1deg.nc # ATMA @@ -635,6 +863,204 @@ export PRINT_DIFF_PGR=.false. # Coupling export coupling_interval_fast_sec=0 +export CHOUR=06 +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n + +# Following not used for standalone +export USE_CICE_ALB=.false. + +# GFDL Cloud Microphysics +export FTSFS=90 + + +# NAM sfc +export FNGLAC="'global_glacier.2x2.grb'" +export FNMXIC="'global_maxice.2x2.grb'" +export FNTSFC="'RTGSST.1982.2012.monthly.clim.grb'" +export FNSNOC="'global_snoclim.1.875.grb'" +export FNZORC="'igbp'" +export FNAISC="'IMS-NIC.blended.ice.monthly.clim.grb'" +} + +# Add section for tiled grid namelist +export_tiled() { +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" +export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" +export FNALBC2="'${ATMRES}.facsf.tileX.nc'" +export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" +export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" +export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" +export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" +export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +} + +# Defaults for the CICE6 model namelist, mx100 +export_cice6() { + SECS=$((SHOUR*3600)) + export SECS + export DT_CICE=${DT_ATMOS} + export CICE_NPT=999 + export CICE_RUNTYPE=initial + export CICE_ICE_IC='cice_model.res.nc' + export CICE_RUNID=unknown + export CICE_USE_RESTART_TIME=.false. + export CICE_RESTART_DIR=./RESTART/ + export CICE_RESTART_FILE=iced + + export CICE_RESTART_FORMAT='pnetcdf2' + export CICE_RESTART_IOTASKS=-99 + export CICE_RESTART_REARR='box' + export CICE_RESTART_ROOT=-99 + export CICE_RESTART_STRIDE=-99 + export CICE_RESTART_CHUNK=0,0 + export CICE_RESTART_DEFLATE=0 + + export CICE_HISTORY_FORMAT='pnetcdf2' + export CICE_HISTORY_IOTASKS=-99 + export CICE_HISTORY_REARR='box' + export CICE_HISTORY_ROOT=-99 + export CICE_HISTORY_STRIDE=-99 + export CICE_HISTORY_CHUNK=0,0 + export CICE_HISTORY_DEFLATE=0 + export CICE_HISTORY_PREC=4 + + export CICE_DUMPFREQ=d + export CICE_DUMPFREQ_N=1000 + CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE )) + export CICE_DIAGFREQ + export CICE_HISTFREQ_N="0, 0, 6, 1, 1" + export CICE_HIST_AVG=.true. + export CICE_HISTORY_DIR=./history/ + export CICE_INCOND_DIR=./history/ + export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc + export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc + export CICE_GRIDATM=A + export CICE_GRIDOCN=A + export CICE_GRIDICE=B + export CICE_TR_POND_LVL=.true. + export CICE_RESTART_POND_LVL=.false. + # setting to true will allow Frazil FW and Salt to be included in fluxes sent to ocean + export CICE_FRAZIL_FWSALT=.true. + export CICE_KTHERM=2 + export CICE_TFREEZE_OPTION=mushy + # SlenderX2 + export CICE_NPROC=${ICE_tasks} + np2=$((CICE_NPROC/2)) + CICE_BLCKX=$((NX_GLB/np2)) + CICE_BLCKY=$((NY_GLB/2)) + export np2 + export CICE_BLCKX + export CICE_BLCKY + export CICE_DECOMP=slenderX2 + + #ds2s + export MESH_DICE=none + export stream_files_dice=none + export CICE_PRESCRIBED=false + export DICE_CDEPS=false +} + +# Defaults for the MOM6 model namelist, mx100 +export_mom6() { + export DT_DYNAM_MOM6=1800 + export DT_THERM_MOM6=3600 + export MOM6_INPUT=MOM_input_100.IN + export MOM6_OUTPUT_DIR=./MOM6_OUTPUT + export MOM6_RESTART_DIR=./RESTART/ + export MOM6_RESTART_SETTING=n + export MOM6_RIVER_RUNOFF=False + export MOM6_FRUNOFF='' + export MOM6_CHLCLIM=seawifs_1998-2006_smoothed_2X.nc + export MOM6_USE_LI2016=True + export MOM6_TOPOEDITS='' + # since CPL_SLOW is set to DT_THERM, this should be always be false + export MOM6_THERMO_SPAN=False + export MOM6_USE_WAVES=True + export MOM6_ALLOW_LANDMASK_CHANGES=False + # MOM6 diag + export MOM6_DIAG_COORD_DEF_Z_FILE=interpolate_zgrid_40L.nc + export MOM6_DIAG_MISVAL='-1e34' + # MOM6 IAU + 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 + export OCN_SPPT=-999. + export EPBL=-999. +} + +# Defaults for the WW3 global model +export_ww3() { + export WW3_DOMAIN=mx${OCNRES} + export WW3_MODDEF=mod_def.mx${OCNRES} + export WW3_RSTDTHR=3 + WW3_DT_2_RST="$(printf "%02d" $(( WW3_RSTDTHR*3600 )) )" + export WW3_DT_2_RST + export WW3_OUTDTHR=3 + WW3_DTFLD="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )" + WW3_DTPNT="$(printf "%02d" $(( WW3_OUTDTHR*3600 )) )" + export WW3_DTFLD + export WW3_DTPNT + export WW3_CUR='C' + export WW3_ICE='C' + export WW3_IC1='F' + export WW3_IC5='F' + export WW3_user_sets_restname="true" +} + +# Defaults for the coupled 5-component +export_cmeps() { + export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN + export med_model=cmeps + export atm_model=fv3 + export chm_model=gocart + export ocn_model=mom6 + export ice_model=cice6 + export wav_model=ww3 + export lnd_model=noahmp + export coupling_interval_slow_sec=${DT_THERM_MOM6} + export coupling_interval_fast_sec=${DT_ATMOS} + export MESH_OCN=mesh.mx${OCNRES}.nc + export MESH_ICE=mesh.mx${OCNRES}.nc + export MESH_WAV=mesh.${WW3_DOMAIN}.nc + export CPLMODE=ufs.frac + export pio_rearranger=box + export RUNTYPE=startup + export RESTART_N=${FHMAX} + export CMEPS_RESTART_DIR=./RESTART/ + export cap_dbug_flag=0 + export WRITE_ENDOFRUN_RESTART=.false. + # MOM6 attributes + export use_coldstart=false + export use_mommesh=true + # CICE attributes + export eps_imesh=1.0e-1 + # mediator AO flux + export flux_convergence=0.0 + export flux_iteration=2 + export flux_scheme=0 + # mediator ocean albedo + export ocean_albedo_limit=0.06 + export use_mean_albedos=.false. + # WW3 (used in run_test only) + export WW3_MULTIGRID=false } export_cpl () @@ -645,22 +1071,27 @@ export HAFS=false export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false - +export DICE_CDEPS=false +export CICE_PRESCRIBED=false +export CDEPS_INLINE=false export FV3BMIC='p8c' +export BMIC=.false. +export DAYS=1 +#model configure +export MODEL_CONFIGURE=model_configure.IN export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.false. - -export DAYS=1 +export CHOUR=06 export FHMAX=24 -export FDIAG=6 -export FHZERO=6 - +export FHROT=0 +export DT_ATMOS=720 +export QUILTING_RESTART=.false. +export WRTTASK_PER_GROUP=${WPG_cpl_dflt} export WRITE_NSFLIP=.true. +export OUTPUT_FH='6 -1' # default atm/ocn/ice resolution export ATMRES=C96 @@ -671,63 +1102,49 @@ export NY_GLB=320 export NPZ=127 export NPZP=128 +# Use updated omega calculations if +# hydrostatic is set to false +if [[ "${HYDROSTATIC}" == .false. ]]; then + export UPDATE_FULL_OMEGA=.true. +fi + # default resources export DOMAINS_STACK_SIZE=8000000 +export INPES=${INPES_cpl_dflt} +export JNPES=${JNPES_cpl_dflt} +export THRD=${THRD_cpl_dflt} +export OCN_tasks=${OCN_tasks_cpl_dflt} +export ICE_tasks=${ICE_tasks_cpl_dflt} +export WAV_tasks=${WAV_tasks_cpl_dflt} -export INPES=$INPES_cpl_dflt -export JNPES=$JNPES_cpl_dflt -export THRD=$THRD_cpl_dflt -export WRTTASK_PER_GROUP=$WPG_cpl_dflt +# Set tiled file defaults +export_tiled -OCN_tasks=$OCN_tasks_cpl_dflt -ICE_tasks=$ICE_tasks_cpl_dflt -WAV_tasks=$WAV_tasks_cpl_dflt +# Set CICE6 component defaults +export_cice6 -# component and coupling timesteps -export DT_ATMOS=720 -export DT_INNER=${DT_ATMOS} -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=1800 -export DT_THERM_MOM6=3600 +# Set MOM6 component defaults +export_mom6 -# nems.configure defaults -export NEMS_CONFIGURE=nems.configure.cpld.IN -export med_model=cmeps -export atm_model=fv3 -export chm_model=gocart -export ocn_model=mom6 -export ice_model=cice6 -export wav_model=ww3 -export pio_rearranger=box - -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -export RESTART_N=${FHMAX} -export CPLMODE=nems_frac -export cap_dbug_flag=0 -export use_coldstart=false -export use_mommesh=true -export RUNTYPE=startup -export CICERUNTYPE=initial -export eps_imesh=1.0e-1 -export ATMTILESIZE=`expr $NPX - 1` -export MULTIGRID=false +# Set WW3 component defaults +export_ww3 + +# Set CMEPS component defaults +export_cmeps # FV3 defaults export FRAC_GRID=.true. export CCPP_SUITE=FV3_GFS_v17_coupled_p8 -export INPUT_NML=cpld_control.nml.IN +export INPUT_NML=global_control.nml.IN export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART -export DIAG_TABLE=diag_table_p8_template - +export DIAG_TABLE=diag_table_cpld.IN export DIAG_TABLE_ADDITIONAL='' +export FV3_RUN=cpld_control_run.IN +export TILEDFIX=.false. -export FHROT=0 -export NSOUT=-1 -export OUTPUT_FH='6 -1' +export FHZERO=6 +export DT_INNER=${DT_ATMOS} -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -736,22 +1153,19 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 + export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -#export DZ_MIN=2 export PSM_BC=1 export DDDMP=0.1 -#P8 export DZ_MIN=6 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -759,7 +1173,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export KNOB_UGWP_NSLOPE=1 export DO_GSL_DRAG_LS_BL=.true. @@ -767,23 +1181,23 @@ export DO_GSL_DRAG_SS=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -#P8 + export DO_GSL_DRAG_TOFD=.false. export CDMBWD=${CDMBWD_c96} -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. -#P8 UGWD +# UGWD export DO_UGWP_V0=.true. export DO_UGWP_V1=.false. export DO_GSL_DRAG_LS_BL=.false. export KNOB_UGWP_VERSION=0 -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -797,26 +1211,9 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -#P8 export FSICL=0 export FSICS=0 -# P8 export USE_CICE_ALB=.true. export MIN_SEAICE=1.0e-6 export DNATS=2 @@ -825,9 +1222,6 @@ export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. export SATMEDMF=.true. -# P7 default mushy thermo -export KTHERM=2 -export TFREEZE_OPTION=mushy export CPLFLX=.true. export CPLICE=.true. export CPL=.true. @@ -844,68 +1238,6 @@ export NA_INIT=1 export EXTERNAL_IC=.true. export NGGPS_IC=.true. export MOUNTAIN=.false. - -# MOM6 defaults; 1 degree -export MOM_INPUT=MOM_input_template_100 -export MOM6_RESTART_SETTING=n -export MOM6_RIVER_RUNOFF=False -export FRUNOFF='' -export CHLCLIM=seawifs_1998-2006_smoothed_2X.nc -export MOM6_USE_LI2016=True -# since CPL_SLOW is set to DT_THERM, this should be always be false -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 -# MOM6 stochastics -export DO_OCN_SPPT=False -export PERT_EPBL=False -export OCN_SPPT=-999. -export EPBL=-999. - -# CICE6 defaults; 1 degree -export CICE_DECOMP=slenderX2 -export NPROC_ICE=$ICE_tasks -# SlenderX2 -export CICE_DECOMP=slenderX2 -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export WAVDOMAIN=mx${OCNRES} -export MODDEF_WAV=mod_def.mx${OCNRES} -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export RUNID=unknown -# set large; restart frequency now controlled by restart_n in nems.configure -export DUMPFREQ=d -export DUMPFREQ_N=1000 -export USE_RESTART_TIME=.false. -export RESTART_EXT=.false. -# setting to true will allow Frazil FW and Salt to be -# included in fluxes sent to ocean -export FRAZIL_FWSALT=.true. -# default to write CICE average history files -export CICE_HIST_AVG=.true. -# default CICE B-grid, ATM and OCN are provided by cap on A grid -export GRIDATM=A -export GRIDOCN=A -export GRIDICE=B - -#wave -export WW3RSTDTHR=3 -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export WW3OUTDTHR=3 -export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -# waves when using shel.nml.IN -export WAV_CUR='C' -export WAV_ICE='C' -export WAV_IC1='F' -export WAV_IC5='F' # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory export AOD_FRQ=060000 @@ -913,264 +1245,244 @@ export AOD_FRQ=060000 export RESTART_FILE_PREFIX='' export RESTART_FILE_SUFFIX_SECS='' export RT35D='' + +#CDEPS ds2s +export MESH_DICE=none +export stream_files_dice=none } export_35d_run () { -export CNTL_DIR="" -export LIST_FILES="" + export CNTL_DIR="" + export LIST_FILES="" } export_datm_cdeps () { -export FV3=false -export S2S=false -export HAFS=false -export AQM=false -export DATM_CDEPS=true -export DOCN_CDEPS=false -export CPLWAV=.false. -export CPLCHM=.false. -export DAYS=1 -export FHMAX=24 -export FHROT=0 -export WARM_START=.false. -export WRITE_NSFLIP=.true. - -# atm/ocn/ice resolution -export IATM=1760 -export JATM=880 -export ATM_NX_GLB=$IATM -export ATM_NY_GLB=$JATM -export ATMRES=1760x880 -export OCNRES=100 -export ICERES=1.00 -export NX_GLB=360 -export NY_GLB=320 - -# nems.configure -export NEMS_CONFIGURE=nems.configure.datm_cdeps.IN -export med_model=cmeps -export atm_model=datm -export ocn_model=mom6 -export ice_model=cice6 -export pio_rearranger=box - -export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100 -export OCN_tasks=$OCN_tasks_cdeps_100 -export ICE_tasks=$ICE_tasks_cdeps_100 -# SlenderX2 -export CICE_DECOMP=slenderX2 -export NPROC_ICE=12 -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export ENS_NUM=1 -export SYEAR=2011 -export SMONTH=10 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export CDATE=${SYEAR}${SMONTH}${SDAY}${SHOUR} - -export NFHOUT=6 -export DT_ATMOS=900 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=1800 -export DT_THERM_MOM6=3600 -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -export RESTART_N=${FHMAX} -export CPLMODE=nems_orig_data -export cap_dbug_flag=0 -export use_coldstart=false -export use_mommesh=true -export RUNTYPE=startup -export CICERUNTYPE=initial -export eps_imesh=1.0e-1 -export flux_convergence=0.0 -export flux_iteration=2 -export flux_scheme=0 - -export INPUT_NML=input.mom6.nml.IN -export MODEL_CONFIGURE=datm_cdeps_configure.IN -export DIAG_TABLE=diag_table_template - -# atm defaults -export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. -export mesh_file=cfsr_mesh.nc -export MESH_ATM=DATM_INPUT/${mesh_file} -export atm_datamode=${DATM_SRC} -export stream_files=DATM_INPUT/${FILENAME_BASE}201110.nc -export STREAM_OFFSET=0 - -# MOM6 defaults; 1 degree -export MOM_INPUT=MOM_input_template_100 -export MOM6_RESTART_SETTING=n -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 MOM6_USE_LI2016=False -# MOM6 stochastics -export DO_OCN_SPPT=False -export PERT_EPBL=False -export OCN_SPPT=-999. -export EPBL=-999. -# since coupling_interval_slow is set to DT_THERM, this should be always be false -export MOM6_THERMO_SPAN=False -export MOM6_USE_WAVES=False -export MOM6_ALLOW_LANDMASK_CHANGES=False - -# CICE6 defaults; 1 degree -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export RUNID=unknown -# set large; restart frequency now controlled by restart_n in nems.configure -export DUMPFREQ=d -export DUMPFREQ_N=1000 -export USE_RESTART_TIME=.false. -export RESTART_EXT=.false. -# setting to true will allow Frazil FW and Salt to be -# included in fluxes sent to ocean -export FRAZIL_FWSALT=.true. -# default to write CICE average history files -export CICE_HIST_AVG=.true. -export GRIDATM=A -export GRIDOCN=A -export GRIDICE=B -# default non-mushy thermo -export KTHERM=1 -export TFREEZE_OPTION=linear_salt -export BL_SUFFIX="" -export RT_SUFFIX="" + export FV3=false + export S2S=false + export HAFS=false + export AQM=false + export DATM_CDEPS=true + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export DAYS=1 + + # model configure + export MODEL_CONFIGURE=datm_cdeps_configure.IN + export SYEAR=2011 + export SMONTH=10 + export SDAY=01 + export SHOUR=00 + export FHMAX=24 + export DT_ATMOS=900 + export FHROT=0 + + # required but unused + export WARM_START=.false. + export CPLWAV=.false. + export CPLCHM=.false. + + # atm/ocn/ice resolution + export IATM=1760 + export JATM=880 + export ATM_NX_GLB=${IATM} + export ATM_NY_GLB=${JATM} + export ATMRES="${IATM}x${JATM}" + export OCNRES=100 + export ICERES=1.00 + export NX_GLB=360 + export NY_GLB=320 + + # default resources + export ATM_compute_tasks=${ATM_compute_tasks_cdeps_100} + export OCN_tasks=${OCN_tasks_cdeps_100} + export ICE_tasks=${ICE_tasks_cdeps_100} + + # Set CICE6 component defaults + export_cice6 + # default non-mushy thermo for CICE + export CICE_KTHERM=1 + export CICE_TFREEZE_OPTION=linear_salt + + # Set MOM6 component defaults + export_mom6 + # default no waves + export MOM6_USE_LI2016=False + export MOM6_USE_WAVES=False + export WW3_DOMAIN='' + + # Set CMEPS component defaults + export_cmeps + # default configure + export UFS_CONFIGURE=ufs.configure.datm_cdeps.IN + export atm_model=datm + export CPLMODE=ufs.nfrac.aoflux + + # datm defaults + export INPUT_NML=input.mom6.nml.IN + export DIAG_TABLE=diag_table_template + export DATM_SRC=CFSR + export FILENAME_BASE=cfsr. + export MESH_ATM=${FILENAME_BASE//.}_mesh.nc + export atm_datamode=${DATM_SRC} + export stream_files=INPUT/${FILENAME_BASE}201110.nc + export EXPORT_ALL=.false. + export STREAM_OFFSET=0 + + export BL_SUFFIX="" + export RT_SUFFIX="" } + export_hafs_datm_cdeps () { -export FV3=false -export S2S=false -export HAFS=true -export AQM=false -export DATM_CDEPS=true -export DOCN_CDEPS=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -export atm_model=datm - -export DATM_IN_CONFIGURE=datm_in -export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + export FV3=false + export S2S=false + export HAFS=true + export AQM=false + export DATM_CDEPS=true + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + export atm_model=datm + export DATM_IN_CONFIGURE=datm_in.IN + export DATM_STREAM_CONFIGURE=hafs_datm.streams.era5.IN + export EXPORT_ALL=.false. } + export_hafs_docn_cdeps () { -export FV3=true -export S2S=false -export HAFS=true -export AQM=false -export DOCN_CDEPS=true -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -export ocn_model=docn -export ocn_datamode=sstdata -export pio_rearranger=box - -export DOCN_IN_CONFIGURE=docn_in -export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN + export FV3=true + export S2S=false + export HAFS=true + export AQM=false + export DOCN_CDEPS=true + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + export ocn_model=docn + export ocn_datamode=sstdata + export pio_rearranger=box + export DOCN_IN_CONFIGURE=docn_in.IN + export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN } + export_hafs_regional () { -export FV3=true -export S2S=false -export HAFS=true -export AQM=false -export DATM_CDEPS=false -export DOCN_CDEPS=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt -export NTILES=1 - -# model_configure -export SYEAR=2019 -export SMONTH=08 -export SDAY=29 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export FHMAX=6 -export ENS_NUM=1 -export DT_ATMOS=900 -export CPL=.true. -export RESTART_INTERVAL=0 -export FHROT=0 -export coupling_interval_fast_sec=0 -export QUILTING=.true. -export QUILTING_RESTART=.false. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export OUTPUT_HISTORY=.true. -export WRITE_DOPOST=.false. -export NUM_FILES=2 -export FILENAME_BASE="'atm' 'sfc'" -export OUTPUT_GRID="'regional_latlon'" -export OUTPUT_FILE="'netcdf'" -export IDEFLATE=0 -export NBITS=0 -export NFHOUT=3 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export CEN_LON=-62.0 -export CEN_LAT=25.0 -export LON1=-114.5 -export LAT1=-5.0 -export LON2=-9.5 -export LAT2=55.0 -export DLON=0.03 -export DLAT=0.03 - -# shel.inp -# input.nml -export CPL_IMP_MRG=.true. - -export DIAG_TABLE=diag_table_hafs -export FIELD_TABLE=field_table_hafs -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export WW3OUTDTHR=3 -export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" -export WAV_CUR='C' - -# nems.configure -export med_model=cmeps -export pio_rearranger=box -export CAP_DBUG_FLAG=0 -export RESTART_N=${FHMAX} -export CPLMODE=hafs -export RUNTYPE=startup -export USE_COLDSTART=false -export MESH_WAV=mesh.hafs.nc -export MODDEF_WAV=mod_def.natl_6m -export MULTIGRID=false + export FV3=true + export S2S=false + export HAFS=true + export AQM=false + export DATM_CDEPS=false + export DOCN_CDEPS=false + export CDEPS_INLINE=false + export INPES=${INPES_dflt} + export JNPES=${JNPES_dflt} + export NTILES=1 + + # model_configure + export SYEAR=2019 + export SMONTH=08 + export SDAY=29 + export SHOUR=00 + export SECS=$((SHOUR*3600)) + export FHMAX=6 + export ENS_NUM=1 + export DT_ATMOS=900 + export CPL=.true. + export RESTART_INTERVAL=0 + export FHROT=0 + export coupling_interval_fast_sec=0 + export QUILTING=.true. + export WRITE_GROUP=1 + export WRTTASK_PER_GROUP=6 + export OUTPUT_HISTORY=.true. + export WRITE_DOPOST=.false. + export NUM_FILES=2 + export FILENAME_BASE="'atm' 'sfc'" + export OUTPUT_GRID="'regional_latlon'" + export OUTPUT_FILE="'netcdf'" + export IDEFLATE=0 + export QUANTIZE_NSD=0 + export CEN_LON=-62.0 + export CEN_LAT=25.0 + export LON1=-114.5 + export LAT1=-5.0 + export LON2=-9.5 + export LAT2=55.0 + export DLON=0.03 + export DLAT=0.03 + + # shel.inp + # input.nml + export CPL_IMP_MRG=.true. + export DIAG_TABLE=diag_table_hafs + export FIELD_TABLE=field_table_hafs + + export OCNRES='' + export ICERES='' + export DT_THERM_MOM6='' + + # Set WW3 component defaults + export_ww3 + # default hafs with no ice + export WW3_DOMAIN=natl_6m + export WW3_MODDEF=mod_def.${WW3_DOMAIN} + export WW3_ICE='F' + export WW3_OUTPARS="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" + + # Set CMEPS component defaults + export_cmeps + # default hafs + export ocn_model=hycom + export CPLMODE=hafs + export MESH_WAV=mesh.hafs.nc } export_hafs () { +export_fv3_v16 export FV3=true export S2S=false export HAFS=true export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false -export INPES=$INPES_dflt -export JNPES=$JNPES_dflt +export CDEPS_INLINE=false +export INPES=${INPES_dflt} +export JNPES=${JNPES_dflt} export NTILES=1 +export IMFSHALCNV=2 +export IMFDEEPCNV=2 +export HYBEDMF=.false. +export SATMEDMF=.true. +export MONINQ_FAC=-1.0 +export HURR_PBL=.true. +export ISATMEDMF=1 +export IOPT_SFC=1 +export IOPT_DVEG=2 +export IOPT_CRS=1 +export IOPT_RAD=1 +export IOPT_ALB=2 +export IOPT_STC=1 +export LSM=1 +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export IMP_PHYSICS=11 +export IAER=111 +export CNVGWD=.false. +export LTAEROSOL=.false. +export CDMBWD=1.0,1.0,1.0,1.0 +export LHEATSTRG=.false. +export LRADAR=.true. + +export FV_CORE_TAU=5. +export RF_CUTOFF=30.e2 +export RF_CUTOFF_NEST=50.e2 export IS_MOVING_NEST=".false." export VORTEX_TRACKER=0 @@ -1287,9 +1599,233 @@ export NY_6='' export DX_6='' export DY_6='' -export NFHOUT=3 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NSOUT=-1 -export OUTPUT_FH=-1 +export OUTPUT_FH='3 -1' +} + +export_hrrr() { +export_fv3_v16 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FHMAX=12 + +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV_CORE_TAU=10. +export RF_CUTOFF=7.5e2 + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IOPT_LAKE=2 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +} + +export_hrrr_conus13km() +{ +export_fv3_v16 +export SYEAR=2021 +export SMONTH=05 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke +export FRAC_ICE=.true. +} + +export_rap_common() +{ +export_fv3_v16 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 + +export FV_CORE_TAU=10. +export RF_CUTOFF=7.5e2 + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +} + +export_rap() +{ + export_rap_common + + export DIAG_TABLE=diag_table_rap + export CCPP_SUITE=FV3_RAP + + export IMFSHALCNV=3 + export IMFDEEPCNV=3 + export LSM=3 + export LSOIL_LSM=9 + export KICE=9 + + export GWD_OPT=3 + export DO_UGWP_V0=.false. + export DO_UGWP_V0_OROG_ONLY=.false. + export DO_GSL_DRAG_LS_BL=.true. + export DO_GSL_DRAG_SS=.true. + export DO_GSL_DRAG_TOFD=.true. + export DO_UGWP_V1=.false. + export DO_UGWP_V1_OROG_ONLY=.false. +} + +export_rrfs_v1() +{ + export_rap_common + + export CCPP_SUITE=FV3_RRFS_v1beta + export DIAG_TABLE=diag_table_rap_noah + + export DO_DEEP=.false. + export SHAL_CNV=.false. + export IMFSHALCNV=-1 + export IMFDEEPCNV=-1 + export LHEATSTRG=.false. + export LSM=2 + export LSOIL_LSM=4 } diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index aded0b093c..0bd0535d8a 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -1,118 +1,105 @@ #!/bin/bash -# Do not set ACCNR here or it will break the per-system defaults in rt.sh. +# The authoritative copy of this script lives in the ufs-weather-model at: +# https://github.com/ufs-community/ufs-weather-model/blob/develop/tests/detect_machine.sh +# If any local modifications are made or new platform support added, +# please consider opening an issue and a PR to the ufs-weather-model +# so that this copy remains in sync with its authoritative source +# +# Thank you for your contribution +# If the MACHINE_ID variable is set, skip this script. +[[ -n ${MACHINE_ID:-} ]] && return + +# First detect w/ hostname case $(hostname -f) in - clogin01.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin02.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin03.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin04.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin05.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin06.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin07.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin08.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin09.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - - dlogin01.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin02.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin03.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin04.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin05.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin06.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin07.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin08.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin09.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - - alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - alogin03.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - - gaea10) MACHINE_ID=gaea ;; ### gaea10 - gaea11) MACHINE_ID=gaea ;; ### gaea11 - gaea12) MACHINE_ID=gaea ;; ### gaea12 - gaea13) MACHINE_ID=gaea ;; ### gaea13 - gaea14) MACHINE_ID=gaea ;; ### gaea14 - gaea15) MACHINE_ID=gaea ;; ### gaea15 - gaea16) MACHINE_ID=gaea ;; ### gaea16 - gaea10.ncrc.gov) MACHINE_ID=gaea ;; ### gaea10 - gaea11.ncrc.gov) MACHINE_ID=gaea ;; ### gaea11 - gaea12.ncrc.gov) MACHINE_ID=gaea ;; ### gaea12 - gaea13.ncrc.gov) MACHINE_ID=gaea ;; ### gaea13 - gaea14.ncrc.gov) MACHINE_ID=gaea ;; ### gaea14 - gaea15.ncrc.gov) MACHINE_ID=gaea ;; ### gaea15 - gaea16.ncrc.gov) MACHINE_ID=gaea ;; ### gaea16 - - hfe01) MACHINE_ID=hera ;; ### hera01 - hfe02) MACHINE_ID=hera ;; ### hera02 - hfe03) MACHINE_ID=hera ;; ### hera03 - hfe04) MACHINE_ID=hera ;; ### hera04 - hfe05) MACHINE_ID=hera ;; ### hera05 - hfe06) MACHINE_ID=hera ;; ### hera06 - hfe07) MACHINE_ID=hera ;; ### hera07 - hfe08) MACHINE_ID=hera ;; ### hera08 - hfe09) MACHINE_ID=hera ;; ### hera09 - hfe10) MACHINE_ID=hera ;; ### hera10 - hfe11) MACHINE_ID=hera ;; ### hera11 - hfe12) MACHINE_ID=hera ;; ### hera12 - hecflow01) MACHINE_ID=hera ;; ### heraecflow01 + adecflow0[12].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + alogin0[123].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + clogin0[1-9].cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus01-9 + clogin10.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus10 + dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 + dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 + + gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 + + hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 + hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 + hecflow01) MACHINE_ID=hera ;; ### heraecflow01 s4-submit.ssec.wisc.edu) MACHINE_ID=s4 ;; ### s4 - fe1) MACHINE_ID=jet ;; ### jet01 - fe2) MACHINE_ID=jet ;; ### jet02 - fe3) MACHINE_ID=jet ;; ### jet03 - fe4) MACHINE_ID=jet ;; ### jet04 - fe5) MACHINE_ID=jet ;; ### jet05 - fe6) MACHINE_ID=jet ;; ### jet06 - fe7) MACHINE_ID=jet ;; ### jet07 - fe8) MACHINE_ID=jet ;; ### jet08 - tfe1) MACHINE_ID=jet ;; ### jet09 - tfe2) MACHINE_ID=jet ;; ### jet10 - - Orion-login-1.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1 - Orion-login-2.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion2 - Orion-login-3.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion3 - Orion-login-4.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion4 - - cheyenne1.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - cheyenne2.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne2 - cheyenne3.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne3 - cheyenne4.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne4 - cheyenne5.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne5 - cheyenne6.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne6 - cheyenne1.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - cheyenne2.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne2 - cheyenne3.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne3 - cheyenne4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne4 - cheyenne5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne5 - cheyenne6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne6 - chadmin1.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - chadmin2.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - chadmin3.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - chadmin4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - chadmin5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - chadmin6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 - - login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1 - login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 - login3.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede3 - login4.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede4 - - - login01.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1 - login02.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse2 - -esac + fe[1-8]) MACHINE_ID=jet ;; ### jet01-8 + tfe[12]) MACHINE_ID=jet ;; ### tjet1-2 -case $(echo $PW_CSP:-nono) in + Orion-login-[1-4].HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1-4 - aws) MACHINE_ID=aws ;; ### parallelworks aws - google) MACHINE_ID=gcp ;; ### parallelworks gcp - azure) MACHINE_ID=azure ;; ### parallelworks azure + [Hh]ercules-login-[1-4].[Hh][Pp][Cc].[Mm]s[Ss]tate.[Ee]du) MACHINE_ID=hercules ;; ### hercules1-4 + + derecho1.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho1 + derecho2.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho2 + derecho3.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho3 + derecho4.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho4 + derecho5.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho5 + derecho6.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho6 + derecho7.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho7 + derecho8.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho8 + login[1-4].stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1-4 + + login[1-4].frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera1-4 + c*.frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera compute + + login0[1-2].expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1-2 + + discover3[1-5].prv.cube) MACHINE_ID=discover ;; ### discover31-35 + *) MACHINE_ID=UNKNOWN ;; # Unknown platform esac -[[ ${MACHINE_ID} =~ "aws" || ${MACHINE_ID} =~ "gcp" || ${MACHINE_ID} =~ "azure" ]] && MACHINE_ID=noaacloud -# Overwrite auto-detect with RT_MACHINE if set -MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}} +if [[ ${MACHINE_ID} == "UNKNOWN" ]]; then + case ${PW_CSP:-} in + "aws" | "google" | "azure") MACHINE_ID=noaacloud ;; + *) PW_CSP="UNKNOWN" + esac +fi + +# Overwrite auto-detect with MACHINE if set +MACHINE_ID=${MACHINE:-${MACHINE_ID}} + +# If MACHINE_ID is no longer UNKNNOWN, return it +if [[ "${MACHINE_ID}" != "UNKNOWN" ]]; then + return +fi + +# Try searching based on paths since hostname may not match on compute nodes +if [[ -d /lfs/h3 ]]; then + # We are on NOAA Cactus or Dogwood + MACHINE_ID=wcoss2 +elif [[ -d /lfs/h1 && ! -d /lfs/h3 ]]; then + # We are on NOAA TDS Acorn + MACHINE_ID=acorn +elif [[ -d /mnt/lfs1 ]]; then + # We are on NOAA Jet + MACHINE_ID=jet +elif [[ -d /scratch1 ]]; then + # We are on NOAA Hera + MACHINE_ID=hera +elif [[ -d /work ]]; then + # We are on MSU Orion or Hercules + mount=$(findmnt -n -o SOURCE /home) + if [[ ${mount} =~ "hercules" ]]; then + # We are on Hercules + MACHINE_ID=hercules + else + MACHINE_ID=orion + fi +elif [[ -d /gpfs && -d /ncrc ]]; then + # We are on GAEA. + MACHINE_ID=gaea +elif [[ -d /data/prod ]]; then + # We are on SSEC's S4 + MACHINE_ID=s4 +else + echo WARNING: UNKNOWN PLATFORM 1>&2 +fi diff --git a/tests/error-test.conf b/tests/error-test.conf new file mode 100644 index 0000000000..2382c59a9e --- /dev/null +++ b/tests/error-test.conf @@ -0,0 +1,27 @@ +# This file is an alternative to rt.conf that tests whether the regression test system rt.sh can detect failure conditions. +# +# ./rt.sh [options] -l error-test.conf +# +# If the rt.sh detects errors correctly, the workflow shouldn't finish. Some jobs should be failed or not submitted, and some should succeed. +# See details below. + +# This should succeed +COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | + +# This should succeed +RUN | control_c48.v2.sfc | | baseline | + +# These tests should always fail, and prevent the workflow from completing. +RUN | fail_to_copy | | baseline | +RUN | fail_to_run | | baseline | + +# Using 64-bit dynamics ensures results change, but the test runs. The workflow jobs should complete +# for the COMPILE and RUN, but the results should change. +COMPILE | atm_dyn64 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 | | fv3 | +RUN | control_c48 | | baseline | + +# This compile job should fail, and prevent the workflow from completing. +COMPILE | fail_to_compile | intel | --invalid-argument -DAPP=ATM -DCCPP_SUITES=whatever | | fv3 | + +# This test should not be submitted, because its compile job has failed. +RUN | dependency_unmet | | baseline | diff --git a/tests/fv3_conf/compile_qsub.IN_acorn b/tests/fv3_conf/compile_qsub.IN_acorn index 12aaa9247f..feb553c13f 100644 --- a/tests/fv3_conf/compile_qsub.IN_acorn +++ b/tests/fv3_conf/compile_qsub.IN_acorn @@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_derecho similarity index 81% rename from tests/fv3_conf/compile_qsub.IN_cheyenne rename to tests/fv3_conf/compile_qsub.IN_derecho index 76c01d9623..66a6672c03 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_derecho @@ -11,8 +11,9 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` +module purge -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index 12aaa9247f..feb553c13f 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index bdbd2565d5..97aceeebae 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -4,8 +4,7 @@ #SBATCH --account=@[ACCNR] ##SBATCH --qos=@[QUEUE] #SBATCH --clusters=es -#SBATCH --partition=eslogin -#SBATCH --exclude=gaea9 +#SBATCH --partition=eslogin_c5 #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 #SBATCH --time=180 @@ -16,7 +15,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index 0c1fb4dbff..f146fcbe15 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #SBATCH -e err #SBATCH -o out #SBATCH --account=@[ACCNR] @@ -9,11 +9,14 @@ #SBATCH --job-name="@[JBNME]" set -eux +date_s_start=$(date +%s) +date_start=$(date) +echo -n "${date_s_start}," > job_timestamp.txt +echo "Compile started: ${date_start}" -echo -n " $( date +%s )," > job_timestamp.txt -echo "Compile started: " `date` +"@[PATHRT]/compile.sh" "@[MACHINE_ID]" "@[MAKE_OPT]" "@[COMPILE_ID]" "@[RT_COMPILER]" -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] - -echo "Compile ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt +date_end=$(date) +echo "Compile ended: ${date_end}" +date_s_end=$(date +%s) +echo -n "${date_s_end}," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hercules b/tests/fv3_conf/compile_slurm.IN_hercules new file mode 100644 index 0000000000..619ca76905 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_hercules @@ -0,0 +1,20 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=60 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet index e0e4591e2a..88149c43ac 100644 --- a/tests/fv3_conf/compile_slurm.IN_jet +++ b/tests/fv3_conf/compile_slurm.IN_jet @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_noaacloud b/tests/fv3_conf/compile_slurm.IN_noaacloud index b9c4ca4146..c5a08095c4 100644 --- a/tests/fv3_conf/compile_slurm.IN_noaacloud +++ b/tests/fv3_conf/compile_slurm.IN_noaacloud @@ -11,7 +11,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index f0eeee484b..619ca76905 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_s4 b/tests/fv3_conf/compile_slurm.IN_s4 index 0c1fb4dbff..aa84ba5b00 100644 --- a/tests/fv3_conf/compile_slurm.IN_s4 +++ b/tests/fv3_conf/compile_slurm.IN_s4 @@ -13,7 +13,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 7fcaf25d3d..32eb089d7d 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -10,13 +10,21 @@ elif [ $NPX = 385 ]; then elif [ $NPX = 769 ]; then inputdir=FV3_input_data768 fi -echo "inputdir=$inputdir,NPX=$NPX" + +echo "inputdir=$inputdir,NPX=$NPX,NESTED=$NESTED" OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} SUFFIX=${RT_SUFFIX} if [ $WARM_START = .false. ]; then mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. + if [ "$NESTED" = .true. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_nested/* ./INPUT/. + elif [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_gfsv17/* ./INPUT/. + fi else mkdir INPUT RESTART @@ -82,7 +90,6 @@ else cp $RFILE INPUT/${RFILE_NEW} done fi - fi if [ $TILEDFIX = .true. ]; then @@ -103,12 +110,12 @@ else fi if [ $CPLWAV = .true. ]; then - if [ $MULTIGRID = 'true' ]; then + if [ $WW3_MULTIGRID = 'true' ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points - cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] . + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . cp @[INPUTDATA_ROOT_WW3]/rmp_src* . else - cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . fi fi @@ -129,7 +136,7 @@ fi #merra2 if [ $USE_MERRA2 = .true. ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 95cdc20486..816516d7a0 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -1,4 +1,11 @@ -mkdir INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART + +mkdir -p $CICE_RESTART_DIR +mkdir -p $MOM6_RESTART_DIR +mkdir -p $CMEPS_RESTART_DIR + +mkdir -p $CICE_HISTORY_DIR +mkdir -p $MOM6_OUTPUT_DIR if [[ $ATMRES == C96 ]]; then FV3_DIR=FV3_input_data @@ -8,6 +15,8 @@ fi ICERES=${OCNRES:0:1}.${OCNRES:1} +V2_SFC_FILE=${V2_SFC_FILE:-false} + if [[ $BMIC == .true. ]]; then FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/@[FV3BMIC]/@[ATMRES]_L@[NPZ]/INPUT MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da @@ -18,7 +27,11 @@ else MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} else - FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} + if [ "$V2_SFC_FILE" = "true" ]; then + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES}_v2_sfc + else + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} + fi MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} fi @@ -50,8 +63,8 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .true. ]]; then - cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] mod_def.ww3 - if [[ ${WAVDOMAIN:0:2} != mx ]]; then + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + if [[ ${WW3_DOMAIN:0:2} != mx ]]; then cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . fi fi @@ -96,31 +109,37 @@ 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 - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_1.nc ./INPUT/MOM.res_1.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_2.nc ./INPUT/MOM.res_2.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_3.nc ./INPUT/MOM.res_3.nc + cp ../${DEP_RUN}${SUFFIX}/${MOM6_RESTART_DIR}/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${SUFFIX}/${MOM6_RESTART_DIR}/${RESTART_FILE_PREFIX}.MOM.res_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${SUFFIX}/${MOM6_RESTART_DIR}/${RESTART_FILE_PREFIX}.MOM.res_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${SUFFIX}/${MOM6_RESTART_DIR}/${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 + cp ../${DEP_RUN}${SUFFIX}/${MOM6_RESTART_DIR}/${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 RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + cp ../${DEP_RUN}${SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE} . ls -1 ${RFILE}>rpointer.cpl # CMEPS/CCPP restart file - if [[ $CPLMODE =~ 'nems_frac_aoflux' ]]; then + if [[ $CPLMODE =~ 'ufs.frac.aoflux' ]]; then RFILE_CCPP=ufs.cpld.cpl.ccpp.${RESTART_FILE_SUFFIX_SECS}.nc cp ../${DEP_RUN}${SUFFIX}/${RFILE_CCPP} . fi # CICE restart and pointer files RFILE=iced.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} ./INPUT + cp ../${DEP_RUN}${SUFFIX}/${CICE_RESTART_DIR}/${RFILE} ./INPUT ls -1 ./INPUT/${RFILE}>ice.restart_file # WAVE restart file @@ -129,6 +148,11 @@ else cp ../${DEP_RUN}${SUFFIX}/${RFILE} . fi + # LAND restart file + if [ $CPLLND = .true. ]; then + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + fi + else # C48mx500 warm start from ICs cp ${FV3_IC}/*.nc ./INPUT @@ -149,7 +173,7 @@ fi #merra2 if [ $IAER = 1011 ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat @@ -159,8 +183,8 @@ if [ $IAER = 1011 ]; then fi cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT -cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ls* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_gfsv17/oro_data_ss* ./INPUT if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index 0027c40ffa..fa6fda2bd6 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -1,8 +1,15 @@ -mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART + +mkdir -p $CICE_RESTART_DIR +mkdir -p $MOM6_RESTART_DIR +mkdir -p $CMEPS_RESTART_DIR + +mkdir -p $CICE_HISTORY_DIR +mkdir -p $MOM6_OUTPUT_DIR # DATM fixed input -ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/@[mesh_file] DATM_INPUT -ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/201110/*201110*nc DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/@[MESH_ATM] INPUT +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/201110/*201110*nc INPUT # MOM6 fixed input ICERES="${OCNRES:0:1}.${OCNRES:1}" @@ -22,21 +29,21 @@ 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 else # warm start - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20111001.120000.MOM.res.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/${MOM6_RESTART_DIR}/20111001.120000.MOM.res.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files RFILE="DATM_${DATM_SRC}.cpl.r.2011-10-01-43200.nc" - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + cp ../${DEP_RUN}${RT_SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE} . ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2011-10-01-43200.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2011-10-01-43200.nc ./INPUT RFILE="iced.2011-10-01-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN index 9a07e9f263..b15df08c17 100644 --- a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN +++ b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN @@ -1,8 +1,15 @@ -mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT +mkdir INPUT RESTART + +mkdir -p $CICE_RESTART_DIR +mkdir -p $MOM6_RESTART_DIR +mkdir -p $CMEPS_RESTART_DIR + +mkdir -p $CICE_HISTORY_DIR +mkdir -p $MOM6_OUTPUT_DIR # DATM fixed input -ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/@[mesh_file] DATM_INPUT -ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/202103/gfs.202103.nc DATM_INPUT/gfs.202103.nc +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/@[MESH_ATM] INPUT +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/202103/gfs.202103.nc INPUT/gfs.202103.nc # MOM6 fixed input ICERES="${OCNRES:0:1}.${OCNRES:1}" @@ -25,15 +32,15 @@ if [ $WARM_START = .false. ]; then fi else # warm start - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2021-03-22-18*.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/${MOM6_RESTART_DIR}/MOM.res.2021-03-22-18*.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc.nc" - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + cp ../${DEP_RUN}${RT_SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE} . ls -1 ${RFILE}>rpointer.cpl # CICE restart and pointer files - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2021-03-22-64800.nc ./INPUT + cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2021-03-22-64800.nc ./INPUT RFILE="iced.2021-03-22-64800.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file fi diff --git a/tests/fv3_conf/cpld_docn_dice.IN b/tests/fv3_conf/cpld_docn_dice.IN new file mode 100644 index 0000000000..b2ad8bc18c --- /dev/null +++ b/tests/fv3_conf/cpld_docn_dice.IN @@ -0,0 +1,15 @@ +mkdir -p INPUT + +SUFFIX=${RT_SUFFIX} +if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} +fi + +#CDEPS data files +#cp @[INPUTDATA_ROOT]/DOCN_DICE_cplhist/ufs.cpld.cpl*.nc INPUT +module load nco +ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ice*nc ./INPUT/ufs.cpld.cpl.hi.ice.nc +ncrcat ../${DEP_RUN}${SUFFIX}/ufs.cpld.cpl.hi.ocn*nc ./INPUT/ufs.cpld.cpl.hi.ocn.nc + +#CDEPS fix files - same for ocn/ice +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc INPUT diff --git a/tests/fv3_conf/cpld_docn_pcice.IN b/tests/fv3_conf/cpld_docn_pcice.IN new file mode 100644 index 0000000000..8a82092056 --- /dev/null +++ b/tests/fv3_conf/cpld_docn_pcice.IN @@ -0,0 +1,4 @@ +mkdir -p INPUT + +#For consistency, same CDEPS docn and CICE ice prescribed input files (data and ESMF_mesh) +cp @[INPUTDATA_ROOT]/DOCN_DICE_ERA5/* INPUT diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index da32ceb4a1..81bb264948 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -7,9 +7,8 @@ else cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT fi cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2C.aerclim.2003-2014.*nc . for n in 01 02 03 04 05 06 07 08 09 10 11 12; do -ln -sf merra2C.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NAAI_monclimo2.nc cam5_4_143_NAAI_monclimo2.nc cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/mg2_IN_CCN/cam5_4_143_NPCCN_monclimo2.nc cam5_4_143_NPCCN_monclimo2.nc diff --git a/tests/fv3_conf/fv3_qsub.IN_acorn b/tests/fv3_conf/fv3_qsub.IN_acorn index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_acorn +++ b/tests/fv3_conf/fv3_qsub.IN_acorn @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_derecho similarity index 64% rename from tests/fv3_conf/fv3_qsub.IN_cheyenne rename to tests/fv3_conf/fv3_qsub.IN_derecho index 38b0d6a8ff..5e5c0ac521 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_derecho @@ -11,7 +11,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x -MACHINE_ID=cheyenne +MACHINE_ID=derecho source ./module-setup.sh if [[ ! -d modulefiles ]]; then mkdir modulefiles @@ -30,11 +30,19 @@ export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export MPICH_COLL_OPT_OFF=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -mpiexec_mpt -p %g: -np @[TASKS] omplace ./fv3.exe +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +mpiexec -n @[UFS_TASKS] -ppn @[PPN] --hostfile $PBS_NODEFILE ./fv3.exe echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index 1dbc6bcbb5..6c4819806a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -26,6 +26,14 @@ echo "Model started: "`date` export OMP_STACK_SIZE=512M export OMP_NUM_THREADS=@[THRD] export I_MPI_PMI_LIBRARY=/cm/shared/apps/slurm/current/lib64/libpmi.so + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ba8c72cc6d..ad2459efba 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -3,8 +3,9 @@ #SBATCH -o out #SBATCH --job-name="@[JBNME]" #SBATCH --account=@[ACCNR] -##SBATCH --qos=@[QUEUE] -#SBATCH --clusters=@[PARTITION] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=c5 +#SBATCH --partition=batch #SBATCH --nodes=@[NODES] #SBATCH --ntasks-per-node=@[TPN] #SBATCH --time=@[WLCLK] @@ -31,6 +32,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 225acbd192..a59dcdd9a2 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #SBATCH -e err #SBATCH -o out #SBATCH --account=@[ACCNR] @@ -11,20 +11,23 @@ ### #SBATCH --exclusive set -eux -echo -n " $( date +%s )," > job_timestamp.txt +date_s_start=$(date +%s) +echo -n "${date_s_start}," > job_timestamp.txt set +x -MACHINE_ID=hera +export MACHINE_ID=hera source ./module-setup.sh -module use $PWD/modulefiles +module use "${PWD}/modulefiles" module load modules.fv3 module list set -x -echo "Model started: " `date` +date_start=$(date) +echo "Model started: ${date_start}" export MPI_TYPE_DEPTH=20 export OMP_STACKSIZE=512M +# shellcheck disable=SC2125 export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON @@ -35,7 +38,17 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +# shellcheck disable=SC2102 srun --label -n @[TASKS] ./fv3.exe -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt +date_end=$(date) +echo "Model ended: ${date_end}" +date_s_end=$(date +%s) +echo -n "${date_s_end}," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules new file mode 100644 index 0000000000..36583d3fa5 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -0,0 +1,59 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +### #SBATCH --ntasks=@[TASKS] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] +#SBATCH --job-name="@[JBNME]" +#SBATCH --exclusive + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=hercules +source ./module-setup.sh +module use $PWD/modulefiles +module load modules.fv3 +module list +set -x + +ulimit -s unlimited + +echo "Model started: " `date` + +#export MPI_TYPE_DEPTH=20 +export OMP_STACKSIZE=512M +export KMP_AFFINITY=scatter +export OMP_NUM_THREADS=@[THRD] +#export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +#export PSM_RANKS_PER_CONTEXT=4 +#export PSM_SHAREDCONTEXTS=1 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" + +if [[ @[RT_COMPILER] == intel ]]; then + export I_MPI_EXTRA_FILESYSTEM=ON +elif [[ @[RT_COMPILER] == gnu ]]; then + # For mvapich2 + export MV2_SHMEM_COLL_NUM_COMM=128 +fi + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 21effeb05e..e2cd86c5fa 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -36,6 +36,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] --cpus-per-task=@[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud index 519e29b96a..a85e084160 100644 --- a/tests/fv3_conf/fv3_slurm.IN_noaacloud +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -39,6 +39,13 @@ export OMP_NUM_THREADS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 50e8cf5655..6221286a5f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -39,6 +39,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index f3f9730604..aa22694fcd 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -35,6 +35,13 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 384cc778f0..d80a3e068c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -29,6 +29,13 @@ export LD_BIND_NOW=1 # Avoid job errors because of filesystem synchronization delays #sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + #mpirun -prepend-rank -np $SBATCH_NP ./fv3.exe ibrun -n @[TASKS] ./fv3.exe diff --git a/tests/fv3_conf/hafs_datm_cdeps_era5.IN b/tests/fv3_conf/hafs_datm_cdeps_era5.IN index 66ffd43aa4..ecac2f80c6 100644 --- a/tests/fv3_conf/hafs_datm_cdeps_era5.IN +++ b/tests/fv3_conf/hafs_datm_cdeps_era5.IN @@ -1,5 +1,5 @@ -mkdir -p INPUT_DATM +mkdir -p INPUT -cd INPUT_DATM +cd INPUT rsync -arv @[INPUTDATA_ROOT]/DATM_ERA5_input_data/. . cd - diff --git a/tests/fv3_conf/hafs_docn_cdeps_mom6.IN b/tests/fv3_conf/hafs_docn_cdeps_mom6.IN index 108ced32d4..3e8f89dd57 100644 --- a/tests/fv3_conf/hafs_docn_cdeps_mom6.IN +++ b/tests/fv3_conf/hafs_docn_cdeps_mom6.IN @@ -1,5 +1,5 @@ -mkdir -p INPUT_DOCN +mkdir -p INPUT -cd INPUT_DOCN +cd INPUT rsync -arv @[INPUTDATA_ROOT]/DOCN_MOM6_input_data/. . cd - diff --git a/tests/fv3_conf/hafs_docn_cdeps_oisst.IN b/tests/fv3_conf/hafs_docn_cdeps_oisst.IN index 7fb2706777..c31dd57f27 100644 --- a/tests/fv3_conf/hafs_docn_cdeps_oisst.IN +++ b/tests/fv3_conf/hafs_docn_cdeps_oisst.IN @@ -1,5 +1,5 @@ -mkdir -p INPUT_DOCN +mkdir -p INPUT -cd INPUT_DOCN +cd INPUT rsync -arv @[INPUTDATA_ROOT]/DOCN_OISST_input_data/. . cd - diff --git a/tests/fv3_conf/hafs_fv3_run.IN b/tests/fv3_conf/hafs_fv3_run.IN index 9bd261bc7f..f5374e7506 100644 --- a/tests/fv3_conf/hafs_fv3_run.IN +++ b/tests/fv3_conf/hafs_fv3_run.IN @@ -17,6 +17,8 @@ elif [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_specified_moving_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_storm_following_1nest_atm/* ./INPUT/ elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ @@ -25,16 +27,23 @@ elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_global_multiple_4nests_atm" ] || \ [ ${CNTL_DIR} = "hafs_global_storm_following_1nest_atm" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_${CNTL_DIR}/* ./INPUT/ +elif [ ${CNTL_DIR} = "gnv1_nested" ]; then + cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_global_1nest_atm/* ./INPUT/ else - echo "Error: unsupported experiments ${CNTL_DIR}" + echo "Error: unsupported experiment ${CNTL_DIR}" 1>&2 + exit 1 fi -if [ ${CNTL_DIR} = "hafs_regional_atm_thompson_gfdlsf" ]; then +if [ ${CNTL_DIR} = "hafs_regional_atm_thompson_gfdlsf" ] || [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . fi +#ugwpv1 +if [[ $DO_UGWP_V1 == .true. && ${CNTL_DIR} == "gnv1_nested" ]]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi if [[ $POSTAPP = 'hafs' ]]; then cp ${PATHRT}/parm/post_itag_hafs itag @@ -42,3 +51,16 @@ if [[ $POSTAPP = 'hafs' ]]; then cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi + +if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ]; then + rm -rf OUTPUT + mkdir OUTPUT + cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/MOM6_regional_input_data/* ./INPUT/ + cp ${PATHRT}/parm/MOM_input_hafs ./MOM_input + cp ${PATHRT}/parm/MOM6_data_table_hafs ./data_table +fi +if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ]; then + cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/CDEPS_input_data/gfs_mesh.nc ./INPUT/ + cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/CDEPS_input_data/gfs_forcings.nc ./INPUT/ +fi diff --git a/tests/fv3_conf/hafs_ww3_run.IN b/tests/fv3_conf/hafs_ww3_run.IN index 18a30a4526..9378744d1f 100644 --- a/tests/fv3_conf/hafs_ww3_run.IN +++ b/tests/fv3_conf/hafs_ww3_run.IN @@ -1,10 +1,14 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ [ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then - cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] ./mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] ./mod_def.ww3 cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] ./mesh.hafs.nc - if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then + if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/WW3_hafs_regional_input_data/wind.natl_6m_2020082512 ./wind.ww3 else cp @[INPUTDATA_ROOT_WW3]/wind.natl_6m ./wind.ww3 diff --git a/tests/fv3_conf/hycom_hat10_run.IN b/tests/fv3_conf/hycom_hat10_run.IN index 740e65bbfd..68a8980fb9 100644 --- a/tests/fv3_conf/hycom_hat10_run.IN +++ b/tests/fv3_conf/hycom_hat10_run.IN @@ -1,6 +1,7 @@ if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then rsync -arv @[INPUTDATA_ROOT]/FV3_hafs_input_data/HYCOM_hafs_regional_input_data/. ./ else diff --git a/tests/fv3_conf/lake_control_run.IN b/tests/fv3_conf/lake_control_run.IN index 7d34e82e23..a84ee5dc35 100644 --- a/tests/fv3_conf/lake_control_run.IN +++ b/tests/fv3_conf/lake_control_run.IN @@ -123,7 +123,7 @@ fi #merra2 if [ $USE_MERRA2 = .true. ]; then for n in 01 02 03 04 05 06 07 08 09 10 11 12; do - cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat diff --git a/tests/fv3_conf/lnd_datm_cdeps_era5.IN b/tests/fv3_conf/lnd_datm_cdeps_era5.IN new file mode 100644 index 0000000000..a90189e30e --- /dev/null +++ b/tests/fv3_conf/lnd_datm_cdeps_era5.IN @@ -0,0 +1,22 @@ +mkdir -p RESTART INPUT + +cd INPUT +rsync -arv @[INPUTDATA_ROOT]/DATM_ERA5_input_data_v2/. . +cd - + +SUFFIX=${RT_SUFFIX} +# restart +if [ $WARM_START = .true. ]; then + # NoahMP restart files + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + + # CMEPS restart and pointer files + RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + ls -1 "RESTART/${RFILE1}">rpointer.cpl + + # CDEPS restart and pointer files + RFILE2=ufs.cpld.datm.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE2} RESTART/. + ls -1 "RESTART/${RFILE2}">rpointer.atm +fi diff --git a/tests/fv3_conf/lnd_datm_cdeps_gswp.IN b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN index 02dc5592dc..328f720506 100644 --- a/tests/fv3_conf/lnd_datm_cdeps_gswp.IN +++ b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN @@ -1,6 +1,8 @@ -mkdir -p RESTART INPUT_DATM +mkdir -p RESTART INPUT -cd INPUT_DATM +mkdir -p $CMEPS_RESTART_DIR + +cd INPUT rsync -arv @[INPUTDATA_ROOT]/DATM_GSWP3_input_data/. . cd - @@ -12,7 +14,7 @@ if [ $WARM_START = .true. ]; then # CMEPS restart and pointer files RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + cp ../${DEP_RUN}${SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE1} RESTART/. ls -1 "RESTART/${RFILE1}">rpointer.cpl # CDEPS restart and pointer files diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN index 2a7711070c..6f4f8bd0da 100644 --- a/tests/fv3_conf/noahmp_run.IN +++ b/tests/fv3_conf/noahmp_run.IN @@ -1,26 +1,64 @@ mkdir -p INPUT RESTART -cd INPUT -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile1.nc C96.initial.tile1.nc -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile2.nc C96.initial.tile2.nc -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile3.nc C96.initial.tile3.nc -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile4.nc C96.initial.tile4.nc -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile5.nc C96.initial.tile5.nc -rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile6.nc C96.initial.tile6.nc +if [ "$LNDRES" = "C96" ]; then + inputdir=FV3_input_data +elif [ "$LNDRES" = "C48" ]; then + inputdir=FV3_input_data48 +elif [ "$LNDRES" = "C192" ]; then + inputdir=FV3_input_data192 +elif [ "$LNDRES" = "C384" ]; then + inputdir=FV3_input_data384 +elif [ "$LNDRES" = "C768" ]; then + inputdir=FV3_input_data768 +fi +echo "inputdir=$inputdir,LNDRES=$LNDRES" -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.maximum_snow_albedo.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.slope_type.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_type.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_color.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.substrate_temperature.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_greenness.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_type.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile1.nc oro_data.tile1.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile2.nc oro_data.tile2.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile3.nc oro_data.tile3.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile4.nc oro_data.tile4.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile5.nc oro_data.tile5.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile6.nc oro_data.tile6.nc -rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/C96_grid.tile*.nc . -rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/grid_spec.nc C96_mosaic.nc -cd - +if [ $DATM_CDEPS == true ]; then + targetdir="./INPUT" + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile1.nc ./${targetdir}/@[LNDRES].initial.tile1.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile2.nc ./${targetdir}/@[LNDRES].initial.tile2.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile3.nc ./${targetdir}/@[LNDRES].initial.tile3.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile4.nc ./${targetdir}/@[LNDRES].initial.tile4.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile5.nc ./${targetdir}/@[LNDRES].initial.tile5.nc + rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/$atm_datamode/ufs-land_@[LNDRES]_init_fields.tile6.nc ./${targetdir}/@[LNDRES].initial.tile6.nc +else + if [ "$ATMRES" = "$LNDRES" ]; then + targetdir="./INPUT" + cd ${targetdir} + ln -sf grid_spec.nc @[LNDRES]_mosaic.nc + cd - + else + mkdir -p INPUT/$LNDRES + targetdir="./INPUT/$LNDRES" + fi + + if [ $WARM_START = .false. ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/sfc_data.tile*.nc ${targetdir}/. + else + # land restart file + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + # CMEPS restart and pointer files + RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + # link grid spec file + fi +fi + +if [ "$ATMRES" != "$LNDRES" ]; then + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].maximum_snow_albedo.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].slope_type.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_type.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].soil_color.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].substrate_temperature.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_greenness.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/@[LNDRES].vegetation_type.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile1.nc ${targetdir}/oro_data.tile1.nc + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile2.nc ${targetdir}/oro_data.tile2.nc + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile3.nc ${targetdir}/oro_data.tile3.nc + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile4.nc ${targetdir}/oro_data.tile4.nc + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile5.nc ${targetdir}/oro_data.tile5.nc + rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/@[LNDRES]/oro_@[LNDRES].mx*.tile6.nc ${targetdir}/oro_data.tile6.nc + rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/@[LNDRES]_grid.tile*.nc ${targetdir}/. + rsync -arv @[INPUTDATA_ROOT]/${inputdir}/INPUT/grid_spec.nc ${targetdir}/@[LNDRES]_mosaic.nc +fi diff --git a/tests/fv3_conf/regional_rrfs_a_run.IN b/tests/fv3_conf/regional_rrfs_a_run.IN index d41ea9cee1..41c0ab2f62 100644 --- a/tests/fv3_conf/regional_rrfs_a_run.IN +++ b/tests/fv3_conf/regional_rrfs_a_run.IN @@ -5,18 +5,9 @@ mkdir INPUT RESTART rsync -arv @[INPUTDATA_ROOT]/FV3_regional_rrfs_a/INPUT/. INPUT/. -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m11.nc aeroclim.m11.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc +done cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index 6f4a8a6aaa..09aed8a45e 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -5,18 +5,10 @@ rsync -arv @[INPUTDATA_ROOT]/FV3_regional/INPUT/. INPUT/. cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m11.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc +for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2_y14_24/merra2_1423_${n}.nc aeroclim.m${n}.nc +done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat diff --git a/tests/fv3_conf/wam_run.IN b/tests/fv3_conf/wam_run.IN index d6a3de7838..4419929a51 100644 --- a/tests/fv3_conf/wam_run.IN +++ b/tests/fv3_conf/wam_run.IN @@ -1,10 +1,89 @@ - -inputdir=FV3_input_data_L149 -mkdir INPUT RESTART -cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT/* ./INPUT -cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +inputdir=FV3_input_data_L149_wam +FV3_FIX=@[INPUTDATA_ROOT]/FV3_fix/ +if [ $WARM_START = .true. ]; then + mkdir INPUT RESTART + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT/* ./INPUT + cp @[INPUTDATA_ROOT]/FV3_fix/*grb . +else + mkdir INPUT RESTART + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_C/* ./INPUT/. +fi +if [ $TILEDFIX = .true. ]; then + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/FV3_fix/*grb . +fi if [ $CPLWAV = .true. ]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.* . - cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + if [ $WW3_MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag_gfs itag + cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . fi diff --git a/tests/logs/OpnReqTests_atm_ds2s_docn_dice_hera.log b/tests/logs/OpnReqTests_atm_ds2s_docn_dice_hera.log new file mode 100644 index 0000000000..1c2d4a0109 --- /dev/null +++ b/tests/logs/OpnReqTests_atm_ds2s_docn_dice_hera.log @@ -0,0 +1,545 @@ +Wed Jun 5 22:28:18 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 189.281551 + 0: The maximum resident set size (KB) = 1904608 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_dbg_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 1982.695161 + 0: The maximum resident set size (KB) = 1950552 + +Test dbg_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/dcp_dcp +Checking test dcp results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 209.980608 + 0: The maximum resident set size (KB) = 1965664 + +Test dcp PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/fhz_fhz +Checking test fhz results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 209.766817 + 0: The maximum resident set size (KB) = 1935988 + +Test fhz PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/mpi_mpi +Checking test mpi results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 207.091340 + 0: The maximum resident set size (KB) = 1941540 + +Test mpi PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 204.542879 + 0: The maximum resident set size (KB) = 1933420 + +Test rst PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 203.918756 + 0: The maximum resident set size (KB) = 1944828 + +Test std_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_dice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_63967/thr_thr +Checking test thr results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 205.614149 + 0: The maximum resident set size (KB) = 1953368 + +Test thr PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Thu Jun 6 00:07:29 UTC 2024 +Elapsed time: 01h:39m:12s. Have a nice day! diff --git a/tests/logs/OpnReqTests_atm_ds2s_docn_pcice_hera.log b/tests/logs/OpnReqTests_atm_ds2s_docn_pcice_hera.log new file mode 100644 index 0000000000..8811b89723 --- /dev/null +++ b/tests/logs/OpnReqTests_atm_ds2s_docn_pcice_hera.log @@ -0,0 +1,545 @@ +Thu Jun 6 00:22:02 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_bit_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 184.177791 + 0: The maximum resident set size (KB) = 1931892 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_dbg_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 2011.638869 + 0: The maximum resident set size (KB) = 1964420 + +Test dbg_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/dcp_dcp +Checking test dcp results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 214.626752 + 0: The maximum resident set size (KB) = 1978040 + +Test dcp PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/fhz_fhz +Checking test fhz results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 208.846961 + 0: The maximum resident set size (KB) = 1976948 + +Test fhz PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/mpi_mpi +Checking test mpi results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 213.709999 + 0: The maximum resident set size (KB) = 1963988 + +Test mpi PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 209.768041 + 0: The maximum resident set size (KB) = 1962148 + +Test rst PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 213.174053 + 0: The maximum resident set size (KB) = 1970452 + +Test std_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Nick.Szapiro/FV3_OPNREQ_TEST/OPNREQ_TEST/atm_ds2s_docn_pcice_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/Nick.Szapiro/FV3_OPNREQ_TEST/opnReqTest_1542186/thr_thr +Checking test thr results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 214.969819 + 0: The maximum resident set size (KB) = 1974080 + +Test thr PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Thu Jun 6 02:02:21 UTC 2024 +Elapsed time: 01h:40m:21s. Have a nice day! diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log new file mode 100644 index 0000000000..b52438f989 --- /dev/null +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -0,0 +1,387 @@ +Wed Jul 31 16:54:12 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 279.178521 + 0: The maximum resident set size (KB) = 1452196 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 980.789299 + 0: The maximum resident set size (KB) = 1438832 + +Test dbg_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/dcp_dcp +Checking test dcp results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 250.532991 + 0: The maximum resident set size (KB) = 1435764 + +Test dcp PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/mpi_mpi +Checking test mpi results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 252.858828 + 0: The maximum resident set size (KB) = 1423936 + +Test mpi PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/rst_rst +Checking test rst results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 250.469720 + 0: The maximum resident set size (KB) = 1435444 + +Test rst PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 251.094450 + 0: The maximum resident set size (KB) = 1435512 + +Test std_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/thr_thr +Checking test thr results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 250.907119 + 0: The maximum resident set size (KB) = 1424508 + +Test thr PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Jul 31 18:06:20 UTC 2024 +Elapsed time: 01h:12m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log new file mode 100644 index 0000000000..b2c3bea61e --- /dev/null +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -0,0 +1,215 @@ +Wed Jul 31 15:34:20 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 1598.613826 + 0: The maximum resident set size (KB) = 1535936 + +Test dbg_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK + Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK + + 0: The total amount of wall time = 726.442492 + 0: The maximum resident set size (KB) = 1538112 + +Test rst PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 465.781642 + 0: The maximum resident set size (KB) = 1538556 + +Test std_base PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Jul 31 16:54:12 UTC 2024 +Elapsed time: 01h:19m:53s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log new file mode 100644 index 0000000000..2372e020a4 --- /dev/null +++ b/tests/logs/OpnReqTests_cpld_sfs_hydro_hera.log @@ -0,0 +1,126 @@ + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_intel +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1959771/rst_rst +Checking test rst results .... + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + + 0: The total amount of wall time = 1001.529109 + 0: The maximum resident set size (KB) = 1728376 + +Test rst PASS + +Mon May 13 19:39:40 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1277.784752 + 0: The maximum resident set size (KB) = 1309112 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf021.nc + Moving sfcf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/sfcf024.nc + Moving atmf021.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf021.nc + Moving atmf024.nc .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/atmf024.nc + Moving GFSFLX.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF21 + Moving GFSFLX.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSFLX.GrbF24 + Moving GFSPRS.GrbF21 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF21 + Moving GFSPRS.GrbF24 .........NOT OK. Missing /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/dbg_base_dbg_base/GFSPRS.GrbF24 + + +Test dbg_base FAIL + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_2311078/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1316.780909 + 0: The maximum resident set size (KB) = 1297596 + +Test std_base PASS + +FAILED TESTS: +Test dbg_base failed in check_result failed +Test dcp failed in check_result failed +Test rst failed in check_result failed +OPERATION REQUIREMENT TEST FAILED +Mon May 13 23:18:35 UTC 2024 +Elapsed time: 03h:38m:57s. Have a nice day! +Mon May 13 23:52:01 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3335353/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 3225.706174 + 0: The maximum resident set size (KB) = 1322788 + +Test dbg_base PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Tue May 14 00:50:40 UTC 2024 +Elapsed time: 00h:58m:40s. Have a nice day! + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_sfs_hydro_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3478207/dcp_dcp +Checking test dcp results .... + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + + 0: The total amount of wall time = 1556.575445 + 0: The maximum resident set size (KB) = 1314156 + +Test dcp PASS + diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log new file mode 100644 index 0000000000..3e72d37929 --- /dev/null +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -0,0 +1,80 @@ +Wed Jul 31 13:03:37 UTC 2024 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 1465.693547 + 0: The maximum resident set size (KB) = 757880 + +Test bit_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/dcp_dcp +Checking test dcp results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2169.422270 + 0: The maximum resident set size (KB) = 729460 + +Test dcp PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 2264.677203 + 0: The maximum resident set size (KB) = 730040 + +Test std_base PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/thr_thr +Checking test thr results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 2181.123987 + 0: The maximum resident set size (KB) = 735016 + +Test thr PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Jul 31 15:34:18 UTC 2024 +Elapsed time: 02h:30m:42s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2485d32be3..fb5048da8d 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,5475 +1,384 @@ -Fri Jul 14 16:13:12 UTC 2023 -Start Regression test - -Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 479 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1147 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 988 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 636 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 1067 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 700 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1410 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 166 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 173 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 539 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 364 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 594 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 632 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 444 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 597 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 704 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 379 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 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 724 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 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 727 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 825 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1048 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1839 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 226 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 989 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 325.618614 -The maximum resident set size (KB) = 2944036 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 246.861729 -The maximum resident set size (KB) = 1550436 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 376.351116 -The maximum resident set size (KB) = 2973560 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 221.827994 -The maximum resident set size (KB) = 2861364 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 375.998336 -The maximum resident set size (KB) = 2985388 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 225.601142 -The maximum resident set size (KB) = 2873412 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 353.814082 -The maximum resident set size (KB) = 3281772 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 373.016904 -The maximum resident set size (KB) = 2974104 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 308.969852 -The maximum resident set size (KB) = 2906160 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 376.825271 -The maximum resident set size (KB) = 2974216 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_noaero_p8_intel -Checking test 011 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 281.882395 -The maximum resident set size (KB) = 1571684 - -Test 011 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_nowave_noaero_p8_intel -Checking test 012 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 295.152830 -The maximum resident set size (KB) = 1619808 - -Test 012 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_noaero_p8_agrid_intel -Checking test 013 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 301.390114 -The maximum resident set size (KB) = 1620816 - -Test 013 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_c48_intel -Checking test 014 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 426.034999 -The maximum resident set size (KB) = 2628024 - -Test 014 cpld_control_c48_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/cpld_control_p8_faster_intel -Checking test 015 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 369.432029 -The maximum resident set size (KB) = 2972052 - -Test 015 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_flake_intel -Checking test 016 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 214.750411 -The maximum resident set size (KB) = 567100 - -Test 016 control_flake_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_CubedSphereGrid_intel -Checking test 017 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -The total amount of wall time = 129.566579 -The maximum resident set size (KB) = 518148 - -Test 017 control_CubedSphereGrid_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_latlon_intel -Checking test 018 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 132.462580 -The maximum resident set size (KB) = 520872 - -Test 018 control_latlon_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wrtGauss_netcdf_parallel_intel -Checking test 019 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 134.114608 -The maximum resident set size (KB) = 520268 - -Test 019 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c48_intel -Checking test 020 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 326.534131 -The maximum resident set size (KB) = 676088 - -Test 020 control_c48_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c192_intel -Checking test 021 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 527.035869 -The maximum resident set size (KB) = 619020 - -Test 021 control_c192_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c384_intel -Checking test 022 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 561.373199 -The maximum resident set size (KB) = 930252 - -Test 022 control_c384_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_c384gdas_intel -Checking test 023 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 489.377869 -The maximum resident set size (KB) = 1061392 - -Test 023 control_c384gdas_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_intel -Checking test 024 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 90.676559 -The maximum resident set size (KB) = 522628 - -Test 024 control_stochy_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_restart_intel -Checking test 025 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 50.187997 -The maximum resident set size (KB) = 291912 - -Test 025 control_stochy_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_lndp_intel -Checking test 026 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 83.780115 -The maximum resident set size (KB) = 521780 - -Test 026 control_lndp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_iovr4_intel -Checking test 027 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 136.841520 -The maximum resident set size (KB) = 520720 - -Test 027 control_iovr4_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_iovr5_intel -Checking test 028 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 135.247773 -The maximum resident set size (KB) = 516868 - -Test 028 control_iovr5_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_intel -Checking test 029 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 171.223927 -The maximum resident set size (KB) = 1496012 - -Test 029 control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_restart_p8_intel -Checking test 030 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 93.755940 -The maximum resident set size (KB) = 662276 - -Test 030 control_restart_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_qr_p8_intel -Checking test 031 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 169.827728 -The maximum resident set size (KB) = 1500084 - -Test 031 control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_restart_qr_p8_intel -Checking test 032 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 92.965125 -The maximum resident set size (KB) = 670736 - -Test 032 control_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_decomp_p8_intel -Checking test 033 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 174.952287 -The maximum resident set size (KB) = 1486472 - -Test 033 control_decomp_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_2threads_p8_intel -Checking test 034 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 147.843978 -The maximum resident set size (KB) = 1578640 - -Test 034 control_2threads_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_lndp_intel -Checking test 035 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 314.430541 -The maximum resident set size (KB) = 1494056 - -Test 035 control_p8_lndp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_rrtmgp_intel -Checking test 036 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 227.310244 -The maximum resident set size (KB) = 1545784 - -Test 036 control_p8_rrtmgp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_mynn_intel -Checking test 037 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 172.628141 -The maximum resident set size (KB) = 1498508 - -Test 037 control_p8_mynn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/merra2_thompson_intel -Checking test 038 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 195.281701 -The maximum resident set size (KB) = 1497080 - -Test 038 merra2_thompson_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_intel -Checking test 039 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 276.777664 -The maximum resident set size (KB) = 655360 - -Test 039 regional_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_restart_intel -Checking test 040 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 147.176881 -The maximum resident set size (KB) = 652676 - -Test 040 regional_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_qr_intel -Checking test 041 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 275.921169 -The maximum resident set size (KB) = 655276 - -Test 041 regional_control_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_restart_qr_intel -Checking test 042 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 146.100407 -The maximum resident set size (KB) = 653664 - -Test 042 regional_restart_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_decomp_intel -Checking test 043 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 300.955557 -The maximum resident set size (KB) = 657752 - -Test 043 regional_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_2threads_intel -Checking test 044 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 162.750794 -The maximum resident set size (KB) = 699480 - -Test 044 regional_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_noquilt_intel -Checking test 045 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 - -The total amount of wall time = 274.721215 -The maximum resident set size (KB) = 645704 - -Test 045 regional_noquilt_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_2dwrtdecomp_intel -Checking test 046 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 275.026614 -The maximum resident set size (KB) = 653492 - -Test 046 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_wofs_intel -Checking test 047 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 353.791106 -The maximum resident set size (KB) = 344620 - -Test 047 regional_wofs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_control_intel -Checking test 048 regional_ifi_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 310.474156 -The maximum resident set size (KB) = 651040 - -Test 048 regional_ifi_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_decomp_intel -Checking test 049 regional_ifi_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 325.368989 -The maximum resident set size (KB) = 651416 - -Test 049 regional_ifi_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_ifi_2threads_intel -Checking test 050 regional_ifi_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 187.082142 -The maximum resident set size (KB) = 692548 - -Test 050 regional_ifi_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_intel -Checking test 051 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 404.194153 -The maximum resident set size (KB) = 894328 - -Test 051 rap_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_spp_sppt_shum_skeb_intel -Checking test 052 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 233.812103 -The maximum resident set size (KB) = 984836 - -Test 052 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_decomp_intel -Checking test 053 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 416.358238 -The maximum resident set size (KB) = 893488 - -Test 053 rap_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_2threads_intel -Checking test 054 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 363.094072 -The maximum resident set size (KB) = 971884 - -Test 054 rap_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_restart_intel -Checking test 055 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 205.870936 -The maximum resident set size (KB) = 635832 - -Test 055 rap_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_intel -Checking test 056 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 410.304274 -The maximum resident set size (KB) = 895196 - -Test 056 rap_sfcdiff_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_decomp_intel -Checking test 057 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 422.941106 -The maximum resident set size (KB) = 893592 - -Test 057 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_restart_intel -Checking test 058 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 298.363479 -The maximum resident set size (KB) = 641324 - -Test 058 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_intel -Checking test 059 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 390.926928 -The maximum resident set size (KB) = 893336 - -Test 059 hrrr_control_intel FAIL Tries: 2 - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_qr_intel -Checking test 060 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 383.346414 -The maximum resident set size (KB) = 897792 - -Test 060 hrrr_control_qr_intel FAIL Tries: 2 - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_decomp_intel -Checking test 061 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 401.769842 -The maximum resident set size (KB) = 889180 - -Test 061 hrrr_control_decomp_intel FAIL Tries: 2 - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_2threads_intel -Checking test 062 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 349.878228 -The maximum resident set size (KB) = 969848 - -Test 062 hrrr_control_2threads_intel FAIL Tries: 2 - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1beta_intel -Checking test 065 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 400.200622 -The maximum resident set size (KB) = 889912 - -Test 065 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1nssl_intel -Checking test 066 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 471.773258 -The maximum resident set size (KB) = 581036 - -Test 066 rrfs_v1nssl_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1nssl_nohailnoccn_intel -Checking test 067 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 456.491566 -The maximum resident set size (KB) = 571196 - -Test 067 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 137.759033 -The maximum resident set size (KB) = 793224 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - -The total amount of wall time = 133.836523 -The maximum resident set size (KB) = 738024 - -Test 069 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 93.433249 -The maximum resident set size (KB) = 798152 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_conus13km_hrrr_warm_intel -Checking test 071 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 124.142380 -The maximum resident set size (KB) = 777172 - -Test 071 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 139.327382 -The maximum resident set size (KB) = 796320 - -Test 072 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 81.258259 -The maximum resident set size (KB) = 791608 - -Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 99.121138 -The maximum resident set size (KB) = 787748 - -Test 074 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 334.237801 -The maximum resident set size (KB) = 588388 - -Test 075 control_csawmg_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 331.581267 -The maximum resident set size (KB) = 583220 - -Test 076 control_csawmgt_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_ras_intel -Checking test 077 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 182.193094 -The maximum resident set size (KB) = 548932 - -Test 077 control_ras_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wam_intel -Checking test 078 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 118.118368 -The maximum resident set size (KB) = 271452 - -Test 078 control_wam_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 165.280740 -The maximum resident set size (KB) = 1488084 - -Test 079 control_p8_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 268.958244 -The maximum resident set size (KB) = 652436 - -Test 080 regional_control_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 891.720645 -The maximum resident set size (KB) = 822784 - -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 511.671289 -The maximum resident set size (KB) = 828092 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 083 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 799.495329 -The maximum resident set size (KB) = 807364 - -Test 083 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_CubedSphereGrid_debug_intel -Checking test 084 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 158.277879 -The maximum resident set size (KB) = 674684 - -Test 084 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 158.510314 -The maximum resident set size (KB) = 675764 - -Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_stochy_debug_intel -Checking test 086 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 178.755021 -The maximum resident set size (KB) = 685576 - -Test 086 control_stochy_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_lndp_debug_intel -Checking test 087 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 160.677750 -The maximum resident set size (KB) = 678492 - -Test 087 control_lndp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmg_debug_intel -Checking test 088 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 251.685814 -The maximum resident set size (KB) = 720752 - -Test 088 control_csawmg_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_csawmgt_debug_intel -Checking test 089 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 247.774584 -The maximum resident set size (KB) = 717372 - -Test 089 control_csawmgt_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_ras_debug_intel -Checking test 090 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 161.888081 -The maximum resident set size (KB) = 690048 - -Test 090 control_ras_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_diag_debug_intel -Checking test 091 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 163.051885 -The maximum resident set size (KB) = 730912 - -Test 091 control_diag_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_debug_p8_intel -Checking test 092 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 181.616834 -The maximum resident set size (KB) = 1509704 - -Test 092 control_debug_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_debug_intel -Checking test 093 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1040.287290 -The maximum resident set size (KB) = 675920 - -Test 093 regional_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_debug_intel -Checking test 094 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.249468 -The maximum resident set size (KB) = 1055412 - -Test 094 rap_control_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_debug_intel -Checking test 095 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 289.211516 -The maximum resident set size (KB) = 1052956 - -Test 095 hrrr_control_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_unified_drag_suite_debug_intel -Checking test 096 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 295.678996 -The maximum resident set size (KB) = 1054772 - -Test 096 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_diag_debug_intel -Checking test 097 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 307.341730 -The maximum resident set size (KB) = 1136220 - -Test 097 rap_diag_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_cires_ugwp_debug_intel -Checking test 098 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 302.353203 -The maximum resident set size (KB) = 1056036 - -Test 098 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_unified_ugwp_debug_intel -Checking test 099 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 302.632857 -The maximum resident set size (KB) = 1056760 - -Test 099 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_lndp_debug_intel -Checking test 100 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.056394 -The maximum resident set size (KB) = 1058232 - -Test 100 rap_lndp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_progcld_thompson_debug_intel -Checking test 101 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.453343 -The maximum resident set size (KB) = 1053236 - -Test 101 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_noah_debug_intel -Checking test 102 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.023484 -The maximum resident set size (KB) = 1053268 - -Test 102 rap_noah_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_sfcdiff_debug_intel -Checking test 103 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.335796 -The maximum resident set size (KB) = 1056440 - -Test 103 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 485.728343 -The maximum resident set size (KB) = 1051792 - -Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_v1beta_debug_intel -Checking test 105 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 290.732437 -The maximum resident set size (KB) = 1048080 - -Test 105 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_clm_lake_debug_intel -Checking test 106 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 353.480154 -The maximum resident set size (KB) = 1055528 - -Test 106 rap_clm_lake_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_flake_debug_intel -Checking test 107 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.041019 -The maximum resident set size (KB) = 1050288 - -Test 107 rap_flake_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 295.740577 -The maximum resident set size (KB) = 303436 - -Test 108 control_wam_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 219.873746 -The maximum resident set size (KB) = 895340 - -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 337.394350 -The maximum resident set size (KB) = 772164 - -Test 110 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 178.055510 -The maximum resident set size (KB) = 773860 - -Test 111 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_qr_dyn32_phy32_intel -Checking test 112 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 174.222357 -The maximum resident set size (KB) = 781008 - -Test 112 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_2threads_dyn32_phy32_intel -Checking test 113 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 305.852309 -The maximum resident set size (KB) = 830100 - -Test 113 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_2threads_dyn32_phy32_intel -Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 159.443133 -The maximum resident set size (KB) = 819676 - -Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_decomp_dyn32_phy32_intel -Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 185.860504 -The maximum resident set size (KB) = 770380 - -Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_restart_dyn32_phy32_intel -Checking test 116 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 247.219533 -The maximum resident set size (KB) = 604852 - -Test 116 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_restart_dyn32_phy32_intel -Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 92.694020 -The maximum resident set size (KB) = 606460 - -Test 117 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_qr_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 92.486754 -The maximum resident set size (KB) = 620184 - -Test 118 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 119 rrfs_smoke_conus13km_fast_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 114.777516 -The maximum resident set size (KB) = 715488 - -Test 119 rrfs_smoke_conus13km_fast_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 113.246590 -The maximum resident set size (KB) = 685716 - -Test 120 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 73.353283 -The maximum resident set size (KB) = 723296 - -Test 121 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 87.493076 -The maximum resident set size (KB) = 703496 - -Test 122 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 227.341720 -The maximum resident set size (KB) = 795760 - -Test 123 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.806357 -The maximum resident set size (KB) = 934936 - -Test 124 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 285.676110 -The maximum resident set size (KB) = 936396 - -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/rap_control_dyn64_phy32_debug_intel -Checking test 126 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.974340 -The maximum resident set size (KB) = 953192 - -Test 126 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_atm_intel -Checking test 127 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 248.821878 -The maximum resident set size (KB) = 819312 - -Test 127 hafs_regional_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 298.307353 -The maximum resident set size (KB) = 1184620 - -Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 378.850053 -The maximum resident set size (KB) = 857040 - -Test 129 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 699.674365 -The maximum resident set size (KB) = 890216 - -Test 130 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 892.736609 -The maximum resident set size (KB) = 912956 - -Test 131 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 304.994823 -The maximum resident set size (KB) = 396576 - -Test 132 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 320.290022 -The maximum resident set size (KB) = 374148 - -Test 133 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 367.434487 -The maximum resident set size (KB) = 403900 - -Test 134 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 159.199843 -The maximum resident set size (KB) = 271996 - -Test 135 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 163.612626 -The maximum resident set size (KB) = 273352 - -Test 136 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 456.757893 -The maximum resident set size (KB) = 347884 - -Test 137 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 493.825533 -The maximum resident set size (KB) = 377980 - -Test 138 hafs_global_multiple_4nests_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -The total amount of wall time = 203.160469 -The maximum resident set size (KB) = 412548 - -Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 190.312857 -The maximum resident set size (KB) = 407056 - -Test 140 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 209.326005 -The maximum resident set size (KB) = 401304 - -Test 141 hafs_regional_storm_following_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 244.885014 -The maximum resident set size (KB) = 475720 - -Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 80.744324 -The maximum resident set size (KB) = 283524 - -Test 143 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 802.973696 -The maximum resident set size (KB) = 492992 - -Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 496.802084 -The maximum resident set size (KB) = 516804 - -Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 344.765759 -The maximum resident set size (KB) = 859424 - -Test 146 hafs_regional_docn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 347.176910 -The maximum resident set size (KB) = 849464 - -Test 147 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 943.933377 -The maximum resident set size (KB) = 839624 - -Test 148 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 142.995408 -The maximum resident set size (KB) = 730976 - -Test 149 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 89.433910 -The maximum resident set size (KB) = 709016 - -Test 150 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 135.584759 -The maximum resident set size (KB) = 611512 - -Test 151 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 137.942765 -The maximum resident set size (KB) = 617052 - -Test 152 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 137.500855 -The maximum resident set size (KB) = 612480 - -Test 153 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 142.837120 -The maximum resident set size (KB) = 732900 - -Test 154 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 143.868114 -The maximum resident set size (KB) = 734120 - -Test 155 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 134.728476 -The maximum resident set size (KB) = 614552 - -Test 156 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 443.660307 -The maximum resident set size (KB) = 569664 - -Test 157 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 436.995294 -The maximum resident set size (KB) = 552304 - -Test 158 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 142.919725 -The maximum resident set size (KB) = 734996 - -Test 159 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 249.864885 -The maximum resident set size (KB) = 1984456 - -Test 160 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/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 - -The total amount of wall time = 251.825179 -The maximum resident set size (KB) = 1980324 - -Test 161 datm_cdeps_gfs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_control_cfsr_faster_intel -Checking test 162 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 143.490434 -The maximum resident set size (KB) = 731324 - -Test 162 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_lnd_gswp3_intel -Checking test 163 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -The total amount of wall time = 22.754082 -The maximum resident set size (KB) = 230616 - -Test 163 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/datm_cdeps_lnd_gswp3_rst_intel -Checking test 164 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -The total amount of wall time = 27.869580 -The maximum resident set size (KB) = 233364 - -Test 164 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_p8_atmlnd_sbs_intel -Checking test 165 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -The total amount of wall time = 229.690604 -The maximum resident set size (KB) = 1540852 - -Test 165 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -The total amount of wall time = 105.254312 -The maximum resident set size (KB) = 1527256 - -Test 166 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -The total amount of wall time = 91.463033 -The maximum resident set size (KB) = 540672 - -Test 167 control_atmwav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 240.493684 -The maximum resident set size (KB) = 2815572 - -Test 168 atmaero_control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 280.208677 -The maximum resident set size (KB) = 2879996 - -Test 169 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 286.502373 -The maximum resident set size (KB) = 2886156 - -Test 170 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_atmaq_intel -Checking test 171 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 706.801801 -The maximum resident set size (KB) = 1258348 - -Test 171 regional_atmaq_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15142/regional_atmaq_debug_intel -Checking test 172 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1335.556435 -The maximum resident set size (KB) = 1298104 - -Test 172 regional_atmaq_debug_intel PASS - -FAILED TESTS: -059 hrrr_control_intel failed in check_result -hrrr_control_intel 059 failed in run_test -060 hrrr_control_qr_intel failed in check_result -hrrr_control_qr_intel 060 failed in run_test -061 hrrr_control_decomp_intel failed in check_result -hrrr_control_decomp_intel 061 failed in run_test -062 hrrr_control_2threads_intel failed in check_result -hrrr_control_2threads_intel 062 failed in run_test - -REGRESSION TEST FAILED -Fri Jul 14 17:50:35 UTC 2023 -Elapsed time: 01h:37m:24s. Have a nice day! -Mon Jul 17 17:40:42 UTC 2023 -Start Regression test - -Testing UFSWM Hash: e5a830d61aa335fb2ea7a9791fb00aec1612d844 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile rrfs_intel elapsed time 487 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 - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_intel -Checking test 001 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 390.816588 -The maximum resident set size (KB) = 890996 - -Test 001 hrrr_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_qr_intel -Checking test 002 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 383.037596 -The maximum resident set size (KB) = 900792 - -Test 002 hrrr_control_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_decomp_intel -Checking test 003 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 401.687633 -The maximum resident set size (KB) = 891612 - -Test 003 hrrr_control_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44610/hrrr_control_2threads_intel -Checking test 004 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 348.464854 -The maximum resident set size (KB) = 965832 - -Test 004 hrrr_control_2threads_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Jul 17 17:58:25 UTC 2023 -Elapsed time: 00h:17m:44s. Have a nice day! +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1128655 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [56:47, 02:34](3214 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:27] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:41, 03:03](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:40, 02:47](1967 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [23:57, 03:15](1091 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:42, 03:29](1898 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [51:41, 01:24](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:53] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [02:53, 02:50](1962 MB) + +PASS -- COMPILE 's2swa_intel' [11:26, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [56:45, 01:31](3244 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:45, 01:32](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [40:39, 01:11](3176 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [56:45, 01:57](3265 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:51](3191 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [56:45, 01:15](3475 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [56:45, 01:11](3235 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [56:46, 01:41](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:45, 01:41](3243 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [56:45, 01:54](3223 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 10:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [56:46, 01:55](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [56:46, 02:13](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:47, 01:28](1994 MB) + +PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [57:46, 00:57](2948 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [57:46, 01:28](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [53:21, 01:41](2360 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:42, 01:51](3237 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:40, 01:27](1938 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:55, 01:08](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:29, 01:00](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:31] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:35, 00:59](1981 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [44:37, 00:29](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [43:01, 01:07](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:00, 00:38](1579 MB) +PASS -- TEST 'control_latlon_intel' [42:34, 01:02](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:19, 01:12](1575 MB) +PASS -- TEST 'control_c48_intel' [40:18, 00:41](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [39:22, 00:55](733 MB) +PASS -- TEST 'control_c192_intel' [39:18, 01:05](1692 MB) +PASS -- TEST 'control_c384_intel' [38:11, 02:17](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [37:53, 02:46](1190 MB) +PASS -- TEST 'control_stochy_intel' [37:37, 00:34](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:54, 00:38](434 MB) +PASS -- TEST 'control_lndp_intel' [35:34, 01:13](630 MB) +PASS -- TEST 'control_iovr4_intel' [33:25, 00:42](624 MB) +PASS -- TEST 'control_iovr5_intel' [31:50, 00:46](624 MB) +PASS -- TEST 'control_p8_intel' [30:45, 02:16](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:32, 02:37](1869 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:52, 02:16](1871 MB) +PASS -- TEST 'control_restart_p8_intel' [16:48, 02:08](1020 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:43, 01:46](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:48, 02:13](1024 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:42, 01:38](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:49, 01:59](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:42, 00:23](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [28:12, 02:36](1923 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:49, 02:05](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [26:29, 02:19](1871 MB) +PASS -- TEST 'regional_control_intel' [25:51, 00:13](871 MB) +PASS -- TEST 'regional_restart_intel' [20:02, 00:42](880 MB) +PASS -- TEST 'regional_decomp_intel' [24:52, 00:49](881 MB) +PASS -- TEST 'regional_2threads_intel' [24:41, 01:09](1004 MB) +PASS -- TEST 'regional_noquilt_intel' [23:29, 01:07](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:06, 00:38](872 MB) +PASS -- TEST 'regional_wofs_intel' [22:29, 00:39](1603 MB) + +PASS -- COMPILE 'ifi_intel' [09:21, 08:36] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [48:11, 01:09](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [48:11, 00:14](873 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [48:12, 00:40](1001 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:40] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [46:23, 02:12](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 01:23](1193 MB) +PASS -- TEST 'rap_decomp_intel' [46:23, 02:24](1010 MB) +PASS -- TEST 'rap_2threads_intel' [46:23, 01:50](1095 MB) +PASS -- TEST 'rap_restart_intel' [21:43, 02:44](890 MB) +PASS -- TEST 'rap_sfcdiff_intel' [46:23, 03:09](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:23, 01:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:55, 02:48](892 MB) +PASS -- TEST 'hrrr_control_intel' [46:23, 02:43](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:23, 02:10](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:24, 02:51](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:26, 00:39](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:29, 02:54](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:10, 01:21](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:39, 00:48](1959 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [47:25, 00:54](969 MB) +PASS -- TEST 'control_ras_intel' [47:25, 00:26](658 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:24, 00:40](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [18:06, 02:05](1868 MB) +PASS -- TEST 'regional_control_faster_intel' [16:47, 01:09](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [32:49, 05:44] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:20, 00:49](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:20, 00:57](1617 MB) +PASS -- TEST 'control_stochy_debug_intel' [16:02, 00:39](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:06, 00:20](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:53, 01:02](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [15:50, 01:05](820 MB) +PASS -- TEST 'control_diag_debug_intel' [14:42, 00:51](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [14:19, 00:40](1906 MB) +PASS -- TEST 'regional_debug_intel' [13:49, 00:37](948 MB) +PASS -- TEST 'rap_control_debug_intel' [13:44, 00:58](1199 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:30, 01:08](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:07, 00:45](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:36, 01:10](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:37, 00:49](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:16, 01:30](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 00:37](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 00:57](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:34, 01:04](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:34, 01:08](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:04, 00:26](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:48, 00:36](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 00:51](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:51, 00:50](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 01:05](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:23, 00:35](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:13, 02:44](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [55:12, 03:53] ( 840 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [59:19, 08:56] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:22, 00:57](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:21, 01:55](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:21, 03:27](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:21, 02:38](953 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:22, 01:56](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:21, 03:16](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:09, 02:30](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:14](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [02:18, 11:59] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [48:20, 01:17](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:43, 00:47](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:42, 00:37](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:12, 09:04] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:00, 00:46](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [51:08, 04:03] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:16, 00:56](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:16, 00:50](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [56:16, 00:29](1163 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [56:16, 00:47](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [56:17, 01:15](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [56:16, 00:43](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 03:44] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [56:16, 00:48](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [57:12, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:13, 01:55](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:13, 00:58](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:11, 01:21](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [49:11, 01:54](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:12, 01:35](813 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:11, 00:52](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:12, 01:31](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [49:12, 01:05](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:15, 02:34](448 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:11, 01:37](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:11, 01:21](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:13, 01:39](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:12, 00:51](417 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [50:05, 04:10] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:18, 01:11](689 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [57:13, 13:46] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [44:06, 01:22](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:36, 01:08](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:44, 10:18] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:09, 01:07](795 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:23, 09:34] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:16, 01:40](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:47, 01:37](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:43, 00:15](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [35:22, 00:34](771 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:40, 00:21](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:24, 00:13](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:52, 01:10](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:47, 00:17](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:13, 00:32](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:43, 00:41](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [30:16, 01:12](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:42, 01:20](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:37, 01:19](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:37, 00:37](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:02, 00:37](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:34, 00:39](2036 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:04, 00:54](771 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:01, 00:42](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:01, 00:14](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [50:29, 00:41](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:42, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:43, 01:39](1925 MB) + +PASS -- COMPILE 'atml_intel' [49:03, 10:49] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:18, 02:11](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [03:18, 02:06](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [54:53, 00:53](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [41:57, 04:37] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 02:01](1938 MB) + +PASS -- COMPILE 'atmw_intel' [46:00, 09:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:33](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [44:59, 09:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:10, 01:49](3132 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [04:10, 02:11](3016 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:10, 02:09](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [38:54, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [09:29, 01:54](4564 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 13:51:30 +Ending Date/Time: 20240731 16:18:19 +Total Time: 02h:27m:14s +Compiles Completed: 38/38 +Tests Completed: 177/179 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ACORN REGRESSION TESTING LOG==== +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1769361 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:16, 03:51] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [03:14, 00:46](1702 MB) + +PASS -- COMPILE 'hafsw_intel' [11:24, 10:36] ( 2 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [56:06, 03:33](1710 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:52:30 +Ending Date/Time: 20240731 17:15:35 +Total Time: 00h:23m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF ACORN REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log deleted file mode 100644 index f6ed7c35f0..0000000000 --- a/tests/logs/RegressionTests_cheyenne.log +++ /dev/null @@ -1,7360 +0,0 @@ -Wed Jul 5 20:43:01 MDT 2023 -Start Regression test - -Testing UFSWM Hash: c99ae8dfc6789caf84f7aefdd4acf067269ea91c -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 19a72682afe4daba7443864f7e2119709ec7462b ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g19a72682) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 53e98c7af8e6efd13c4607786c0bbfb6fba08c62 ../FV3 (remotes/origin/feature/evapfratm) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - e1260f1ee711f66a1141010d13511a69c0f8637b ../NOAHMP-interface/noahmp (v3.7.1-292-ge1260f1) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile 001 elapsed time 1368 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1401 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1393 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 443 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 409 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1141 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1128 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1410 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 419 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 1123 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 013 elapsed time 1021 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 014 elapsed time 913 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 834 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 944 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 017 elapsed time 445 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 886 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 023 elapsed time 1166 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 024 elapsed time 340 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 1112 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 026 elapsed time 1172 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 027 elapsed time 446 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 028 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 029 elapsed time 445 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 030 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 984 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 032 elapsed time 1065 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 981 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 034 elapsed time 954 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 035 elapsed time 912 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 037 elapsed time 982 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 038 elapsed time 403 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 039 elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 040 elapsed time 403 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 041 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 042 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 043 elapsed time 646 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 044 elapsed time 410 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 045 elapsed time 416 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 046 elapsed time 651 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 047 elapsed time 534 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 048 elapsed time 331 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 049 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 050 elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 051 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 325.159297 -0:The maximum resident set size (KB) = 2698000 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_gfsv17_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 272.185665 -0:The maximum resident set size (KB) = 1426940 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 325.957112 -0:The maximum resident set size (KB) = 2715056 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 180.519954 -0:The maximum resident set size (KB) = 2575176 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 332.481500 -0:The maximum resident set size (KB) = 2718960 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 201.678027 -0:The maximum resident set size (KB) = 2591472 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 253.577880 -0:The maximum resident set size (KB) = 3177252 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 329.796500 -0:The maximum resident set size (KB) = 2720292 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 279.350002 -0:The maximum resident set size (KB) = 2680704 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 327.320077 -0:The maximum resident set size (KB) = 2715304 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_c192_p8_intel -Checking test 011 cpld_control_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 690.650588 -0:The maximum resident set size (KB) = 3351500 - -Test 011 cpld_control_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c192_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_c192_p8_intel -Checking test 012 cpld_restart_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 385.073358 -0:The maximum resident set size (KB) = 3272548 - -Test 012 cpld_restart_c192_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_noaero_p8_intel -Checking test 013 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 287.620323 -0:The maximum resident set size (KB) = 1436380 - -Test 013 cpld_control_noaero_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_nowave_noaero_p8_intel -Checking test 014 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 197.103036 -0:The maximum resident set size (KB) = 1452048 - -Test 014 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_p8_intel -Checking test 015 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 354.481588 -0:The maximum resident set size (KB) = 2779308 - -Test 015 cpld_debug_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_noaero_p8_intel -Checking test 016 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 336.472924 -0:The maximum resident set size (KB) = 1454100 - -Test 016 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_noaero_p8_agrid_intel -Checking test 017 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 258.971409 -0:The maximum resident set size (KB) = 1455304 - -Test 017 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c48_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_c48_intel -Checking test 018 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 605.978100 -0:The maximum resident set size (KB) = 2584300 - -Test 018 cpld_control_c48_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_pdlib_p8_intel -Checking test 019 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 1186.004783 -0:The maximum resident set size (KB) = 1497320 - -Test 019 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_restart_pdlib_p8_intel -Checking test 020 cpld_restart_pdlib_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 560.731508 -0:The maximum resident set size (KB) = 677344 - -Test 020 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_mpi_pdlib_p8_intel -Checking test 021 cpld_mpi_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 1072.193122 -0:The maximum resident set size (KB) = 1476020 - -Test 021 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_pdlib_p8_intel -Checking test 022 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 1493.301708 -0:The maximum resident set size (KB) = 1515240 - -Test 022 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_flake_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_flake_intel -Checking test 023 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 219.180492 -0:The maximum resident set size (KB) = 501228 - -Test 023 control_flake_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -0:The total amount of wall time = 144.285255 -0:The maximum resident set size (KB) = 454344 - -Test 024 control_CubedSphereGrid_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_CubedSphereGrid_parallel_intel -Checking test 025 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - -0:The total amount of wall time = 149.744220 -0:The maximum resident set size (KB) = 454432 - -Test 025 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_latlon_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_latlon_intel -Checking test 026 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 149.927960 -0:The maximum resident set size (KB) = 454760 - -Test 026 control_latlon_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wrtGauss_netcdf_parallel_intel -Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 150.526515 -0:The maximum resident set size (KB) = 454608 - -Test 027 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c48_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c48_intel -Checking test 028 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 445.651608 -0:The maximum resident set size (KB) = 632448 - -Test 028 control_c48_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c192_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c192_intel -Checking test 029 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 600.523779 -0:The maximum resident set size (KB) = 559144 - -Test 029 control_c192_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c384_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c384_intel -Checking test 030 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 582.811570 -0:The maximum resident set size (KB) = 898896 - -Test 030 control_c384_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c384gdas_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c384gdas_intel -Checking test 031 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 520.717326 -0:The maximum resident set size (KB) = 1027360 - -Test 031 control_c384gdas_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_intel -Checking test 032 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 98.975430 -0:The maximum resident set size (KB) = 456752 - -Test 032 control_stochy_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 56.093040 -0:The maximum resident set size (KB) = 226400 - -Test 033 control_stochy_restart_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_lndp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_lndp_intel -Checking test 034 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 90.506320 -0:The maximum resident set size (KB) = 458652 - -Test 034 control_lndp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_iovr4_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_iovr4_intel -Checking test 035 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 149.357261 -0:The maximum resident set size (KB) = 454520 - -Test 035 control_iovr4_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_iovr5_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_iovr5_intel -Checking test 036 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 150.370063 -0:The maximum resident set size (KB) = 454692 - -Test 036 control_iovr5_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_intel -Checking test 037 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 183.074544 -0:The maximum resident set size (KB) = 1425840 - -Test 037 control_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_restart_p8_intel -Checking test 038 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 96.595234 -0:The maximum resident set size (KB) = 583348 - -Test 038 control_restart_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_qr_p8_intel -Checking test 039 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 177.728474 -0:The maximum resident set size (KB) = 1429440 - -Test 039 control_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_restart_qr_p8_intel -Checking test 040 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 98.312417 -0:The maximum resident set size (KB) = 596444 - -Test 040 control_restart_qr_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_decomp_p8_intel -Checking test 041 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 188.291958 -0:The maximum resident set size (KB) = 1419656 - -Test 041 control_decomp_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_2threads_p8_intel -Checking test 042 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 169.533282 -0:The maximum resident set size (KB) = 1509220 - -Test 042 control_2threads_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_lndp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_lndp_intel -Checking test 043 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -0:The total amount of wall time = 342.361654 -0:The maximum resident set size (KB) = 1426704 - -Test 043 control_p8_lndp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_rrtmgp_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_rrtmgp_intel -Checking test 044 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 249.173972 -0:The maximum resident set size (KB) = 1479352 - -Test 044 control_p8_rrtmgp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_mynn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_mynn_intel -Checking test 045 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 185.254219 -0:The maximum resident set size (KB) = 1430012 - -Test 045 control_p8_mynn_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/merra2_thompson_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/merra2_thompson_intel -Checking test 046 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 209.366092 -0:The maximum resident set size (KB) = 1428492 - -Test 046 merra2_thompson_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_intel -Checking test 047 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 336.934253 -0:The maximum resident set size (KB) = 601740 - -Test 047 regional_control_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 174.020904 -0:The maximum resident set size (KB) = 594944 - -Test 048 regional_restart_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_qr_intel -Checking test 049 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 335.683299 -0:The maximum resident set size (KB) = 601692 - -Test 049 regional_control_qr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 172.285658 -0:The maximum resident set size (KB) = 594948 - -Test 050 regional_restart_qr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_decomp_intel -Checking test 051 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 359.918638 -0:The maximum resident set size (KB) = 598712 - -Test 051 regional_decomp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_2threads_intel -Checking test 052 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 200.525120 -0:The maximum resident set size (KB) = 610740 - -Test 052 regional_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_noquilt_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 329.986306 -0:The maximum resident set size (KB) = 599148 - -Test 053 regional_noquilt_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_netcdf_parallel_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_netcdf_parallel_intel -Checking test 054 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK - -0:The total amount of wall time = 334.044869 -0:The maximum resident set size (KB) = 596064 - -Test 054 regional_netcdf_parallel_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_2dwrtdecomp_intel -Checking test 055 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 332.104526 -0:The maximum resident set size (KB) = 601724 - -Test 055 regional_2dwrtdecomp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/fv3_regional_wofs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_wofs_intel -Checking test 056 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 421.267282 -0:The maximum resident set size (KB) = 276332 - -Test 056 regional_wofs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_intel -Checking test 057 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 465.542504 -0:The maximum resident set size (KB) = 822196 - -Test 057 rap_control_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -0:The total amount of wall time = 257.285152 -0:The maximum resident set size (KB) = 954972 - -Test 058 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_decomp_intel -Checking test 059 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 486.883832 -0:The maximum resident set size (KB) = 821840 - -Test 059 rap_decomp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_intel -Checking test 060 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 441.111074 -0:The maximum resident set size (KB) = 897584 - -Test 060 rap_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_intel -Checking test 061 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 237.385396 -0:The maximum resident set size (KB) = 564880 - -Test 061 rap_restart_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_intel -Checking test 062 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 471.298989 -0:The maximum resident set size (KB) = 822236 - -Test 062 rap_sfcdiff_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_decomp_intel -Checking test 063 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 496.041259 -0:The maximum resident set size (KB) = 821656 - -Test 063 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_restart_intel -Checking test 064 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 344.593210 -0:The maximum resident set size (KB) = 570232 - -Test 064 rap_sfcdiff_restart_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_intel -Checking test 065 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 447.847123 -0:The maximum resident set size (KB) = 819964 - -Test 065 hrrr_control_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_intel -Checking test 066 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 447.246434 -0:The maximum resident set size (KB) = 830056 - -Test 066 hrrr_control_qr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_intel -Checking test 067 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 466.386921 -0:The maximum resident set size (KB) = 819088 - -Test 067 hrrr_control_decomp_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_intel -Checking test 068 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 505.412834 -0:The maximum resident set size (KB) = 893048 - -Test 068 hrrr_control_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 331.755983 -0:The maximum resident set size (KB) = 565500 - -Test 069 hrrr_control_restart_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 337.400903 -0:The maximum resident set size (KB) = 598112 - -Test 070 hrrr_control_restart_qr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_intel -Checking test 071 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 456.727859 -0:The maximum resident set size (KB) = 820224 - -Test 071 rrfs_v1beta_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1nssl_intel -Checking test 072 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 566.825574 -0:The maximum resident set size (KB) = 508936 - -Test 072 rrfs_v1nssl_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1nssl_nohailnoccn_intel -Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 549.949517 -0:The maximum resident set size (KB) = 502964 - -Test 073 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -0:The total amount of wall time = 156.244442 -0:The maximum resident set size (KB) = 667020 - -Test 074 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 95.817584 -0:The maximum resident set size (KB) = 690992 - -Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_intel -Checking test 076 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -0:The total amount of wall time = 140.427198 -0:The maximum resident set size (KB) = 656100 - -Test 076 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 077 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 153.738915 -0:The maximum resident set size (KB) = 668312 - -Test 077 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 86.382051 -0:The maximum resident set size (KB) = 661232 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmg_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 387.574024 -0:The maximum resident set size (KB) = 530084 - -Test 079 control_csawmg_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 371.856005 -0:The maximum resident set size (KB) = 528648 - -Test 080 control_csawmgt_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_intel -Checking test 081 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 205.821712 -0:The maximum resident set size (KB) = 489720 - -Test 081 control_ras_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_intel -Checking test 082 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -0:The total amount of wall time = 130.835744 -0:The maximum resident set size (KB) = 206704 - -Test 082 control_wam_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 169.883342 -0:The maximum resident set size (KB) = 1425680 - -Test 083 control_p8_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_control_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 318.206802 -0:The maximum resident set size (KB) = 601512 - -Test 084 regional_control_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 874.632336 -0:The maximum resident set size (KB) = 697748 - -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 086 rrfs_smoke_conus13km_hrrr_warm_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 = 496.003091 -0:The maximum resident set size (KB) = 722040 - -Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 087 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 783.893615 -0:The maximum resident set size (KB) = 683900 - -Test 087 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -0:The total amount of wall time = 154.593962 -0:The maximum resident set size (KB) = 617824 - -Test 088 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 155.987078 -0:The maximum resident set size (KB) = 613920 - -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 174.274859 -0:The maximum resident set size (KB) = 621228 - -Test 090 control_stochy_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_lndp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 157.357550 -0:The maximum resident set size (KB) = 622836 - -Test 091 control_lndp_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmg_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 246.836475 -0:The maximum resident set size (KB) = 663548 - -Test 092 control_csawmg_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_csawmgt_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 243.200509 -0:The maximum resident set size (KB) = 667868 - -Test 093 control_csawmgt_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 158.734878 -0:The maximum resident set size (KB) = 629496 - -Test 094 control_ras_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_diag_debug_intel -Checking test 095 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 = 158.487975 -0:The maximum resident set size (KB) = 672012 - -Test 095 control_diag_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 174.434727 -0:The maximum resident set size (KB) = 1443112 - -Test 096 control_debug_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_debug_intel -Checking test 097 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -0:The total amount of wall time = 1033.659541 -0:The maximum resident set size (KB) = 625932 - -Test 097 regional_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.295844 -0:The maximum resident set size (KB) = 986596 - -Test 098 rap_control_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 280.418710 -0:The maximum resident set size (KB) = 982756 - -Test 099 hrrr_control_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_unified_drag_suite_debug_intel -Checking test 100 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.964351 -0:The maximum resident set size (KB) = 986564 - -Test 100 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_diag_debug_intel -Checking test 101 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 296.932332 -0:The maximum resident set size (KB) = 1069100 - -Test 101 rap_diag_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_cires_ugwp_debug_intel -Checking test 102 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 = 292.549441 -0:The maximum resident set size (KB) = 986688 - -Test 102 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_unified_ugwp_debug_intel -Checking test 103 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 291.405163 -0:The maximum resident set size (KB) = 986828 - -Test 103 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_lndp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_lndp_debug_intel -Checking test 104 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 288.507059 -0:The maximum resident set size (KB) = 987452 - -Test 104 rap_lndp_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_progcld_thompson_debug_intel -Checking test 105 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.381820 -0:The maximum resident set size (KB) = 986528 - -Test 105 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_debug_intel -Checking test 106 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 280.460360 -0:The maximum resident set size (KB) = 985012 - -Test 106 rap_noah_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_debug_intel -Checking test 107 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 = 286.314835 -0:The maximum resident set size (KB) = 986500 - -Test 107 rap_sfcdiff_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 108 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 = 471.593249 -0:The maximum resident set size (KB) = 984928 - -Test 108 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_debug_intel -Checking test 109 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 281.728904 -0:The maximum resident set size (KB) = 983252 - -Test 109 rrfs_v1beta_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_clm_lake_debug_intel -Checking test 110 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 = 349.649982 -0:The maximum resident set size (KB) = 989272 - -Test 110 rap_clm_lake_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_flake_debug_intel -Checking test 111 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.167790 -0:The maximum resident set size (KB) = 986848 - -Test 111 rap_flake_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -0:The total amount of wall time = 290.236146 -0:The maximum resident set size (KB) = 236236 - -Test 112 control_wam_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -0:The total amount of wall time = 236.196671 -0:The maximum resident set size (KB) = 850804 - -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 386.566331 -0:The maximum resident set size (KB) = 707432 - -Test 114 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 199.707574 -0:The maximum resident set size (KB) = 706828 - -Test 115 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_dyn32_phy32_intel -Checking test 116 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 203.722747 -0:The maximum resident set size (KB) = 713236 - -Test 116 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_dyn32_phy32_intel -Checking test 117 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 360.862576 -0:The maximum resident set size (KB) = 756652 - -Test 117 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_dyn32_phy32_intel -Checking test 118 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 274.160591 -0:The maximum resident set size (KB) = 751908 - -Test 118 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_dyn32_phy32_intel -Checking test 119 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 210.420586 -0:The maximum resident set size (KB) = 705452 - -Test 119 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_dyn32_phy32_intel -Checking test 120 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 283.905528 -0:The maximum resident set size (KB) = 540344 - -Test 120 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_dyn32_phy32_intel -Checking test 121 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 = 103.273128 -0:The maximum resident set size (KB) = 533896 - -Test 121 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 122 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 = 105.465016 -0:The maximum resident set size (KB) = 558988 - -Test 122 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 265.677261 -0:The maximum resident set size (KB) = 726452 - -Test 123 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 281.733467 -0:The maximum resident set size (KB) = 872648 - -Test 124 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 276.551506 -0:The maximum resident set size (KB) = 869180 - -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 287.217267 -0:The maximum resident set size (KB) = 892536 - -Test 126 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 = 246.041783 -0:The maximum resident set size (KB) = 741904 - -Test 127 hafs_regional_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -0:The total amount of wall time = 270.122271 -0:The maximum resident set size (KB) = 1100708 - -Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 451.121553 -0:The maximum resident set size (KB) = 743384 - -Test 129 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1058.817772 -0:The maximum resident set size (KB) = 767948 - -Test 130 hafs_regional_atm_wav_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1097.740043 -0:The maximum resident set size (KB) = 793500 - -Test 131 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -0:The total amount of wall time = 351.987612 -0:The maximum resident set size (KB) = 300872 - -Test 132 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_telescopic_2nests_atm_intel -Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -0:The total amount of wall time = 400.251695 -0:The maximum resident set size (KB) = 319572 - -Test 133 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_1nest_atm_intel -Checking test 134 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -0:The total amount of wall time = 159.503025 -0:The maximum resident set size (KB) = 214448 - -Test 134 hafs_global_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_multiple_4nests_atm_intel -Checking test 135 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -0:The total amount of wall time = 450.621457 -0:The maximum resident set size (KB) = 299556 - -Test 135 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_specified_moving_1nest_atm_intel -Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -0:The total amount of wall time = 227.983917 -0:The maximum resident set size (KB) = 317732 - -Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -0:The total amount of wall time = 214.066752 -0:The maximum resident set size (KB) = 317796 - -Test 137 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -0:The total amount of wall time = 276.306954 -0:The maximum resident set size (KB) = 376172 - -Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_global_storm_following_1nest_atm_intel -Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 62.887968 -0:The maximum resident set size (KB) = 233072 - -Test 139 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -0:The total amount of wall time = 764.534769 -0:The maximum resident set size (KB) = 402944 - -Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 730.710325 -0:The maximum resident set size (KB) = 426668 - -Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_docn_intel -Checking test 142 hafs_regional_docn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 371.260662 -0:The maximum resident set size (KB) = 754888 - -Test 142 hafs_regional_docn_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_docn_oisst_intel -Checking test 143 hafs_regional_docn_oisst_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 373.515714 -0:The maximum resident set size (KB) = 734308 - -Test 143 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hafs_regional_datm_cdeps_intel -Checking test 144 hafs_regional_datm_cdeps_intel results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - -0:The total amount of wall time = 1275.663526 -0:The maximum resident set size (KB) = 887964 - -Test 144 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_intel -Checking test 145 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 159.134695 -0:The maximum resident set size (KB) = 716692 - -Test 145 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_restart_cfsr_intel -Checking test 146 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 99.799632 -0:The maximum resident set size (KB) = 704844 - -Test 146 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_gefs_intel -Checking test 147 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 158.227759 -0:The maximum resident set size (KB) = 607536 - -Test 147 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_iau_gefs_intel -Checking test 148 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 161.489380 -0:The maximum resident set size (KB) = 607524 - -Test 148 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_stochy_gefs_intel -Checking test 149 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 161.127990 -0:The maximum resident set size (KB) = 607516 - -Test 149 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_ciceC_cfsr_intel -Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 165.886616 -0:The maximum resident set size (KB) = 716692 - -Test 150 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_bulk_cfsr_intel -Checking test 151 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 159.273747 -0:The maximum resident set size (KB) = 716676 - -Test 151 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_bulk_gefs_intel -Checking test 152 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 158.690013 -0:The maximum resident set size (KB) = 607528 - -Test 152 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_mx025_cfsr_intel -Checking test 153 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 730.314598 -0:The maximum resident set size (KB) = 514276 - -Test 153 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_mx025_gefs_intel -Checking test 154 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 418.336128 -0:The maximum resident set size (KB) = 495352 - -Test 154 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_multiple_files_cfsr_intel -Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 165.236918 -0:The maximum resident set size (KB) = 727828 - -Test 155 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_3072x1536_cfsr_intel -Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 266.197143 -0:The maximum resident set size (KB) = 1942164 - -Test 156 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_gfs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_gfs_intel -Checking test 157 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 266.944343 -0:The maximum resident set size (KB) = 1910132 - -Test 157 datm_cdeps_gfs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_debug_cfsr_intel -Checking test 158 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - -0:The total amount of wall time = 372.934989 -0:The maximum resident set size (KB) = 700492 - -Test 158 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 166.421714 -0:The maximum resident set size (KB) = 716684 - -Test 159 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -0:The total amount of wall time = 10.709399 -0:The maximum resident set size (KB) = 208264 - -Test 160 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_lnd_gswp3_rst_intel -Checking test 161 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -0:The total amount of wall time = 15.168110 -0:The maximum resident set size (KB) = 208252 - -Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_atmlnd_sbs_intel -Checking test 162 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -0:The total amount of wall time = 234.773768 -0:The maximum resident set size (KB) = 1464296 - -Test 162 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmwav_control_noaero_p8_intel -Checking test 163 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -0:The total amount of wall time = 99.832231 -0:The maximum resident set size (KB) = 1437236 - -Test 163 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_atmwav_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_atmwav_intel -Checking test 164 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -0:The total amount of wall time = 100.001524 -0:The maximum resident set size (KB) = 475296 - -Test 164 control_atmwav_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_intel -Checking test 165 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 248.185483 -0:The maximum resident set size (KB) = 2703876 - -Test 165 atmaero_control_p8_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_rad_intel -Checking test 166 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 303.631878 -0:The maximum resident set size (KB) = 2758076 - -Test 166 atmaero_control_p8_rad_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/atmaero_control_p8_rad_micro_intel -Checking test 167 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 305.950722 -0:The maximum resident set size (KB) = 2764280 - -Test 167 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_atmaq_intel -Checking test 168 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 1052.107445 -0:The maximum resident set size (KB) = 1000512 - -Test 168 regional_atmaq_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_atmaq_faster_intel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/regional_atmaq_faster_intel -Checking test 169 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 674.649267 -0:The maximum resident set size (KB) = 1000520 - -Test 169 regional_atmaq_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_c48_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_c48_gnu -Checking test 170 control_c48_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 818.988093 -0:The maximum resident set size (KB) = 678792 - -Test 170 control_c48_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_gnu -Checking test 171 control_stochy_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 177.269379 -0:The maximum resident set size (KB) = 443508 - -Test 171 control_stochy_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_gnu -Checking test 172 control_ras_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 293.532340 -0:The maximum resident set size (KB) = 451896 - -Test 172 control_ras_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_p8_gnu -Checking test 173 control_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 309.909384 -0:The maximum resident set size (KB) = 1226004 - -Test 173 control_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_flake_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_flake_gnu -Checking test 174 control_flake_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 351.974158 -0:The maximum resident set size (KB) = 489984 - -Test 174 control_flake_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_gnu -Checking test 175 rap_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 710.179610 -0:The maximum resident set size (KB) = 792084 - -Test 175 rap_control_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_decomp_gnu -Checking test 176 rap_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 714.651901 -0:The maximum resident set size (KB) = 791424 - -Test 176 rap_decomp_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_gnu -Checking test 177 rap_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 650.295317 -0:The maximum resident set size (KB) = 865364 - -Test 177 rap_2threads_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_gnu -Checking test 178 rap_restart_gnu results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 356.553535 -0:The maximum resident set size (KB) = 537072 - -Test 178 rap_restart_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_gnu -Checking test 179 rap_sfcdiff_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 715.013344 -0:The maximum resident set size (KB) = 791948 - -Test 179 rap_sfcdiff_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_decomp_gnu -Checking test 180 rap_sfcdiff_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 724.898784 -0:The maximum resident set size (KB) = 791240 - -Test 180 rap_sfcdiff_decomp_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_sfcdiff_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_sfcdiff_restart_gnu -Checking test 181 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 528.559430 -0:The maximum resident set size (KB) = 544280 - -Test 181 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_gnu -Checking test 182 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 685.472078 -0:The maximum resident set size (KB) = 788764 - -Test 182 hrrr_control_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_gnu -Checking test 183 hrrr_control_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 686.697772 -0:The maximum resident set size (KB) = 801960 - -Test 183 hrrr_control_qr_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_gnu -Checking test 184 hrrr_control_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 707.422259 -0:The maximum resident set size (KB) = 854800 - -Test 184 hrrr_control_2threads_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_gnu -Checking test 185 hrrr_control_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 683.019337 -0:The maximum resident set size (KB) = 788064 - -Test 185 hrrr_control_decomp_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_gnu -Checking test 186 hrrr_control_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 509.157875 -0:The maximum resident set size (KB) = 539412 - -Test 186 hrrr_control_restart_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_gnu -Checking test 187 hrrr_control_restart_qr_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 518.651592 -0:The maximum resident set size (KB) = 569092 - -Test 187 hrrr_control_restart_qr_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_gnu -Checking test 188 rrfs_v1beta_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 698.745508 -0:The maximum resident set size (KB) = 788772 - -Test 188 rrfs_v1beta_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 189 rrfs_smoke_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -0:The total amount of wall time = 239.684101 -0:The maximum resident set size (KB) = 638464 - -Test 189 rrfs_smoke_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu -Checking test 190 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 149.398348 -0:The maximum resident set size (KB) = 657428 - -Test 190 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 191 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 240.670062 -0:The maximum resident set size (KB) = 641196 - -Test 191 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_gnu -Checking test 192 rrfs_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -0:The total amount of wall time = 218.953937 -0:The maximum resident set size (KB) = 613072 - -Test 192 rrfs_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -Checking test 193 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 131.975441 -0:The maximum resident set size (KB) = 613428 - -Test 193 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_diag_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - -0:The total amount of wall time = 82.036308 -0:The maximum resident set size (KB) = 491452 - -Test 194 control_diag_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/regional_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - -0:The total amount of wall time = 473.331031 -0:The maximum resident set size (KB) = 567048 - -Test 195 regional_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - -0:The total amount of wall time = 143.905358 -0:The maximum resident set size (KB) = 805716 - -Test 196 rap_control_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/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 - -0:The total amount of wall time = 140.783751 -0:The maximum resident set size (KB) = 801176 - -Test 197 hrrr_control_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_diag_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_diag_debug_gnu -Checking test 198 rap_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 151.852815 -0:The maximum resident set size (KB) = 888796 - -Test 198 rap_diag_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 199 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 232.626807 -0:The maximum resident set size (KB) = 803956 - -Test 199 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_progcld_thompson_debug_gnu -Checking test 200 rap_progcld_thompson_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 144.472148 -0:The maximum resident set size (KB) = 805820 - -Test 200 rap_progcld_thompson_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_v1beta_debug_gnu -Checking test 201 rrfs_v1beta_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 142.981555 -0:The maximum resident set size (KB) = 801048 - -Test 201 rrfs_v1beta_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_ras_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_ras_debug_gnu -Checking test 202 control_ras_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 80.439943 -0:The maximum resident set size (KB) = 446276 - -Test 202 control_ras_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_stochy_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_stochy_debug_gnu -Checking test 203 control_stochy_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 88.099258 -0:The maximum resident set size (KB) = 438232 - -Test 203 control_stochy_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_debug_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_debug_p8_gnu -Checking test 204 control_debug_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 90.634135 -0:The maximum resident set size (KB) = 1221348 - -Test 204 control_debug_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 205 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 443.837561 -0:The maximum resident set size (KB) = 644052 - -Test 205 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 206 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 258.190277 -0:The maximum resident set size (KB) = 668600 - -Test 206 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 207 rrfs_conus13km_hrrr_warm_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 400.761424 -0:The maximum resident set size (KB) = 618144 - -Test 207 rrfs_conus13km_hrrr_warm_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_flake_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_flake_debug_gnu -Checking test 208 rap_flake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 144.681281 -0:The maximum resident set size (KB) = 805744 - -Test 208 rap_flake_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_clm_lake_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_clm_lake_debug_gnu -Checking test 209 rap_clm_lake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 163.707593 -0:The maximum resident set size (KB) = 807608 - -Test 209 rap_clm_lake_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/control_wam_debug_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/control_wam_debug_gnu -Checking test 210 control_wam_debug_gnu results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -0:The total amount of wall time = 140.533503 -0:The maximum resident set size (KB) = 182588 - -Test 210 control_wam_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn32_phy32_gnu -Checking test 211 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 704.713113 -0:The maximum resident set size (KB) = 672456 - -Test 211 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_dyn32_phy32_gnu -Checking test 212 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 358.067118 -0:The maximum resident set size (KB) = 670920 - -Test 212 hrrr_control_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_qr_dyn32_phy32_gnu -Checking test 213 hrrr_control_qr_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 354.425288 -0:The maximum resident set size (KB) = 681236 - -Test 213 hrrr_control_qr_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_2threads_dyn32_phy32_gnu -Checking test 214 rap_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 646.785340 -0:The maximum resident set size (KB) = 719260 - -Test 214 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 215 hrrr_control_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 406.473297 -0:The maximum resident set size (KB) = 711256 - -Test 215 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 216 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 352.428370 -0:The maximum resident set size (KB) = 669756 - -Test 216 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_restart_dyn32_phy32_gnu -Checking test 217 rap_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 521.976646 -0:The maximum resident set size (KB) = 508776 - -Test 217 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_dyn32_phy32_gnu -Checking test 218 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 181.692781 -0:The maximum resident set size (KB) = 503696 - -Test 218 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_qr_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_qr_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 183.220005 -0:The maximum resident set size (KB) = 531044 - -Test 219 hrrr_control_restart_qr_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_gnu -Checking test 220 rap_control_dyn64_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 413.639082 -0:The maximum resident set size (KB) = 692624 - -Test 220 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_debug_dyn32_phy32_gnu -Checking test 221 rap_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 145.638397 -0:The maximum resident set size (KB) = 687140 - -Test 221 rap_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/hrrr_control_debug_dyn32_phy32_gnu -Checking test 222 hrrr_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 141.235785 -0:The maximum resident set size (KB) = 684244 - -Test 222 hrrr_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/rap_control_dyn64_phy32_debug_gnu -Checking test 223 rap_control_dyn64_phy32_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 148.077094 -0:The maximum resident set size (KB) = 707904 - -Test 223 rap_control_dyn64_phy32_debug_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_p8_gnu -Checking test 224 cpld_control_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 505.534357 -0:The maximum resident set size (KB) = 3158512 - -Test 224 cpld_control_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_nowave_noaero_p8_gnu -Checking test 225 cpld_control_nowave_noaero_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 253.061595 -0:The maximum resident set size (KB) = 1240560 - -Test 225 cpld_control_nowave_noaero_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_p8_gnu -Checking test 226 cpld_debug_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 201.052926 -0:The maximum resident set size (KB) = 3174584 - -Test 226 cpld_debug_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_control_pdlib_p8_gnu -Checking test 227 cpld_control_pdlib_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 1395.481260 -0:The maximum resident set size (KB) = 1286232 - -Test 227 cpld_control_pdlib_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/cpld_debug_pdlib_p8_gnu -Checking test 228 cpld_debug_pdlib_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 698.608966 -0:The maximum resident set size (KB) = 1299604 - -Test 228 cpld_debug_pdlib_p8_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230705/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_44892/datm_cdeps_control_cfsr_gnu -Checking test 229 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 180.135866 -0:The maximum resident set size (KB) = 675604 - -Test 229 datm_cdeps_control_cfsr_gnu PASS - - -REGRESSION TEST WAS SUCCESSFUL -Wed Jul 5 22:23:42 MDT 2023 -Elapsed time: 01h:40m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log new file mode 100644 index 0000000000..e49fb23fde --- /dev/null +++ b/tests/logs/RegressionTests_derecho.log @@ -0,0 +1,395 @@ +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_118977 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [49:21, 21:52] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 05:56](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:23, 24:30] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:21, 14:33](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:44, 16:01](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:32, 08:06](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:33](1889 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:23, 23:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:22](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:20, 12:21] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [49:30, 21:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:11, 08:17](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:38, 07:40](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:07](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 07:41](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 04:00](3188 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 06:32](3726 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 07:49](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 05:32](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:36, 07:53](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:29, 11:52](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:53, 06:43](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:46, 12:50](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:01, 07:21](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 05:57](3210 MB) + +PASS -- COMPILE 's2sw_intel' [47:29, 20:30] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 04:54](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 05:08](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [39:26, 12:06] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:18, 08:22](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [38:28, 11:28] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:55](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:26, 16:06] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:50](1991 MB) + +PASS -- COMPILE 's2s_intel' [44:22, 16:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:51](2953 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:09, 02:32](2951 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:44](2370 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:15, 26:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 06:26](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:21, 22:29] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:37, 14:53](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:42, 09:03](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:02, 16:58](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:15] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:40, 23:47](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:14, 15:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:40, 03:29](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:37](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:35](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:23, 02:30](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:26, 02:31](1574 MB) +PASS -- TEST 'control_c48_intel' [34:17, 06:09](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [33:36, 05:26](734 MB) +PASS -- TEST 'control_c192_intel' [12:11, 09:08](1695 MB) +PASS -- TEST 'control_c384_intel' [19:09, 09:07](2016 MB) +PASS -- TEST 'control_c384gdas_intel' [17:13, 07:34](1200 MB) +PASS -- TEST 'control_stochy_intel' [03:40, 01:29](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](439 MB) +PASS -- TEST 'control_lndp_intel' [03:42, 01:27](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:51, 02:10](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:12](622 MB) +PASS -- TEST 'control_p8_intel' [05:37, 03:23](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:15](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:19](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 02:11](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:12](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 02:03](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:00, 03:22](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:02](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:05](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:05](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:22](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [07:01, 03:41](1869 MB) +PASS -- TEST 'regional_control_intel' [08:17, 05:13](875 MB) +PASS -- TEST 'regional_restart_intel' [04:59, 03:15](872 MB) +PASS -- TEST 'regional_decomp_intel' [08:06, 05:35](876 MB) +PASS -- TEST 'regional_noquilt_intel' [07:03, 05:08](1197 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:03](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:06](873 MB) +PASS -- TEST 'regional_wofs_intel' [08:51, 05:57](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [15:19, 13:19] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:35, 06:47](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:12](1191 MB) +PASS -- TEST 'rap_decomp_intel' [09:35, 07:00](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 06:20](1096 MB) +PASS -- TEST 'rap_restart_intel' [05:16, 03:15](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:50](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 07:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:16, 04:54](879 MB) +PASS -- TEST 'hrrr_control_intel' [07:13, 03:41](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 03:28](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:42, 02:57](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:48](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 06:42](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:02](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:50](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [14:13, 11:30] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:08, 06:48](962 MB) +PASS -- TEST 'control_ras_intel' [08:41, 02:56](655 MB) + +PASS -- COMPILE 'wam_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [32:06, 11:11](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:17] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:43, 03:05](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:59](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:20, 12:51] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:17, 02:40](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:44, 02:33](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:35, 02:53](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [22:37, 02:45](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:57, 04:49](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [21:03, 02:48](818 MB) +PASS -- TEST 'control_diag_debug_intel' [22:46, 02:43](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [21:34, 03:25](1906 MB) +PASS -- TEST 'regional_debug_intel' [21:54, 16:56](929 MB) +PASS -- TEST 'rap_control_debug_intel' [23:13, 05:01](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:11, 05:03](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [21:11, 04:38](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [21:09, 04:41](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [20:00, 04:51](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [20:46, 05:05](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:05, 04:48](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:02, 05:01](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [18:06, 04:58](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:06, 05:07](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:18, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [16:01, 05:01](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:04, 07:44](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:20, 04:46](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:06, 05:37](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:11, 04:42](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:38, 08:02](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:13, 07:01] ( 844 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:13, 11:19] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:36, 03:32](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 06:09](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:30, 02:52](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 05:15](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:12, 03:16](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 02:59](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:59, 04:01](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:40](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:00, 15:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:13, 01:52](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:11, 01:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:10](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [04:55, 11:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:53, 03:41](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:04, 07:18] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:29, 04:42](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:49, 04:52](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [38:37, 14:01](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 13:40](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:20, 08:01](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:21, 13:15](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:02, 06:58] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:38, 04:49](1099 MB) + +PASS -- COMPILE 'hafsw_intel' [46:17, 18:38] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:44, 06:43](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:15, 05:45](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:14](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:59, 12:19](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 13:32](811 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:13, 08:37](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:29, 10:30](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 04:14](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:30, 09:50](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:20, 04:07](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:46, 04:16](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:43, 05:35](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:22](430 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [35:05, 08:30] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:23, 12:58](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:07, 27:22] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 08:54](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:30, 09:43](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [42:14, 19:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:33, 07:03](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:05, 16:13] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:43, 09:56](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 09:08](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:51, 19:38](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [30:13, 08:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [30:48, 03:06](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:37](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:13, 02:56](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:50, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:53, 02:45](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:53, 02:47](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:55, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:50, 02:43](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:09, 06:05](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:13, 05:52](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [29:37, 02:43](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [31:40, 04:10](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [30:02, 04:28](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [29:28, 06:10] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:01, 05:21](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [27:22, 08:46] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [29:54, 02:41](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [32:22, 02:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:13, 01:24](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:17](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:45, 01:03](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:27, 14:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:40, 05:02](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [41:23, 12:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:57, 06:02](1900 MB) + +PASS -- COMPILE 'atml_intel' [43:19, 16:01] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:53, 09:01](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:50, 09:40](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 05:22](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [37:24, 10:05] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 07:08](1938 MB) + +PASS -- COMPILE 'atmw_intel' [41:26, 14:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 03:25](1891 MB) + +PASS -- COMPILE 'atmaero_intel' [32:25, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:56, 06:39](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:26, 06:41](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:47](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [25:23, 08:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:46, 22:51](4516 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 08:43:44 +Ending Date/Time: 20240731 20:26:26 +Total Time: 11h:43m:35s +Compiles Completed: 41/41 +Tests Completed: 181/183 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_30140 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:23] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:52, 12:24](1698 MB) + +PASS -- COMPILE 'hafsw_intel' [18:14, 17:33] ( 6 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:19, 04:04](1712 MB) + +SYNOPSIS: +Starting Date/Time: 20240801 06:59:02 +Ending Date/Time: 20240801 07:26:00 +Total Time: 00h:27m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF DERECHO REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 6c292a1584..67bdbf63d9 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,5386 +1,397 @@ -Thu 13 Jul 2023 10:54:44 PM EDT -Start Regression test - -Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 677 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 719 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 695 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 275 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 828 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 767 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 723 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 691 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 707 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 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 248 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 249 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 92 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 748 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 243 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 817 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 777 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 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 693 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 209 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 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 722 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 801 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 319 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 926 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 882 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 279 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 841 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 212 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 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 315.419661 - 0: The maximum resident set size (KB) = 1532372 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 230.135199 - 0: The maximum resident set size (KB) = 1448632 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 358.068895 - 0: The maximum resident set size (KB) = 1567524 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 205.047628 - 0: The maximum resident set size (KB) = 1282692 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 360.596641 - 0: The maximum resident set size (KB) = 1578560 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 205.375941 - 0: The maximum resident set size (KB) = 1297588 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 373.277266 - 0: The maximum resident set size (KB) = 1760276 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 359.860249 - 0: The maximum resident set size (KB) = 1560024 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 296.196909 - 0: The maximum resident set size (KB) = 1524416 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_bmark_p8_intel -Checking test 010 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 743.344408 - 0: The maximum resident set size (KB) = 2499596 - -Test 010 cpld_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_restart_bmark_p8_intel -Checking test 011 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 432.493770 - 0: The maximum resident set size (KB) = 2306056 - -Test 011 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_noaero_p8_intel -Checking test 012 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 270.433166 - 0: The maximum resident set size (KB) = 1465232 - -Test 012 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_nowave_noaero_p8_intel -Checking test 013 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 279.252723 - 0: The maximum resident set size (KB) = 1500700 - -Test 013 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_debug_p8_intel -Checking test 014 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 541.950795 - 0: The maximum resident set size (KB) = 1593776 - -Test 014 cpld_debug_p8_intel PASS Tries: 2 - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_debug_noaero_p8_intel -Checking test 015 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 377.274294 - 0: The maximum resident set size (KB) = 1483564 - -Test 015 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_noaero_p8_agrid_intel -Checking test 016 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 287.802235 - 0: The maximum resident set size (KB) = 1502540 - -Test 016 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_c48_intel -Checking test 017 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 598.827980 - 0: The maximum resident set size (KB) = 2560836 - -Test 017 cpld_control_c48_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/cpld_control_p8_faster_intel -Checking test 018 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 345.410730 - 0: The maximum resident set size (KB) = 1567068 - -Test 018 cpld_control_p8_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_flake_intel -Checking test 019 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 205.700638 - 0: The maximum resident set size (KB) = 483684 - -Test 019 control_flake_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_intel -Checking test 020 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 135.464581 - 0: The maximum resident set size (KB) = 435392 - -Test 020 control_CubedSphereGrid_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_parallel_intel -Checking test 021 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 138.001630 - 0: The maximum resident set size (KB) = 435336 - -Test 021 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_latlon_intel -Checking test 022 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 138.205792 - 0: The maximum resident set size (KB) = 435040 - -Test 022 control_latlon_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wrtGauss_netcdf_parallel_intel -Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 145.534103 - 0: The maximum resident set size (KB) = 435032 - -Test 023 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c48_intel -Checking test 024 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 417.866715 -0: The maximum resident set size (KB) = 632976 - -Test 024 control_c48_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c192_intel -Checking test 025 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 568.629935 - 0: The maximum resident set size (KB) = 541268 - -Test 025 control_c192_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c384_intel -Checking test 026 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1088.012832 - 0: The maximum resident set size (KB) = 821480 - -Test 026 control_c384_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_c384gdas_intel -Checking test 027 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 896.448884 - 0: The maximum resident set size (KB) = 955392 - -Test 027 control_c384gdas_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_stochy_intel -Checking test 028 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 91.320993 - 0: The maximum resident set size (KB) = 440160 - -Test 028 control_stochy_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_stochy_restart_intel -Checking test 029 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 49.490790 - 0: The maximum resident set size (KB) = 193940 - -Test 029 control_stochy_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_lndp_intel -Checking test 030 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 84.457451 - 0: The maximum resident set size (KB) = 443124 - -Test 030 control_lndp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_iovr4_intel -Checking test 031 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 139.823090 - 0: The maximum resident set size (KB) = 435076 - -Test 031 control_iovr4_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_iovr5_intel -Checking test 032 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 139.954811 - 0: The maximum resident set size (KB) = 434968 - -Test 032 control_iovr5_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_intel -Checking test 033 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 170.446565 - 0: The maximum resident set size (KB) = 1405108 - -Test 033 control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_restart_p8_intel -Checking test 034 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 89.496313 - 0: The maximum resident set size (KB) = 564972 - -Test 034 control_restart_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_qr_p8_intel -Checking test 035 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 169.998435 - 0: The maximum resident set size (KB) = 1409468 - -Test 035 control_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_restart_qr_p8_intel -Checking test 036 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 91.341529 - 0: The maximum resident set size (KB) = 580096 - -Test 036 control_restart_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_decomp_p8_intel -Checking test 037 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 176.992673 - 0: The maximum resident set size (KB) = 1399416 - -Test 037 control_decomp_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_2threads_p8_intel -Checking test 038 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 158.951550 - 0: The maximum resident set size (KB) = 1486036 - -Test 038 control_2threads_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_lndp_intel -Checking test 039 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 318.046589 - 0: The maximum resident set size (KB) = 1405816 - -Test 039 control_p8_lndp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_rrtmgp_intel -Checking test 040 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 232.727341 - 0: The maximum resident set size (KB) = 1458836 - -Test 040 control_p8_rrtmgp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_mynn_intel -Checking test 041 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 173.803078 - 0: The maximum resident set size (KB) = 1409536 - -Test 041 control_p8_mynn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/merra2_thompson_intel -Checking test 042 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 194.399241 - 0: The maximum resident set size (KB) = 1408644 - -Test 042 merra2_thompson_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_intel -Checking test 043 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 319.270093 - 0: The maximum resident set size (KB) = 575304 - -Test 043 regional_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_restart_intel -Checking test 044 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 162.407311 - 0: The maximum resident set size (KB) = 576676 - -Test 044 regional_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_qr_intel -Checking test 045 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 316.996210 - 0: The maximum resident set size (KB) = 575352 - -Test 045 regional_control_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_restart_qr_intel -Checking test 046 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 162.029096 - 0: The maximum resident set size (KB) = 576688 - -Test 046 regional_restart_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_decomp_intel -Checking test 047 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 336.582911 - 0: The maximum resident set size (KB) = 576416 - -Test 047 regional_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_2threads_intel -Checking test 048 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 185.931757 - 0: The maximum resident set size (KB) = 583740 - -Test 048 regional_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_noquilt_intel -Checking test 049 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 = 316.291465 - 0: The maximum resident set size (KB) = 568868 - -Test 049 regional_noquilt_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_netcdf_parallel_intel -Checking test 050 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 319.256117 - 0: The maximum resident set size (KB) = 575352 - -Test 050 regional_netcdf_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_2dwrtdecomp_intel -Checking test 051 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 325.390067 - 0: The maximum resident set size (KB) = 575796 - -Test 051 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_wofs_intel -Checking test 052 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 410.081708 - 0: The maximum resident set size (KB) = 260016 - -Test 052 regional_wofs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_intel -Checking test 053 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 452.190492 - 0: The maximum resident set size (KB) = 805248 - -Test 053 rap_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_spp_sppt_shum_skeb_intel -Checking test 054 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 252.713630 - 0: The maximum resident set size (KB) = 891800 - -Test 054 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_decomp_intel -Checking test 055 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 466.283246 - 0: The maximum resident set size (KB) = 805548 - -Test 055 rap_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_2threads_intel -Checking test 056 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 427.201264 - 0: The maximum resident set size (KB) = 878664 - -Test 056 rap_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_restart_intel -Checking test 057 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 228.530490 - 0: The maximum resident set size (KB) = 545544 - -Test 057 rap_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_intel -Checking test 058 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.834630 - 0: The maximum resident set size (KB) = 805488 - -Test 058 rap_sfcdiff_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_decomp_intel -Checking test 059 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 467.036459 - 0: The maximum resident set size (KB) = 804852 - -Test 059 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_restart_intel -Checking test 060 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 335.447606 - 0: The maximum resident set size (KB) = 550332 - -Test 060 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_intel -Checking test 061 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 433.249976 - 0: The maximum resident set size (KB) = 803252 - -Test 061 hrrr_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_qr_intel -Checking test 062 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 432.461089 - 0: The maximum resident set size (KB) = 813780 - -Test 062 hrrr_control_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_decomp_intel -Checking test 063 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 447.161018 - 0: The maximum resident set size (KB) = 802800 - -Test 063 hrrr_control_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_2threads_intel -Checking test 064 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 400.027471 - 0: The maximum resident set size (KB) = 877860 - -Test 064 hrrr_control_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_intel -Checking test 065 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 321.956147 - 0: The maximum resident set size (KB) = 545132 - -Test 065 hrrr_control_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_qr_intel -Checking test 066 hrrr_control_restart_qr_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 324.374325 - 0: The maximum resident set size (KB) = 566288 - -Test 066 hrrr_control_restart_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1beta_intel -Checking test 067 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 443.391177 - 0: The maximum resident set size (KB) = 802728 - -Test 067 rrfs_v1beta_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1nssl_intel -Checking test 068 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 544.697393 - 0: The maximum resident set size (KB) = 492424 - -Test 068 rrfs_v1nssl_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1nssl_nohailnoccn_intel -Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 531.468234 - 0: The maximum resident set size (KB) = 485052 - -Test 069 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 150.314122 - 0: The maximum resident set size (KB) = 648144 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 147.818287 - 0: The maximum resident set size (KB) = 648404 - -Test 071 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 93.792421 - 0: The maximum resident set size (KB) = 662776 - -Test 072 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_conus13km_hrrr_warm_intel -Checking test 073 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 135.834372 - 0: The maximum resident set size (KB) = 633248 - -Test 073 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 074 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 153.225407 - 0: The maximum resident set size (KB) = 650672 - -Test 074 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 85.398790 - 0: The maximum resident set size (KB) = 640380 - -Test 075 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 123.393467 - 0: The maximum resident set size (KB) = 707348 - -Test 076 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 358.920021 - 0: The maximum resident set size (KB) = 501540 - -Test 077 control_csawmgt_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_ras_intel -Checking test 078 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 192.902918 - 0: The maximum resident set size (KB) = 471548 - -Test 078 control_ras_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wam_intel -Checking test 079 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 120.911682 - 0: The maximum resident set size (KB) = 187048 - -Test 079 control_wam_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_faster_intel -Checking test 080 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 161.090958 - 0: The maximum resident set size (KB) = 1404912 - -Test 080 control_p8_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_control_faster_intel -Checking test 081 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 299.035932 - 0: The maximum resident set size (KB) = 575052 - -Test 081 regional_control_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 874.903494 - 0: The maximum resident set size (KB) = 680092 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_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 = 499.234684 - 0: The maximum resident set size (KB) = 695952 - -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 084 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 779.213732 - 0: The maximum resident set size (KB) = 664672 - -Test 084 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 150.682328 - 0: The maximum resident set size (KB) = 598324 - -Test 085 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 154.588885 - 0: The maximum resident set size (KB) = 598068 - -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 171.099711 - 0: The maximum resident set size (KB) = 603944 - -Test 087 control_stochy_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 153.067486 - 0: The maximum resident set size (KB) = 602884 - -Test 088 control_lndp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 243.618965 - 0: The maximum resident set size (KB) = 640120 - -Test 089 control_csawmg_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 239.193450 - 0: The maximum resident set size (KB) = 640048 - -Test 090 control_csawmgt_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 154.807257 - 0: The maximum resident set size (KB) = 613304 - -Test 091 control_ras_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 157.193883 - 0: The maximum resident set size (KB) = 655380 - -Test 092 control_diag_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 172.767794 - 0: The maximum resident set size (KB) = 1422948 - -Test 093 control_debug_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_debug_intel -Checking test 094 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 1034.267250 - 0: The maximum resident set size (KB) = 603364 - -Test 094 regional_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.020703 - 0: The maximum resident set size (KB) = 969908 - -Test 095 rap_control_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 275.594207 - 0: The maximum resident set size (KB) = 966916 - -Test 096 hrrr_control_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_unified_drag_suite_debug_intel -Checking test 097 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.200557 - 0: The maximum resident set size (KB) = 970256 - -Test 097 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_diag_debug_intel -Checking test 098 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 295.836856 - 0: The maximum resident set size (KB) = 1052468 - -Test 098 rap_diag_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_cires_ugwp_debug_intel -Checking test 099 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 287.599654 - 0: The maximum resident set size (KB) = 969948 - -Test 099 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_unified_ugwp_debug_intel -Checking test 100 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 288.044572 - 0: The maximum resident set size (KB) = 970064 - -Test 100 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_lndp_debug_intel -Checking test 101 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 284.425170 - 0: The maximum resident set size (KB) = 971292 - -Test 101 rap_lndp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_progcld_thompson_debug_intel -Checking test 102 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.311979 - 0: The maximum resident set size (KB) = 969960 - -Test 102 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_noah_debug_intel -Checking test 103 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 276.183045 - 0: The maximum resident set size (KB) = 968392 - -Test 103 rap_noah_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_sfcdiff_debug_intel -Checking test 104 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.357234 - 0: The maximum resident set size (KB) = 968780 - -Test 104 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 467.443409 - 0: The maximum resident set size (KB) = 967960 - -Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_v1beta_debug_intel -Checking test 106 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 277.196548 - 0: The maximum resident set size (KB) = 965988 - -Test 106 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_clm_lake_debug_intel -Checking test 107 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 346.202388 - 0: The maximum resident set size (KB) = 971652 - -Test 107 rap_clm_lake_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_flake_debug_intel -Checking test 108 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 281.939775 - 0: The maximum resident set size (KB) = 970468 - -Test 108 rap_flake_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_wam_debug_intel -Checking test 109 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 286.701836 - 0: The maximum resident set size (KB) = 216728 - -Test 109 control_wam_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 236.944410 - 0: The maximum resident set size (KB) = 806004 - -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn32_phy32_intel -Checking test 111 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 370.186227 - 0: The maximum resident set size (KB) = 689668 - -Test 111 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 190.506325 - 0: The maximum resident set size (KB) = 688956 - -Test 112 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_qr_dyn32_phy32_intel -Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 191.992223 - 0: The maximum resident set size (KB) = 695504 - -Test 113 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_2threads_dyn32_phy32_intel -Checking test 114 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 349.903462 - 0: The maximum resident set size (KB) = 742664 - -Test 114 rap_2threads_dyn32_phy32_intel PASS Tries: 2 - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_2threads_dyn32_phy32_intel -Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 175.854635 - 0: The maximum resident set size (KB) = 738780 - -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 195.732354 - 0: The maximum resident set size (KB) = 688156 - -Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_restart_dyn32_phy32_intel -Checking test 117 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 275.182596 - 0: The maximum resident set size (KB) = 520588 - -Test 117 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 99.941278 - 0: The maximum resident set size (KB) = 514572 - -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 102.383854 - 0: The maximum resident set size (KB) = 541412 - -Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 120.711577 - 0: The maximum resident set size (KB) = 589332 - -Test 120 rrfs_smoke_conus13km_fast_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 120.743815 - 0: The maximum resident set size (KB) = 597392 - -Test 121 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 69.490480 - 0: The maximum resident set size (KB) = 589296 - -Test 122 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 107.608429 - 0: The maximum resident set size (KB) = 615672 - -Test 123 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 249.126023 - 0: The maximum resident set size (KB) = 710724 - -Test 124 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 277.881742 - 0: The maximum resident set size (KB) = 853148 - -Test 125 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 271.651148 - 0: The maximum resident set size (KB) = 851940 - -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.618808 - 0: The maximum resident set size (KB) = 873280 - -Test 127 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 239.158432 - 0: The maximum resident set size (KB) = 684016 - -Test 128 hafs_regional_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 275.069792 - 0: The maximum resident set size (KB) = 1037012 - -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 419.099513 - 0: The maximum resident set size (KB) = 714912 - -Test 130 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 902.308707 - 0: The maximum resident set size (KB) = 747192 - -Test 131 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1015.095654 - 0: The maximum resident set size (KB) = 764612 - -Test 132 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 336.804800 - 0: The maximum resident set size (KB) = 276024 - -Test 133 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_1nest_atm_qr_intel -Checking test 134 hafs_regional_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 378.745095 - 0: The maximum resident set size (KB) = 274196 - -Test 134 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_telescopic_2nests_atm_intel -Checking test 135 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 382.477708 - 0: The maximum resident set size (KB) = 285032 - -Test 135 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_1nest_atm_intel -Checking test 136 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 152.210833 - 0: The maximum resident set size (KB) = 182068 - -Test 136 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_1nest_atm_qr_intel -Checking test 137 hafs_global_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 215.152740 - 0: The maximum resident set size (KB) = 190740 - -Test 137 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_multiple_4nests_atm_intel -Checking test 138 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 437.030569 - 0: The maximum resident set size (KB) = 231352 - -Test 138 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_multiple_4nests_atm_qr_intel -Checking test 139 hafs_global_multiple_4nests_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 527.528227 - 0: The maximum resident set size (KB) = 253388 - -Test 139 hafs_global_multiple_4nests_atm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 216.980960 - 0: The maximum resident set size (KB) = 296784 - -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 201.832559 - 0: The maximum resident set size (KB) = 294524 - -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 236.781391 - 0: The maximum resident set size (KB) = 300924 - -Test 142 hafs_regional_storm_following_1nest_atm_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 248.904890 - 0: The maximum resident set size (KB) = 319040 - -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_global_storm_following_1nest_atm_intel -Checking test 144 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 = 59.666818 - 0: The maximum resident set size (KB) = 201728 - -Test 144 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 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 = 757.242174 - 0: The maximum resident set size (KB) = 346072 - -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 640.818044 - 0: The maximum resident set size (KB) = 369032 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_docn_intel -Checking test 147 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 = 356.963666 - 0: The maximum resident set size (KB) = 720956 - -Test 147 hafs_regional_docn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_docn_oisst_intel -Checking test 148 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 = 359.662930 - 0: The maximum resident set size (KB) = 710960 - -Test 148 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/hafs_regional_datm_cdeps_intel -Checking test 149 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 = 1189.708059 - 0: The maximum resident set size (KB) = 819324 - -Test 149 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_cfsr_intel -Checking test 150 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 = 163.940699 - 0: The maximum resident set size (KB) = 716176 - -Test 150 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 94.022274 - 0: The maximum resident set size (KB) = 711396 - -Test 151 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 157.208487 - 0: The maximum resident set size (KB) = 599984 - -Test 152 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 156.153520 - 0: The maximum resident set size (KB) = 599920 - -Test 153 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 156.826577 - 0: The maximum resident set size (KB) = 596040 - -Test 154 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_ciceC_cfsr_intel -Checking test 155 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 = 160.648370 - 0: The maximum resident set size (KB) = 716316 - -Test 155 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_bulk_cfsr_intel -Checking test 156 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 = 160.278889 - 0: The maximum resident set size (KB) = 716212 - -Test 156 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.765222 - 0: The maximum resident set size (KB) = 596008 - -Test 157 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 387.215535 - 0: The maximum resident set size (KB) = 492708 - -Test 158 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 388.133616 - 0: The maximum resident set size (KB) = 473480 - -Test 159 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 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 = 161.554202 - 0: The maximum resident set size (KB) = 704744 - -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 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 = 247.723302 - 0: The maximum resident set size (KB) = 1940216 - -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_gfs_intel -Checking test 162 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 = 246.243134 - 0: The maximum resident set size (KB) = 1940312 - -Test 162 datm_cdeps_gfs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_debug_cfsr_intel -Checking test 163 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 = 367.317787 - 0: The maximum resident set size (KB) = 707352 - -Test 163 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_control_cfsr_faster_intel -Checking test 164 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 = 159.978603 - 0: The maximum resident set size (KB) = 704720 - -Test 164 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 7.629362 - 0: The maximum resident set size (KB) = 153380 - -Test 165 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/datm_cdeps_lnd_gswp3_rst_intel -Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 13.989513 - 0: The maximum resident set size (KB) = 152352 - -Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_p8_atmlnd_sbs_intel -Checking test 167 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 215.865450 - 0: The maximum resident set size (KB) = 1436696 - -Test 167 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmwav_control_noaero_p8_intel -Checking test 168 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 93.058570 - 0: The maximum resident set size (KB) = 1421668 - -Test 168 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/control_atmwav_intel -Checking test 169 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 89.781453 - 0: The maximum resident set size (KB) = 453052 - -Test 169 control_atmwav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_intel -Checking test 170 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 235.008578 - 0: The maximum resident set size (KB) = 1446380 - -Test 170 atmaero_control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_rad_intel -Checking test 171 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 288.141279 - 0: The maximum resident set size (KB) = 1498260 - -Test 171 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/atmaero_control_p8_rad_micro_intel -Checking test 172 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 297.015994 - 0: The maximum resident set size (KB) = 1503016 - -Test 172 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_atmaq_intel -Checking test 173 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 631.784396 - 0: The maximum resident set size (KB) = 968604 - -Test 173 regional_atmaq_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_28123/regional_atmaq_faster_intel -Checking test 174 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 578.723774 - 0: The maximum resident set size (KB) = 967080 - -Test 174 regional_atmaq_faster_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri 14 Jul 2023 12:16:29 AM EDT -Elapsed time: 01h:21m:53s. Have a nice day! +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_40274 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 19:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 08:10](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:32, 13:56](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:35, 15:40](1952 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:27, 07:32](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:26, 15:03](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 22:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:47, 13:41](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:15] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 24:16](1936 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:18, 08:07](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:24, 08:00](3229 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:32, 05:03](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:26, 08:50](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:42, 05:17](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 06:58](3465 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 08:42](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:12, 08:18](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:34, 08:23](3227 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:32, 10:28](3448 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 07:17](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:01, 13:01](4213 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 09:01](4369 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 08:39](3221 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:17](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:34, 05:49](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:46, 09:53](3276 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 16:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:33, 05:03](1989 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:29](2929 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 01:56](2938 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:21, 01:08](2351 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:15, 28:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:45, 08:39](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 15:04](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 07:46](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:20, 17:29](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:20, 15:09] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:19, 26:49](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:41, 03:54](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 04:04](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:32](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:21, 03:28](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](1569 MB) +PASS -- TEST 'control_c48_intel' [08:38, 06:30](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:10, 05:49](720 MB) +PASS -- TEST 'control_c192_intel' [12:51, 10:29](1683 MB) +PASS -- TEST 'control_c384_intel' [20:40, 18:44](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [17:42, 14:56](1178 MB) +PASS -- TEST 'control_stochy_intel' [02:40, 02:07](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:12](425 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:55](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:46, 02:48](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:46, 02:42](620 MB) +PASS -- TEST 'control_p8_intel' [05:51, 03:44](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 04:15](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 03:38](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [03:05, 01:51](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:42](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:48, 04:12](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:58, 02:48](1947 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:31](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:08, 04:11](1921 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:10, 03:31](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [05:08, 03:44](1865 MB) +PASS -- TEST 'regional_control_intel' [05:41, 04:51](848 MB) +PASS -- TEST 'regional_restart_intel' [05:00, 02:52](860 MB) +PASS -- TEST 'regional_decomp_intel' [05:39, 05:01](867 MB) +PASS -- TEST 'regional_2threads_intel' [03:46, 03:00](998 MB) +PASS -- TEST 'regional_noquilt_intel' [05:45, 04:41](1182 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 05:06](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 04:51](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:08](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 14:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:01, 06:56](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:04](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:55, 07:06](1007 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 06:16](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:58, 03:45](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:00](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 07:08](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 05:12](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 04:06](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:51](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:23](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:58](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:35](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:37, 08:22](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:50](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [16:13, 15:48] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:47](966 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:25](659 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 13:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:37, 11:29](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 20:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 03:21](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 04:39](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 15:07] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:59](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:51](1598 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:09](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:53](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:18](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 03:00](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:16](1894 MB) +PASS -- TEST 'regional_debug_intel' [17:43, 16:17](902 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:09](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:58](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:10](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:14](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:01](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:29](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:16](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:14](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:09](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:19](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:24](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:12](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 08:15](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:28](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 06:37](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:31, 05:32](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 08:50](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:14, 11:03] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 13:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 04:04](1049 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:49, 05:58](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:58, 03:39](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:59, 05:27](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 02:51](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:55, 03:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:09](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:43](766 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 19:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:25](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:08](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 01:20](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:59, 04:24](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 09:44] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:30, 04:54](1060 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:01](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:24, 14:20](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:16, 14:37](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:16](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:10, 14:17](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 18:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:32, 05:18](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:34](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:42](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:50](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:58, 13:09](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:27](481 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:34, 06:56](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:20, 02:56](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:00](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:54](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 04:07](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:11](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:39](403 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:35] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:04](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 08:20](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 08:26](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 06:30](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:14, 16:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:27](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:29](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:46, 20:05](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:27](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:06, 06:03](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 05:57](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:37](749 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:39](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:40](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:52] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:27](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:37](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:46](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:16](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:59](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 14:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:06](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 04:03](1910 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 16:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 08:13](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 08:39](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 04:59](1042 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 12:42] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 06:21](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 14:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:48](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [14:13, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:13, 06:34](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 07:08](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 07:22](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:31] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:14](4487 MB) + +SYNOPSIS: +Starting Date/Time: 20240730 19:35:54 +Ending Date/Time: 20240730 21:08:49 +Total Time: 01h:33m:52s +Compiles Completed: 41/41 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_179250 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [10:11, 09:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 13:48](1687 MB) + +PASS -- COMPILE 'hafsw_intel' [17:15, 16:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [09:05, 05:40](1717 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 13:43:20 +Ending Date/Time: 20240731 14:11:13 +Total Time: 00h:28m:13s +Compiles Completed: 2/2 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 8ac7e7b70e..06fea32789 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7977 +1,551 @@ -Fri Jul 14 21:40:36 UTC 2023 +<<<<<<< HEAD +Wed Nov 8 16:16:05 EST 2023 Start Regression test -Testing UFSWM Hash: a740e476759d2565d73ebf9de41455f2125f9434 +Testing UFSWM Hash: f8dcab78e0d3161c47b0f47c599e1df38a354c19 Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 175 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 591 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 182 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 175 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 273 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 200 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 541 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 517 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 534 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 561 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 609 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 175 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 52 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 192 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 589 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 203 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 538 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 581 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 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 591 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 212 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 622 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 215 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 248 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 888 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 641 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 145 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 231 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 700 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 270 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 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 307.740199 - 0: The maximum resident set size (KB) = 3119876 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 218.020230 - 0: The maximum resident set size (KB) = 1677340 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 340.755904 - 0: The maximum resident set size (KB) = 3164204 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 195.076903 - 0: The maximum resident set size (KB) = 3050228 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 341.648133 - 0: The maximum resident set size (KB) = 3175336 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 199.140974 - 0: The maximum resident set size (KB) = 3053904 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 345.160621 - 0: The maximum resident set size (KB) = 3517832 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 341.272061 - 0: The maximum resident set size (KB) = 3160960 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 278.599966 - 0: The maximum resident set size (KB) = 3018432 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 338.191124 - 0: The maximum resident set size (KB) = 3154368 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_c192_p8_intel -Checking test 011 cpld_control_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 594.054465 - 0: The maximum resident set size (KB) = 3250888 - -Test 011 cpld_control_c192_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_c192_p8_intel -Checking test 012 cpld_restart_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 382.446155 - 0: The maximum resident set size (KB) = 3156328 - -Test 012 cpld_restart_c192_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_bmark_p8_intel -Checking test 013 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 711.639148 - 0: The maximum resident set size (KB) = 4034812 - -Test 013 cpld_bmark_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_bmark_p8_intel -Checking test 014 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 433.950137 - 0: The maximum resident set size (KB) = 3999276 - -Test 014 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_noaero_p8_intel -Checking test 015 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 265.038494 - 0: The maximum resident set size (KB) = 1720896 - -Test 015 cpld_control_noaero_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_nowave_noaero_p8_intel -Checking test 016 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 258.574496 - 0: The maximum resident set size (KB) = 1760412 - -Test 016 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_p8_intel -Checking test 017 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 523.503824 - 0: The maximum resident set size (KB) = 3231572 - -Test 017 cpld_debug_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_noaero_p8_intel -Checking test 018 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 367.387613 - 0: The maximum resident set size (KB) = 1720092 - -Test 018 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_noaero_p8_agrid_intel -Checking test 019 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 266.399933 - 0: The maximum resident set size (KB) = 1758116 - -Test 019 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_c48_intel -Checking test 020 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 573.431043 - 0: The maximum resident set size (KB) = 2809004 - -Test 020 cpld_control_c48_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_faster_intel -Checking test 021 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 314.209212 - 0: The maximum resident set size (KB) = 3177028 - -Test 021 cpld_control_p8_faster_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_pdlib_p8_intel -Checking test 022 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1184.563003 - 0: The maximum resident set size (KB) = 1752524 - -Test 022 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_restart_pdlib_p8_intel -Checking test 023 cpld_restart_pdlib_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 561.029119 - 0: The maximum resident set size (KB) = 1031052 - -Test 023 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_mpi_pdlib_p8_intel -Checking test 024 cpld_mpi_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1073.656877 - 0: The maximum resident set size (KB) = 1645992 - -Test 024 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_pdlib_p8_intel -Checking test 025 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1413.098721 - 0: The maximum resident set size (KB) = 1690976 - -Test 025 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_flake_intel -Checking test 026 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 185.930742 - 0: The maximum resident set size (KB) = 679936 - -Test 026 control_flake_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_intel -Checking test 027 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 128.969598 - 0: The maximum resident set size (KB) = 629672 - -Test 027 control_CubedSphereGrid_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_parallel_intel -Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 127.028495 - 0: The maximum resident set size (KB) = 623036 - -Test 028 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_latlon_intel -Checking test 029 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 134.461420 - 0: The maximum resident set size (KB) = 620856 - -Test 029 control_latlon_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wrtGauss_netcdf_parallel_intel -Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 136.268043 - 0: The maximum resident set size (KB) = 625760 - -Test 030 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c48_intel -Checking test 031 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 364.980203 -0: The maximum resident set size (KB) = 822328 - -Test 031 control_c48_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c192_intel -Checking test 032 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 520.378739 - 0: The maximum resident set size (KB) = 766696 - -Test 032 control_c192_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c384_intel -Checking test 033 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 523.328490 - 0: The maximum resident set size (KB) = 1268368 - -Test 033 control_c384_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c384gdas_intel -Checking test 034 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.213930 - 0: The maximum resident set size (KB) = 1376188 - -Test 034 control_c384gdas_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_intel -Checking test 035 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 86.741952 - 0: The maximum resident set size (KB) = 632512 - -Test 035 control_stochy_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_restart_intel -Checking test 036 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 47.397559 - 0: The maximum resident set size (KB) = 479284 - -Test 036 control_stochy_restart_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_lndp_intel -Checking test 037 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 81.451320 - 0: The maximum resident set size (KB) = 629080 - -Test 037 control_lndp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_iovr4_intel -Checking test 038 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 135.960907 - 0: The maximum resident set size (KB) = 624680 - -Test 038 control_iovr4_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_iovr5_intel -Checking test 039 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 135.128764 - 0: The maximum resident set size (KB) = 626096 - -Test 039 control_iovr5_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_intel -Checking test 040 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 165.615388 - 0: The maximum resident set size (KB) = 1603288 - -Test 040 control_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_restart_p8_intel -Checking test 041 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 86.535592 - 0: The maximum resident set size (KB) = 880620 - -Test 041 control_restart_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_qr_p8_intel -Checking test 042 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 165.737467 - 0: The maximum resident set size (KB) = 1606160 - -Test 042 control_qr_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_restart_qr_p8_intel -Checking test 043 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 88.159522 - 0: The maximum resident set size (KB) = 864316 - -Test 043 control_restart_qr_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_decomp_p8_intel -Checking test 044 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 171.953827 - 0: The maximum resident set size (KB) = 1586740 - -Test 044 control_decomp_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_2threads_p8_intel -Checking test 045 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 155.672201 - 0: The maximum resident set size (KB) = 1681420 - -Test 045 control_2threads_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_lndp_intel -Checking test 046 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 311.180517 - 0: The maximum resident set size (KB) = 1601124 - -Test 046 control_p8_lndp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_rrtmgp_intel -Checking test 047 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 221.788095 - 0: The maximum resident set size (KB) = 1672348 - -Test 047 control_p8_rrtmgp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_mynn_intel -Checking test 048 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 169.457000 - 0: The maximum resident set size (KB) = 1603032 - -Test 048 control_p8_mynn_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/merra2_thompson_intel -Checking test 049 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 189.595510 - 0: The maximum resident set size (KB) = 1598240 - -Test 049 merra2_thompson_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_intel -Checking test 050 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 290.057079 - 0: The maximum resident set size (KB) = 870216 - -Test 050 regional_control_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_restart_intel -Checking test 051 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 145.906577 - 0: The maximum resident set size (KB) = 865412 - -Test 051 regional_restart_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_qr_intel -Checking test 052 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 289.363606 - 0: The maximum resident set size (KB) = 870112 - -Test 052 regional_control_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_restart_qr_intel -Checking test 053 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 146.588677 - 0: The maximum resident set size (KB) = 863268 - -Test 053 regional_restart_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 306.143029 - 0: The maximum resident set size (KB) = 862644 - -Test 054 regional_decomp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 185.249079 - 0: The maximum resident set size (KB) = 851684 - -Test 055 regional_2threads_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_noquilt_intel -Checking test 056 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 289.879122 - 0: The maximum resident set size (KB) = 856928 - -Test 056 regional_noquilt_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_netcdf_parallel_intel -Checking test 057 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 287.159620 - 0: The maximum resident set size (KB) = 864956 - -Test 057 regional_netcdf_parallel_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 290.714162 - 0: The maximum resident set size (KB) = 862404 - -Test 058 regional_2dwrtdecomp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 371.693490 - 0: The maximum resident set size (KB) = 625380 - -Test 059 regional_wofs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_intel -Checking test 060 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 442.333419 - 0: The maximum resident set size (KB) = 1058684 - -Test 060 rap_control_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 225.258615 - 0: The maximum resident set size (KB) = 1185396 - -Test 061 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 462.867724 - 0: The maximum resident set size (KB) = 999396 - -Test 062 rap_decomp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 413.545117 - 0: The maximum resident set size (KB) = 1133880 - -Test 063 rap_2threads_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_intel -Checking test 064 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 225.710581 - 0: The maximum resident set size (KB) = 956852 - -Test 064 rap_restart_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 442.060804 - 0: The maximum resident set size (KB) = 1052048 - -Test 065 rap_sfcdiff_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 467.661339 - 0: The maximum resident set size (KB) = 1002460 - -Test 066 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 330.558634 - 0: The maximum resident set size (KB) = 986660 - -Test 067 rap_sfcdiff_restart_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 427.772434 - 0: The maximum resident set size (KB) = 1057040 - -Test 068 hrrr_control_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_intel -Checking test 069 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 425.492844 - 0: The maximum resident set size (KB) = 1060464 - -Test 069 hrrr_control_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 445.971344 - 0: The maximum resident set size (KB) = 995104 - -Test 070 hrrr_control_decomp_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_intel -Checking test 071 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 393.675483 - 0: The maximum resident set size (KB) = 1076368 - -Test 071 hrrr_control_2threads_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_intel -Checking test 072 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 317.453676 - 0: The maximum resident set size (KB) = 985988 - -Test 072 hrrr_control_restart_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_intel -Checking test 073 hrrr_control_restart_qr_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 318.744711 - 0: The maximum resident set size (KB) = 994312 - -Test 073 hrrr_control_restart_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_intel -Checking test 074 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 438.005843 - 0: The maximum resident set size (KB) = 1054228 - -Test 074 rrfs_v1beta_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1nssl_intel -Checking test 075 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 520.204406 - 0: The maximum resident set size (KB) = 694928 - -Test 075 rrfs_v1nssl_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1nssl_nohailnoccn_intel -Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 508.537952 - 0: The maximum resident set size (KB) = 751512 - -Test 076 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 146.654398 - 0: The maximum resident set size (KB) = 1028504 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 142.077282 - 0: The maximum resident set size (KB) = 976584 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 89.034586 - 0: The maximum resident set size (KB) = 938304 - -Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_intel -Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 129.781229 - 0: The maximum resident set size (KB) = 987916 - -Test 080 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 147.868457 - 0: The maximum resident set size (KB) = 1034964 - -Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 81.787659 - 0: The maximum resident set size (KB) = 1028392 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 86.924574 - 0: The maximum resident set size (KB) = 1013728 - -Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmg_intel -Checking test 084 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 334.682367 - 0: The maximum resident set size (KB) = 726244 - -Test 084 control_csawmg_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmgt_intel -Checking test 085 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 328.832583 - 0: The maximum resident set size (KB) = 727188 - -Test 085 control_csawmgt_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_intel -Checking test 086 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 181.241489 - 0: The maximum resident set size (KB) = 716632 - -Test 086 control_ras_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_intel -Checking test 087 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 110.812571 - 0: The maximum resident set size (KB) = 635020 - -Test 087 control_wam_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_faster_intel -Checking test 088 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 150.589569 - 0: The maximum resident set size (KB) = 1594952 - -Test 088 control_p8_faster_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_control_faster_intel -Checking test 089 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 266.263929 - 0: The maximum resident set size (KB) = 869076 - -Test 089 regional_control_faster_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 835.045797 - 0: The maximum resident set size (KB) = 1063020 - -Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 091 rrfs_smoke_conus13km_hrrr_warm_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 = 461.463366 - 0: The maximum resident set size (KB) = 971292 - -Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 735.745599 - 0: The maximum resident set size (KB) = 1014904 - -Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_CubedSphereGrid_debug_intel -Checking test 093 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 144.268384 - 0: The maximum resident set size (KB) = 795968 - -Test 093 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 142.588208 - 0: The maximum resident set size (KB) = 791492 - -Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_debug_intel -Checking test 095 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 164.733934 - 0: The maximum resident set size (KB) = 800204 - -Test 095 control_stochy_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_lndp_debug_intel -Checking test 096 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 147.372679 - 0: The maximum resident set size (KB) = 796800 - -Test 096 control_lndp_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmg_debug_intel -Checking test 097 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 229.744743 - 0: The maximum resident set size (KB) = 841436 - -Test 097 control_csawmg_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_csawmgt_debug_intel -Checking test 098 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 = 220.002087 - 0: The maximum resident set size (KB) = 840844 - -Test 098 control_csawmgt_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_debug_intel -Checking test 099 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 147.133556 - 0: The maximum resident set size (KB) = 810392 - -Test 099 control_ras_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_diag_debug_intel -Checking test 100 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 = 149.755168 - 0: The maximum resident set size (KB) = 851772 - -Test 100 control_diag_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_debug_p8_intel -Checking test 101 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 = 165.340387 - 0: The maximum resident set size (KB) = 1620888 - -Test 101 control_debug_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_debug_intel -Checking test 102 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 = 982.874550 - 0: The maximum resident set size (KB) = 887904 - -Test 102 regional_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_intel -Checking test 103 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 = 268.702666 - 0: The maximum resident set size (KB) = 1173812 - -Test 103 rap_control_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_intel -Checking test 104 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 = 259.650546 - 0: The maximum resident set size (KB) = 1167576 - -Test 104 hrrr_control_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_unified_drag_suite_debug_intel -Checking test 105 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 = 268.004838 - 0: The maximum resident set size (KB) = 1170084 - -Test 105 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_diag_debug_intel -Checking test 106 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 = 278.832137 - 0: The maximum resident set size (KB) = 1253916 - -Test 106 rap_diag_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_cires_ugwp_debug_intel -Checking test 107 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 = 271.292882 - 0: The maximum resident set size (KB) = 1176080 - -Test 107 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_unified_ugwp_debug_intel -Checking test 108 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 = 270.619520 - 0: The maximum resident set size (KB) = 1173244 - -Test 108 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_lndp_debug_intel -Checking test 109 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 = 271.413531 - 0: The maximum resident set size (KB) = 1168056 - -Test 109 rap_lndp_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_progcld_thompson_debug_intel -Checking test 110 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 271.167552 - 0: The maximum resident set size (KB) = 1174212 - -Test 110 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_debug_intel -Checking test 111 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 265.673057 - 0: The maximum resident set size (KB) = 1171788 - -Test 111 rap_noah_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_debug_intel -Checking test 112 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 = 268.996881 - 0: The maximum resident set size (KB) = 1163916 - -Test 112 rap_sfcdiff_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 113 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 = 441.394741 - 0: The maximum resident set size (KB) = 1171108 - -Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_debug_intel -Checking test 114 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 = 265.263807 - 0: The maximum resident set size (KB) = 1162968 - -Test 114 rrfs_v1beta_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_clm_lake_debug_intel -Checking test 115 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 = 348.803805 - 0: The maximum resident set size (KB) = 1171392 - -Test 115 rap_clm_lake_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_flake_debug_intel -Checking test 116 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 267.007090 - 0: The maximum resident set size (KB) = 1169012 - -Test 116 rap_flake_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_debug_intel -Checking test 117 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 273.839772 - 0: The maximum resident set size (KB) = 520008 - -Test 117 control_wam_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 212.505246 - 0: The maximum resident set size (KB) = 1085676 - -Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn32_phy32_intel -Checking test 119 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 368.602448 - 0: The maximum resident set size (KB) = 1005764 - -Test 119 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_dyn32_phy32_intel -Checking test 120 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 189.525130 - 0: The maximum resident set size (KB) = 958508 - -Test 120 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_dyn32_phy32_intel -Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 189.381403 - 0: The maximum resident set size (KB) = 961760 - -Test 121 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_dyn32_phy32_intel -Checking test 122 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 345.737575 - 0: The maximum resident set size (KB) = 1020448 - -Test 122 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_dyn32_phy32_intel -Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 175.072815 - 0: The maximum resident set size (KB) = 940020 - -Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_dyn32_phy32_intel -Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 200.717655 - 0: The maximum resident set size (KB) = 893948 - -Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_dyn32_phy32_intel -Checking test 125 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 271.616982 - 0: The maximum resident set size (KB) = 946856 - -Test 125 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_dyn32_phy32_intel -Checking test 126 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 = 97.868070 - 0: The maximum resident set size (KB) = 861496 - -Test 126 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 100.219761 - 0: The maximum resident set size (KB) = 884296 - -Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 116.001846 - 0: The maximum resident set size (KB) = 905528 - -Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 111.550234 - 0: The maximum resident set size (KB) = 937436 - -Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 63.837519 - 0: The maximum resident set size (KB) = 899976 - -Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 69.224223 - 0: The maximum resident set size (KB) = 912252 - -Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_intel -Checking test 132 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 240.910394 - 0: The maximum resident set size (KB) = 960416 - -Test 132 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_dyn32_phy32_intel -Checking test 133 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 265.326277 - 0: The maximum resident set size (KB) = 1057032 - -Test 133 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_dyn32_phy32_intel -Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 266.196927 - 0: The maximum resident set size (KB) = 1052320 - -Test 134 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_debug_intel -Checking test 135 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 = 270.401674 - 0: The maximum resident set size (KB) = 1094796 - -Test 135 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_intel -Checking test 136 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 221.160292 - 0: The maximum resident set size (KB) = 1045040 - -Test 136 hafs_regional_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 314.418488 - 0: The maximum resident set size (KB) = 1414764 - -Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_ocn_intel -Checking test 138 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 376.783978 - 0: The maximum resident set size (KB) = 1213704 - -Test 138 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_wav_intel -Checking test 139 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 734.318169 - 0: The maximum resident set size (KB) = 1245972 - -Test 139 hafs_regional_atm_wav_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_atm_ocn_wav_intel -Checking test 140 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 839.464811 - 0: The maximum resident set size (KB) = 1268784 - -Test 140 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_1nest_atm_intel -Checking test 141 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 295.777330 - 0: The maximum resident set size (KB) = 507192 - -Test 141 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_1nest_atm_qr_intel -Checking test 142 hafs_regional_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 302.373949 - 0: The maximum resident set size (KB) = 473468 - -Test 142 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_telescopic_2nests_atm_intel -Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 337.492783 - 0: The maximum resident set size (KB) = 506828 - -Test 143 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_1nest_atm_intel -Checking test 144 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 136.228705 - 0: The maximum resident set size (KB) = 345332 - -Test 144 hafs_global_1nest_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_1nest_atm_qr_intel -Checking test 145 hafs_global_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 141.456156 - 0: The maximum resident set size (KB) = 349024 - -Test 145 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_multiple_4nests_atm_intel -Checking test 146 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 383.515156 - 0: The maximum resident set size (KB) = 419796 - -Test 146 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_multiple_4nests_atm_qr_intel -Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 404.310860 - 0: The maximum resident set size (KB) = 461460 - -Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_specified_moving_1nest_atm_intel -Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 189.125873 - 0: The maximum resident set size (KB) = 518192 - -Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 178.570178 - 0: The maximum resident set size (KB) = 520544 - -Test 149 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 191.119752 - 0: The maximum resident set size (KB) = 494864 - -Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 218.769031 - 0: The maximum resident set size (KB) = 564520 - -Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_global_storm_following_1nest_atm_intel -Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 55.591733 - 0: The maximum resident set size (KB) = 363704 - -Test 152 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - - 0: The total amount of wall time = 715.791783 - 0: The maximum resident set size (KB) = 579456 - -Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 491.978006 - 0: The maximum resident set size (KB) = 615232 - -Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_docn_intel -Checking test 155 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 = 336.070224 - 0: The maximum resident set size (KB) = 1234216 - -Test 155 hafs_regional_docn_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_docn_oisst_intel -Checking test 156 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 = 342.568917 - 0: The maximum resident set size (KB) = 1221456 - -Test 156 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hafs_regional_datm_cdeps_intel -Checking test 157 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 = 948.662847 - 0: The maximum resident set size (KB) = 1038340 - -Test 157 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_intel -Checking test 158 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 156.204370 - 0: The maximum resident set size (KB) = 1051092 - -Test 158 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_restart_cfsr_intel -Checking test 159 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 89.036246 - 0: The maximum resident set size (KB) = 1023912 - -Test 159 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_gefs_intel -Checking test 160 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.986607 - 0: The maximum resident set size (KB) = 967232 - -Test 160 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_iau_gefs_intel -Checking test 161 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 144.884466 - 0: The maximum resident set size (KB) = 958896 - -Test 161 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_stochy_gefs_intel -Checking test 162 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.076696 - 0: The maximum resident set size (KB) = 965952 - -Test 162 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_ciceC_cfsr_intel -Checking test 163 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 149.637203 - 0: The maximum resident set size (KB) = 1064084 - -Test 163 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_bulk_cfsr_intel -Checking test 164 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 149.737014 - 0: The maximum resident set size (KB) = 1056932 - -Test 164 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_bulk_gefs_intel -Checking test 165 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.776313 - 0: The maximum resident set size (KB) = 973060 - -Test 165 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_mx025_cfsr_intel -Checking test 166 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 433.584524 - 0: The maximum resident set size (KB) = 875408 - -Test 166 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_mx025_gefs_intel -Checking test 167 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 436.824107 - 0: The maximum resident set size (KB) = 936348 - -Test 167 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_multiple_files_cfsr_intel -Checking test 168 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 151.801220 - 0: The maximum resident set size (KB) = 1053360 - -Test 168 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_3072x1536_cfsr_intel -Checking test 169 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 = 212.005506 - 0: The maximum resident set size (KB) = 2364112 - -Test 169 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_gfs_intel -Checking test 170 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 214.048091 - 0: The maximum resident set size (KB) = 2356840 - -Test 170 datm_cdeps_gfs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_debug_cfsr_intel -Checking test 171 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 353.217818 - 0: The maximum resident set size (KB) = 1006428 - -Test 171 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_faster_intel -Checking test 172 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 147.552889 - 0: The maximum resident set size (KB) = 1049556 - -Test 172 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_lnd_gswp3_intel -Checking test 173 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 6.927811 - 0: The maximum resident set size (KB) = 265800 - -Test 173 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_lnd_gswp3_rst_intel -Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 12.055097 - 0: The maximum resident set size (KB) = 258716 - -Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_atmlnd_sbs_intel -Checking test 175 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 200.514727 - 0: The maximum resident set size (KB) = 1609972 - -Test 175 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmwav_control_noaero_p8_intel -Checking test 176 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 91.594053 - 0: The maximum resident set size (KB) = 1640312 - -Test 176 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_atmwav_intel -Checking test 177 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 87.217083 - 0: The maximum resident set size (KB) = 660900 - -Test 177 control_atmwav_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_intel -Checking test 178 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 226.389339 - 0: The maximum resident set size (KB) = 2970192 - -Test 178 atmaero_control_p8_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_rad_intel -Checking test 179 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 278.801136 - 0: The maximum resident set size (KB) = 3051240 - -Test 179 atmaero_control_p8_rad_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/atmaero_control_p8_rad_micro_intel -Checking test 180 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 286.088738 - 0: The maximum resident set size (KB) = 3054324 - -Test 180 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_intel -Checking test 181 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 624.014499 - 0: The maximum resident set size (KB) = 1482420 - -Test 181 regional_atmaq_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1188.105617 - 0: The maximum resident set size (KB) = 1393380 - -Test 182 regional_atmaq_debug_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_atmaq_faster_intel -Checking test 183 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 544.681674 - 0: The maximum resident set size (KB) = 1460356 - -Test 183 regional_atmaq_faster_intel PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_c48_gnu -Checking test 184 control_c48_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 682.040920 -0: The maximum resident set size (KB) = 704076 - -Test 184 control_c48_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_gnu -Checking test 185 control_stochy_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 657.830330 - 0: The maximum resident set size (KB) = 480288 - -Test 185 control_stochy_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_gnu -Checking test 186 control_ras_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 848.372706 - 0: The maximum resident set size (KB) = 487392 - -Test 186 control_ras_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_p8_gnu -Checking test 187 control_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 888.732107 - 0: The maximum resident set size (KB) = 1238284 - -Test 187 control_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_flake_gnu -Checking test 188 control_flake_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1554.743111 - 0: The maximum resident set size (KB) = 526940 - -Test 188 control_flake_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_gnu -Checking test 189 rap_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1433.941262 - 0: The maximum resident set size (KB) = 829780 - -Test 189 rap_control_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_decomp_gnu -Checking test 190 rap_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1454.594308 - 0: The maximum resident set size (KB) = 832092 - -Test 190 rap_decomp_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_gnu -Checking test 191 rap_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1360.095006 - 0: The maximum resident set size (KB) = 897040 - -Test 191 rap_2threads_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_gnu -Checking test 192 rap_restart_gnu results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 715.304294 - 0: The maximum resident set size (KB) = 551632 - -Test 192 rap_restart_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_gnu -Checking test 193 rap_sfcdiff_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1474.360223 - 0: The maximum resident set size (KB) = 829756 - -Test 193 rap_sfcdiff_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_decomp_gnu -Checking test 194 rap_sfcdiff_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1451.355373 - 0: The maximum resident set size (KB) = 836824 - -Test 194 rap_sfcdiff_decomp_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_sfcdiff_restart_gnu -Checking test 195 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1083.948733 - 0: The maximum resident set size (KB) = 549648 - -Test 195 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_gnu -Checking test 196 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1458.571569 - 0: The maximum resident set size (KB) = 825840 - -Test 196 hrrr_control_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_gnu -Checking test 197 hrrr_control_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 1511.032932 - 0: The maximum resident set size (KB) = 837736 - -Test 197 hrrr_control_qr_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_gnu -Checking test 198 hrrr_control_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1488.383700 - 0: The maximum resident set size (KB) = 890612 - -Test 198 hrrr_control_2threads_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_gnu -Checking test 199 hrrr_control_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1388.131908 - 0: The maximum resident set size (KB) = 832172 - -Test 199 hrrr_control_decomp_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_gnu -Checking test 200 hrrr_control_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1051.110399 - 0: The maximum resident set size (KB) = 548944 - -Test 200 hrrr_control_restart_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_gnu -Checking test 201 hrrr_control_restart_qr_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1043.485516 - 0: The maximum resident set size (KB) = 559744 - -Test 201 hrrr_control_restart_qr_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_gnu -Checking test 202 rrfs_v1beta_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1431.125266 - 0: The maximum resident set size (KB) = 830772 - -Test 202 rrfs_v1beta_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_gnu -Checking test 203 rrfs_smoke_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 802.477142 - 0: The maximum resident set size (KB) = 666100 - -Test 203 rrfs_smoke_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_qr_gnu -Checking test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 891.050494 - 0: The maximum resident set size (KB) = 622360 - -Test 204 rrfs_smoke_conus13km_hrrr_warm_qr_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_2threads_gnu -Checking test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 1059.715679 - 0: The maximum resident set size (KB) = 665872 - -Test 205 rrfs_smoke_conus13km_hrrr_warm_2threads_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_radar_tten_warm_gnu -Checking test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 804.319031 - 0: The maximum resident set size (KB) = 667812 - -Test 206 rrfs_smoke_conus13km_radar_tten_warm_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_gnu -Checking test 207 rrfs_conus13km_hrrr_warm_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 769.212192 - 0: The maximum resident set size (KB) = 642512 - -Test 207 rrfs_conus13km_hrrr_warm_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -Checking test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 420.143797 - 0: The maximum resident set size (KB) = 656612 - -Test 208 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu -Checking test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 477.446485 - 0: The maximum resident set size (KB) = 678188 - -Test 209 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_diag_debug_gnu -Checking test 210 control_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 120.422325 - 0: The maximum resident set size (KB) = 522880 - -Test 210 control_diag_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/regional_debug_gnu -Checking test 211 regional_debug_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 739.336229 - 0: The maximum resident set size (KB) = 586268 - -Test 211 regional_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_gnu -Checking test 212 rap_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 169.445286 - 0: The maximum resident set size (KB) = 842284 - -Test 212 rap_control_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_gnu -Checking test 213 hrrr_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 165.438426 - 0: The maximum resident set size (KB) = 837060 - -Test 213 hrrr_control_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_diag_debug_gnu -Checking test 214 rap_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 207.142845 - 0: The maximum resident set size (KB) = 921588 - -Test 214 rap_diag_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 271.612347 - 0: The maximum resident set size (KB) = 832604 - -Test 215 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_progcld_thompson_debug_gnu -Checking test 216 rap_progcld_thompson_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 170.291864 - 0: The maximum resident set size (KB) = 843352 - -Test 216 rap_progcld_thompson_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_v1beta_debug_gnu -Checking test 217 rrfs_v1beta_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 171.503669 - 0: The maximum resident set size (KB) = 837164 - -Test 217 rrfs_v1beta_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_ras_debug_gnu -Checking test 218 control_ras_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 101.034727 - 0: The maximum resident set size (KB) = 482716 - -Test 218 control_ras_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_stochy_debug_gnu -Checking test 219 control_stochy_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 117.377604 - 0: The maximum resident set size (KB) = 473112 - -Test 219 control_stochy_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_debug_p8_gnu -Checking test 220 control_debug_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 116.990018 - 0: The maximum resident set size (KB) = 1228320 - -Test 220 control_debug_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -Checking test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 624.971407 - 0: The maximum resident set size (KB) = 679904 - -Test 221 rrfs_smoke_conus13km_hrrr_warm_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu -Checking test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 722.553124 - 0: The maximum resident set size (KB) = 673100 - -Test 222 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_conus13km_hrrr_warm_debug_gnu -Checking test 223 rrfs_conus13km_hrrr_warm_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 598.736956 - 0: The maximum resident set size (KB) = 656500 - -Test 223 rrfs_conus13km_hrrr_warm_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_flake_debug_gnu -Checking test 224 rap_flake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 173.905588 - 0: The maximum resident set size (KB) = 840584 - -Test 224 rap_flake_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_clm_lake_debug_gnu -Checking test 225 rap_clm_lake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 191.587238 - 0: The maximum resident set size (KB) = 845096 - -Test 225 rap_clm_lake_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/control_wam_debug_gnu -Checking test 226 control_wam_debug_gnu results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 179.896407 - 0: The maximum resident set size (KB) = 192260 - -Test 226 control_wam_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn32_phy32_gnu -Checking test 227 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1450.094285 - 0: The maximum resident set size (KB) = 684408 - -Test 227 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_dyn32_phy32_gnu -Checking test 228 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 728.783284 - 0: The maximum resident set size (KB) = 688716 - -Test 228 hrrr_control_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_qr_dyn32_phy32_gnu -Checking test 229 hrrr_control_qr_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 780.219899 - 0: The maximum resident set size (KB) = 692160 - -Test 229 hrrr_control_qr_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_2threads_dyn32_phy32_gnu -Checking test 230 rap_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1350.725751 - 0: The maximum resident set size (KB) = 725968 - -Test 230 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 231 hrrr_control_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 768.679000 - 0: The maximum resident set size (KB) = 723444 - -Test 231 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 232 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 715.877377 - 0: The maximum resident set size (KB) = 683404 - -Test 232 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_restart_dyn32_phy32_gnu -Checking test 233 rap_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1078.642869 - 0: The maximum resident set size (KB) = 511800 - -Test 233 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_dyn32_phy32_gnu -Checking test 234 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 354.783957 - 0: The maximum resident set size (KB) = 509196 - -Test 234 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 235 hrrr_control_restart_qr_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 379.349593 - 0: The maximum resident set size (KB) = 524764 - -Test 235 hrrr_control_restart_qr_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_gnu -Checking test 236 rrfs_smoke_conus13km_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 779.031318 - 0: The maximum resident set size (KB) = 581812 - -Test 236 rrfs_smoke_conus13km_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_qr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_qr_gnu -Checking test 237 rrfs_smoke_conus13km_phy32_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 787.432576 - 0: The maximum resident set size (KB) = 575216 - -Test 237 rrfs_smoke_conus13km_phy32_qr_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -Checking test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 391.181295 - 0: The maximum resident set size (KB) = 570288 - -Test 238 rrfs_smoke_conus13km_phy32_restart_mismatch_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_phy32_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu -Checking test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 405.695026 - 0: The maximum resident set size (KB) = 593180 - -Test 239 rrfs_smoke_conus13km_phy32_restart_qr_mismatch_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_gnu -Checking test 240 rap_control_dyn64_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1072.842191 - 0: The maximum resident set size (KB) = 710372 - -Test 240 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_debug_dyn32_phy32_gnu -Checking test 241 rap_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 169.934642 - 0: The maximum resident set size (KB) = 700560 - -Test 241 rap_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/hrrr_control_debug_dyn32_phy32_gnu -Checking test 242 hrrr_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 165.431829 - 0: The maximum resident set size (KB) = 695860 - -Test 242 hrrr_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/rap_control_dyn64_phy32_debug_gnu -Checking test 243 rap_control_dyn64_phy32_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 204.106958 - 0: The maximum resident set size (KB) = 721788 - -Test 243 rap_control_dyn64_phy32_debug_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_p8_gnu -Checking test 244 cpld_control_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 2045.689484 - 0: The maximum resident set size (KB) = 1429128 - -Test 244 cpld_control_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_nowave_noaero_p8_gnu -Checking test 245 cpld_control_nowave_noaero_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 1225.806840 - 0: The maximum resident set size (KB) = 1330584 - -Test 245 cpld_control_nowave_noaero_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_p8_gnu -Checking test 246 cpld_debug_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 801.994141 - 0: The maximum resident set size (KB) = 1421044 - -Test 246 cpld_debug_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_control_pdlib_p8_gnu -Checking test 247 cpld_control_pdlib_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1725.799345 - 0: The maximum resident set size (KB) = 1294368 - -Test 247 cpld_control_pdlib_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/cpld_debug_pdlib_p8_gnu -Checking test 248 cpld_debug_pdlib_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 903.076475 - 0: The maximum resident set size (KB) = 1301340 - -Test 248 cpld_debug_pdlib_p8_gnu PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_28530/datm_cdeps_control_cfsr_gnu -Checking test 249 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 171.980430 - 0: The maximum resident set size (KB) = 665060 - -Test 249 datm_cdeps_control_cfsr_gnu PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri Jul 14 23:42:09 UTC 2023 -Elapsed time: 02h:01m:37s. Have a nice day! +======= +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: +>>>>>>> remotes/upstream/develop + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) +<<<<<<< HEAD + 4072228943d0b8541d2300db2a2ae7c340c0c259 FV3 (remotes/origin/nsoil9-34-g4072228) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_dyn32_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Helin.Wei/FV3_RT/rt_11313/control_p8_intel +Checking test 001 control_p8_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf003.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing sfcf015.nc ............MISSING baseline + Comparing sfcf018.nc ............MISSING baseline + Comparing sfcf021.nc ............ALT CHECK......NOT OK + Comparing sfcf024.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf021.nc ............ALT CHECK......NOT OK + Comparing atmf024.nc ............ALT CHECK......NOT OK + Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF21 .........NOT OK + Comparing GFSFLX.GrbF24 .........NOT OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF21 .........NOT OK + Comparing GFSPRS.GrbF24 .........NOT OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 176.515039 + 0: The maximum resident set size (KB) = 1610628 + +Test 001 control_p8_intel FAIL + +FAILED TESTS: +001 control_p8_intel failed in check_result + +REGRESSION TEST FAILED +Wed Nov 8 16:35:20 EST 2023 +Elapsed time: 00h:19m:17s. Have a nice day! +======= + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2625282 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:23, 05:49](3317 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 17:19](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 19:00](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:26](1265 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 19:24](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 16:58](1975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:17] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:42](1942 MB) + +PASS -- COMPILE 's2swa_intel' [14:13, 13:47] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:59](3331 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:37, 05:54](3358 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:33, 03:40](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:56](3378 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:59](3272 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:36](3637 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:13, 06:00](3346 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:58](3223 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:31, 06:44](3327 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:31, 10:26](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:26](3633 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 09:37](4284 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:47, 06:21](4395 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:31](3311 MB) + +PASS -- COMPILE 's2sw_intel' [13:13, 13:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:00, 04:54](1987 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:07, 04:31](2039 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:23] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:38](3366 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:21] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:14, 06:00](2027 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:21](2048 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 12:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 08:56](3115 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:43](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:47, 01:35](2550 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:25, 05:32](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 17:42](2028 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 08:19](1281 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 19:57](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:17] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 25:22](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:30, 03:20](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:55](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:59](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:48, 02:54](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 03:01](1611 MB) +PASS -- TEST 'control_c48_intel' [08:54, 07:28](1760 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:25](870 MB) +PASS -- TEST 'control_c192_intel' [12:11, 10:44](1748 MB) +PASS -- TEST 'control_c384_intel' [13:23, 10:31](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [11:25, 08:04](1405 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:40](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:00](506 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:34](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:29, 02:27](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [04:58, 03:09](1903 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:07](1899 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:04](1900 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:45](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:05](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:59, 01:44](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:08](1896 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1984 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:21](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:26](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:01, 03:10](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 03:24](1902 MB) +PASS -- TEST 'regional_control_intel' [06:45, 05:23](1104 MB) +PASS -- TEST 'regional_restart_intel' [03:43, 02:58](1101 MB) +PASS -- TEST 'regional_decomp_intel' [06:44, 05:41](1103 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1094 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:18](1402 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:15](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:18](1108 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1911 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:42](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1306 MB) +PASS -- TEST 'rap_decomp_intel' [09:37, 08:08](1023 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:47, 04:02](1115 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:10](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:49](1136 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 04:04](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:07](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:40](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:10](1011 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:38](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:38, 09:19](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:07](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:35] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](1025 MB) +PASS -- TEST 'control_ras_intel' [04:25, 03:14](750 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:24] +PASS -- TEST 'control_csawmg_gnu' [09:42, 08:23](758 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 10:44] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 10:50](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:07, 02:47](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [05:43, 04:55](1107 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:59] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:38](1630 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1636 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:11](834 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1148 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:45](838 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:51](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:43, 03:02](1923 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 18:08](1111 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:57](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:55](1222 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:56](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:00](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:25](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:06](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:05](1226 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:27, 04:56](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:57](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:51](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:55](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:08](1216 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:05](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:54](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:17](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:36](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 05:03] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:37] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:16, 03:52](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:27](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:25](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:08](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 03:10](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:53](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:53](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:04](1207 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:51, 01:00](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:20](1117 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:11](988 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:59](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:57](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 15:29](1252 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:02](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:21](1171 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:45](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:07](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:02](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:06](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:34, 07:00](843 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:27, 13:46](868 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:37, 15:26](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:38](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:48](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 02:43](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:24](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 03:44](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:01, 03:33](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:01, 04:06](596 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:13](408 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:13, 04:41] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:13](597 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:14, 16:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 08:46](672 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:15, 08:47](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 12:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 06:31](737 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:32, 06:31](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:33](827 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:06](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:46](1163 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:43](1129 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:34](1036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:39](1036 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:39](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:40](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:44](1164 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:31](1030 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 06:47](1066 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 06:25](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](1166 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:55](2507 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 03:57](2467 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:13, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:19](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](1174 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 00:50](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:40](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 03:53](1992 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:14] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:50](1960 MB) + +PASS -- COMPILE 'atml_intel' [13:14, 12:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:20, 04:28](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:28](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 02:33](1105 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:20] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 05:50](1870 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:57, 01:49](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 11:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:08, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:54](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:11](3106 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:09] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:48] +PASS -- TEST 'control_c48_gnu' [12:47, 11:14](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:29, 03:24](502 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:48](504 MB) +PASS -- TEST 'control_p8_gnu' [06:04, 04:50](1468 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:05, 04:46](1458 MB) +PASS -- TEST 'control_flake_gnu' [11:33, 10:21](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:28] +PASS -- TEST 'rap_control_gnu' [12:40, 10:47](815 MB) +PASS -- TEST 'rap_decomp_gnu' [12:38, 11:00](849 MB) +PASS -- TEST 'rap_2threads_gnu' [11:46, 09:55](930 MB) +PASS -- TEST 'rap_restart_gnu' [07:52, 05:33](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:47, 10:54](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:42, 11:10](816 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:51, 07:59](583 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:33](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:34](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:42, 05:06](926 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:50](850 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:36, 02:55](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:36, 02:54](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:50, 10:51](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] +PASS -- TEST 'control_diag_debug_gnu' [04:09, 01:40](1273 MB) +PASS -- TEST 'regional_debug_gnu' [13:45, 11:45](716 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:37](825 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:37](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:41](820 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:25, 02:38](823 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:52, 02:53](903 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:08](855 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:43](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:42](816 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:27, 01:40](489 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:46](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:51](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:28, 02:42](825 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:57](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:25](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:13] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:45, 09:23](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:44, 05:07](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:42](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:46](744 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:17](703 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:06](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](537 MB) +PASS -- TEST 'conus13km_control_gnu' [05:07, 03:09](875 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:56, 06:06](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:53, 01:52](548 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:13, 10:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:52](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:39](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:29, 02:34](713 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:01, 06:52](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](588 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:48, 07:40](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:47, 07:08](956 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:30, 02:45](731 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:46] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:57] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:20, 07:27](1521 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:15, 03:27] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:15, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:07](1461 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:13, 03:13] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:59, 12:42](1458 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:13, 15:41] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:01](685 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 14:36:54 +Ending Date/Time: 20240731 16:12:18 +Total Time: 01h:37m:22s +Compiles Completed: 57/57 +Tests Completed: 242/244 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3087081 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [05:13, 04:08] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:57, 13:51](1679 MB) + +PASS -- COMPILE 'hafsw_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [06:47, 04:25](1734 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 18:41:55 +Ending Date/Time: 20240731 19:05:36 +Total Time: 00h:24m:15s +Compiles Completed: 2/2 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERA REGRESSION TESTING LOG==== +>>>>>>> remotes/upstream/develop diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log new file mode 100644 index 0000000000..b5ff9e7f1c --- /dev/null +++ b/tests/logs/RegressionTests_hercules.log @@ -0,0 +1,417 @@ +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3083262 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:34, 08:19](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:35](2005 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:06](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:33](1328 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:58, 15:33](1923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:06](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:25] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:30, 20:32](1978 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:20, 08:20](2182 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 08:10](2193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:23](1987 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 08:17](2202 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:29](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 09:29](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 08:05](2184 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:29, 06:48](2096 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:33, 08:01](2185 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:10, 16:06](2984 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:26, 05:53](2939 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 09:52](3817 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 06:17](3653 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:53](2149 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:18, 07:10](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:26](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:46] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 07:48](2219 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:37](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:50](2073 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:52, 07:06](3112 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:54, 02:05](3080 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:44](2549 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:42](2181 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:59, 13:45](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:47](1379 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:13](1965 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 22:49](2039 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 03:43](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:33, 02:25](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1633 MB) +PASS -- TEST 'control_latlon_intel' [03:31, 02:26](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:37](1623 MB) +PASS -- TEST 'control_c48_intel' [07:35, 06:53](1741 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:52](862 MB) +PASS -- TEST 'control_c192_intel' [09:48, 09:06](1751 MB) +PASS -- TEST 'control_c384_intel' [11:28, 09:17](2056 MB) +PASS -- TEST 'control_c384gdas_intel' [12:03, 09:41](1516 MB) +PASS -- TEST 'control_stochy_intel' [02:21, 01:43](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:03](558 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:45](678 MB) +PASS -- TEST 'control_iovr4_intel' [03:22, 02:38](662 MB) +PASS -- TEST 'control_iovr5_intel' [03:22, 02:38](674 MB) +PASS -- TEST 'control_p8_intel' [03:52, 02:44](1906 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 02:45](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:59, 02:38](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:37](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:55, 02:42](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:34](1199 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:42, 02:48](1890 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:32](1989 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:46](1903 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:38](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:47](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [04:01, 02:59](1911 MB) +PASS -- TEST 'regional_control_intel' [06:32, 05:27](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:36](1175 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:56](1186 MB) +PASS -- TEST 'regional_2threads_intel' [03:30, 03:04](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [05:32, 04:58](1523 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:36, 04:41](1205 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:45](1203 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 07:01](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:42, 06:37](1211 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:27](1410 MB) +PASS -- TEST 'rap_decomp_intel' [07:42, 06:54](1150 MB) +PASS -- TEST 'rap_2threads_intel' [07:42, 06:13](1377 MB) +PASS -- TEST 'rap_restart_intel' [04:58, 03:28](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:43](1208 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 06:57](1140 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:06](1204 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:29](1080 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:32](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:08](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:30, 01:54](1047 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:30](1204 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:41](2021 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:25](2181 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 07:23] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:50](1056 MB) +PASS -- TEST 'control_ras_intel' [03:21, 02:56](860 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:41, 07:03](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:37, 10:33](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 14:00] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:44](1911 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 05:17](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:58] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:16](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:12](1652 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:31](847 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:16](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:17](1163 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:21](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:37, 02:20](1706 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1932 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 17:00](1154 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:09](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:24, 04:04](1229 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 04:03](1237 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 04:08](1234 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:10](1327 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:09](1234 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:07](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:19, 04:05](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 03:59](1236 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:03](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:54](1231 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:05](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 05:14](1242 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:06](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:02, 07:09](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:52](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:15] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:55, 03:35](1268 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:56](1172 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:34](1057 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:47, 06:05](1296 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 03:05](1047 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:58](1010 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:47, 05:27](1130 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 02:08](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 11:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:43, 01:45](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:38, 00:45](1212 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:33, 01:03](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 03:44](1099 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:11](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:58](1112 MB) +PASS -- TEST 'conus13km_debug_intel' [13:37, 12:40](1353 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:59](1012 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:31, 08:30](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:36, 12:46](1437 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:30](1178 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 10:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:20](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 04:49](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:18](964 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:57](997 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:22](610 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:52](625 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:35](441 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 07:23](553 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:33](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:49](685 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 14:19](648 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 16:00](751 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 15:37](854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:41](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:03, 05:26](943 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:59, 05:26](916 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:47, 16:32](1346 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:11](1134 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:20](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:05](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:07](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:11](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:13](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:18](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:06](1032 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1172 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:50](1165 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:12](1165 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2391 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:17, 03:02](2460 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:33] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 05:06](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:34](564 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:49] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:51, 03:38](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 08:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:50, 03:07](1991 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 05:54](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 05:50](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 02:59](1163 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:10] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:56](1938 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:38] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:44](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 07:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:55](2038 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:23](1810 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:35](1810 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:57] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 17:05](4579 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:09] +PASS -- TEST 'control_c48_gnu' [11:44, 09:26](1574 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:22](727 MB) +PASS -- TEST 'control_ras_gnu' [05:17, 03:47](738 MB) +PASS -- TEST 'control_p8_gnu' [05:49, 04:14](1735 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:47](1738 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:36](814 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 04:07] +PASS -- TEST 'rap_control_gnu' [09:44, 07:58](1094 MB) +PASS -- TEST 'rap_decomp_gnu' [09:36, 08:13](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 07:16](1144 MB) +PASS -- TEST 'rap_restart_gnu' [04:51, 04:06](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:01](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:44, 08:05](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:01, 06:20](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:38, 04:13](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:37, 04:07](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:45](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:16](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:14](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:23, 02:21](939 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 08:07](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:11] +PASS -- TEST 'control_diag_debug_gnu' [02:34, 01:19](1639 MB) +PASS -- TEST 'regional_debug_gnu' [07:27, 06:43](1144 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:10](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:05](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:58](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 01:57](1102 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:31, 02:10](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 03:17](1099 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:07](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:57](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:12](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:22](729 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:28, 01:29](1728 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1102 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:20](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:26](1109 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:46] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:23](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:12] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:58](973 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 04:09](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:51, 07:03](967 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:04, 03:40](871 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:42, 04:06](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:41, 06:07](871 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:18](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:39, 02:51](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:38, 01:10](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:40, 01:35](922 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 04:34](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:51] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:16](980 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:01](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:53](1292 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 06:26](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:58](1197 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:52](1358 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:26](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:14] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:05, 05:24](2720 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:16] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:08, 25:54](3034 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:45] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:54, 12:06](2924 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:23](765 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 09:21:00 +Ending Date/Time: 20240731 10:54:53 +Total Time: 01h:34m:43s +Compiles Completed: 57/57 +Tests Completed: 244/244 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 19f24ec7e8..8a1843f928 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,4779 +1,295 @@ -Fri Jul 14 08:44:21 UTC 2023 -Start Regression test - -Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atm_debug_dyn32_intel elapsed time 313 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2032 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1851 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1946 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1873 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1873 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1933 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 1399 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 2502 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 2109 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 2091 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 3077 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 216 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 1904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1979 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_intel elapsed time 1979 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 241 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 1754 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2101 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 251 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 3338 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2146 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 238 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 1804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 413.640517 - 0: The maximum resident set size (KB) = 1737572 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 291.417724 - 0: The maximum resident set size (KB) = 1601600 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 451.465247 - 0: The maximum resident set size (KB) = 1774972 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 268.097646 - 0: The maximum resident set size (KB) = 1486904 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 453.970041 - 0: The maximum resident set size (KB) = 1781712 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 274.699632 - 0: The maximum resident set size (KB) = 1505784 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 475.650604 - 0: The maximum resident set size (KB) = 1972108 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 464.394500 - 0: The maximum resident set size (KB) = 1774748 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 379.668718 - 0: The maximum resident set size (KB) = 1730788 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 455.437667 - 0: The maximum resident set size (KB) = 1772612 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_noaero_p8_intel -Checking test 011 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 343.211023 - 0: The maximum resident set size (KB) = 1617540 - -Test 011 cpld_control_noaero_p8_intel PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_nowave_noaero_p8_intel -Checking test 012 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 349.142939 - 0: The maximum resident set size (KB) = 1672560 - -Test 012 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_debug_p8_intel -Checking test 013 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 681.229196 - 0: The maximum resident set size (KB) = 1830232 - -Test 013 cpld_debug_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_debug_noaero_p8_intel -Checking test 014 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 475.406905 - 0: The maximum resident set size (KB) = 1623856 - -Test 014 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_c48_intel -Checking test 016 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 803.918608 - 0: The maximum resident set size (KB) = 2760188 - -Test 016 cpld_control_c48_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/cpld_control_p8_faster_intel -Checking test 017 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 431.069324 - 0: The maximum resident set size (KB) = 1772820 - -Test 017 cpld_control_p8_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_flake_intel -Checking test 018 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 271.117372 - 0: The maximum resident set size (KB) = 618820 - -Test 018 control_flake_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_intel -Checking test 019 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 187.193825 - 0: The maximum resident set size (KB) = 572652 - -Test 019 control_CubedSphereGrid_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_parallel_intel -Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 182.714026 - 0: The maximum resident set size (KB) = 568964 - -Test 020 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_latlon_intel -Checking test 021 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 192.230271 - 0: The maximum resident set size (KB) = 569156 - -Test 021 control_latlon_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wrtGauss_netcdf_parallel_intel -Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 196.432862 - 0: The maximum resident set size (KB) = 571484 - -Test 022 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c48_intel -Checking test 023 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 594.619362 -0: The maximum resident set size (KB) = 788872 - -Test 023 control_c48_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c192_intel -Checking test 024 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 726.453684 - 0: The maximum resident set size (KB) = 691436 - -Test 024 control_c192_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c384_intel -Checking test 025 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 930.558503 - 0: The maximum resident set size (KB) = 1058524 - -Test 025 control_c384_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_c384gdas_intel -Checking test 026 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 811.988485 - 0: The maximum resident set size (KB) = 1193408 - -Test 026 control_c384gdas_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_intel -Checking test 027 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 126.244726 - 0: The maximum resident set size (KB) = 581100 - -Test 027 control_stochy_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_restart_intel -Checking test 028 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 67.583047 - 0: The maximum resident set size (KB) = 397236 - -Test 028 control_stochy_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_lndp_intel -Checking test 029 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 115.424093 - 0: The maximum resident set size (KB) = 573724 - -Test 029 control_lndp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_iovr4_intel -Checking test 030 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 193.722328 - 0: The maximum resident set size (KB) = 568132 - -Test 030 control_iovr4_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_iovr5_intel -Checking test 031 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 190.169953 - 0: The maximum resident set size (KB) = 572416 - -Test 031 control_iovr5_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_intel -Checking test 032 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 229.501651 - 0: The maximum resident set size (KB) = 1537572 - -Test 032 control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_restart_p8_intel -Checking test 033 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 118.873891 - 0: The maximum resident set size (KB) = 786256 - -Test 033 control_restart_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_qr_p8_intel -Checking test 034 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 234.531544 - 0: The maximum resident set size (KB) = 1542408 - -Test 034 control_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_restart_qr_p8_intel -Checking test 035 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 131.816346 - 0: The maximum resident set size (KB) = 789252 - -Test 035 control_restart_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_decomp_p8_intel -Checking test 036 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 239.522416 - 0: The maximum resident set size (KB) = 1534340 - -Test 036 control_decomp_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_2threads_p8_intel -Checking test 037 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 215.948281 - 0: The maximum resident set size (KB) = 1621764 - -Test 037 control_2threads_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_lndp_intel -Checking test 038 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 431.334326 - 0: The maximum resident set size (KB) = 1537028 - -Test 038 control_p8_lndp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_rrtmgp_intel -Checking test 039 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 303.152354 - 0: The maximum resident set size (KB) = 1608564 - -Test 039 control_p8_rrtmgp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_mynn_intel -Checking test 040 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 234.319719 - 0: The maximum resident set size (KB) = 1539816 - -Test 040 control_p8_mynn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/merra2_thompson_intel -Checking test 041 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 257.860274 - 0: The maximum resident set size (KB) = 1550828 - -Test 041 merra2_thompson_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_intel -Checking test 042 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 398.657814 - 0: The maximum resident set size (KB) = 783972 - -Test 042 regional_control_intel PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_restart_intel -Checking test 043 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 212.988948 - 0: The maximum resident set size (KB) = 778556 - -Test 043 regional_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_qr_intel -Checking test 044 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 410.730023 - 0: The maximum resident set size (KB) = 785000 - -Test 044 regional_control_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_restart_qr_intel -Checking test 045 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 201.760143 - 0: The maximum resident set size (KB) = 780868 - -Test 045 regional_restart_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_decomp_intel -Checking test 046 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 425.242934 - 0: The maximum resident set size (KB) = 784264 - -Test 046 regional_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_2threads_intel -Checking test 047 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 244.842307 - 0: The maximum resident set size (KB) = 775980 - -Test 047 regional_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_netcdf_parallel_intel -Checking test 048 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 393.512558 - 0: The maximum resident set size (KB) = 778156 - -Test 048 regional_netcdf_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_2dwrtdecomp_intel -Checking test 049 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 402.736514 - 0: The maximum resident set size (KB) = 788704 - -Test 049 regional_2dwrtdecomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_intel -Checking test 050 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 594.859341 - 0: The maximum resident set size (KB) = 948668 - -Test 050 rap_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_spp_sppt_shum_skeb_intel -Checking test 051 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 322.791861 - 0: The maximum resident set size (KB) = 1093336 - -Test 051 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_decomp_intel -Checking test 052 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 616.545286 - 0: The maximum resident set size (KB) = 943412 - -Test 052 rap_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_2threads_intel -Checking test 053 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 556.899603 - 0: The maximum resident set size (KB) = 1030976 - -Test 053 rap_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_restart_intel -Checking test 054 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 297.694914 - 0: The maximum resident set size (KB) = 828812 - -Test 054 rap_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_intel -Checking test 055 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 592.285664 - 0: The maximum resident set size (KB) = 945140 - -Test 055 rap_sfcdiff_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_decomp_intel -Checking test 056 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 630.438700 - 0: The maximum resident set size (KB) = 936260 - -Test 056 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_restart_intel -Checking test 057 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 439.285423 - 0: The maximum resident set size (KB) = 842336 - -Test 057 rap_sfcdiff_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_intel -Checking test 058 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 567.053423 - 0: The maximum resident set size (KB) = 954288 - -Test 058 hrrr_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_qr_intel -Checking test 059 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 564.202035 - 0: The maximum resident set size (KB) = 951940 - -Test 059 hrrr_control_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_decomp_intel -Checking test 060 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 594.548873 - 0: The maximum resident set size (KB) = 949816 - -Test 060 hrrr_control_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_2threads_intel -Checking test 061 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 530.929784 - 0: The maximum resident set size (KB) = 1008172 - -Test 061 hrrr_control_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_intel -Checking test 062 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 425.906584 - 0: The maximum resident set size (KB) = 833640 - -Test 062 hrrr_control_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_qr_intel -Checking test 063 hrrr_control_restart_qr_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 422.504260 - 0: The maximum resident set size (KB) = 844860 - -Test 063 hrrr_control_restart_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1beta_intel -Checking test 064 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 582.030714 - 0: The maximum resident set size (KB) = 955336 - -Test 064 rrfs_v1beta_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1nssl_intel -Checking test 065 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 702.383656 - 0: The maximum resident set size (KB) = 633068 - -Test 065 rrfs_v1nssl_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1nssl_nohailnoccn_intel -Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 686.735455 - 0: The maximum resident set size (KB) = 632776 - -Test 066 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 201.457479 - 0: The maximum resident set size (KB) = 914200 - -Test 067 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 190.602951 - 0: The maximum resident set size (KB) = 876236 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 129.084012 - 0: The maximum resident set size (KB) = 875724 - -Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_conus13km_hrrr_warm_intel -Checking test 070 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 188.623522 - 0: The maximum resident set size (KB) = 872216 - -Test 070 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 202.068961 - 0: The maximum resident set size (KB) = 903944 - -Test 071 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 118.378315 - 0: The maximum resident set size (KB) = 889940 - -Test 072 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 121.816938 - 0: The maximum resident set size (KB) = 919672 - -Test 073 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmg_intel -Checking test 074 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 454.322850 - 0: The maximum resident set size (KB) = 674208 - -Test 074 control_csawmg_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmgt_intel -Checking test 075 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 452.893855 - 0: The maximum resident set size (KB) = 664348 - -Test 075 control_csawmgt_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_ras_intel -Checking test 076 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 251.148965 - 0: The maximum resident set size (KB) = 633116 - -Test 076 control_ras_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/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 = 153.274155 - 0: The maximum resident set size (KB) = 486348 - -Test 077 control_wam_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_faster_intel -Checking test 078 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 219.791498 - 0: The maximum resident set size (KB) = 1538688 - -Test 078 control_p8_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_control_faster_intel -Checking test 079 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 367.608659 - 0: The maximum resident set size (KB) = 780636 - -Test 079 regional_control_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1091.310615 - 0: The maximum resident set size (KB) = 923628 - -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_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 = 633.010456 - 0: The maximum resident set size (KB) = 894380 - -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 082 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 966.316231 - 0: The maximum resident set size (KB) = 892772 - -Test 082 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_CubedSphereGrid_debug_intel -Checking test 083 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 186.363913 - 0: The maximum resident set size (KB) = 729128 - -Test 083 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 187.356782 - 0: The maximum resident set size (KB) = 724496 - -Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_stochy_debug_intel -Checking test 085 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 212.384665 - 0: The maximum resident set size (KB) = 734336 - -Test 085 control_stochy_debug_intel PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_lndp_debug_intel -Checking test 086 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 188.702908 - 0: The maximum resident set size (KB) = 729892 - -Test 086 control_lndp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmg_debug_intel -Checking test 087 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 304.467583 - 0: The maximum resident set size (KB) = 780724 - -Test 087 control_csawmg_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_csawmgt_debug_intel -Checking test 088 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 300.688173 - 0: The maximum resident set size (KB) = 778036 - -Test 088 control_csawmgt_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_ras_debug_intel -Checking test 089 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 191.613831 - 0: The maximum resident set size (KB) = 743268 - -Test 089 control_ras_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_diag_debug_intel -Checking test 090 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 197.563822 - 0: The maximum resident set size (KB) = 788960 - -Test 090 control_diag_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_debug_p8_intel -Checking test 091 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 219.112185 - 0: The maximum resident set size (KB) = 1555456 - -Test 091 control_debug_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_debug_intel -Checking test 092 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 1265.725060 - 0: The maximum resident set size (KB) = 822940 - -Test 092 regional_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_debug_intel -Checking test 093 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 350.372640 - 0: The maximum resident set size (KB) = 1109744 - -Test 093 rap_control_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_debug_intel -Checking test 094 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 340.562850 - 0: The maximum resident set size (KB) = 1107984 - -Test 094 hrrr_control_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_unified_drag_suite_debug_intel -Checking test 095 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 = 350.456902 - 0: The maximum resident set size (KB) = 1113112 - -Test 095 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_diag_debug_intel -Checking test 096 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 = 367.490429 - 0: The maximum resident set size (KB) = 1187352 - -Test 096 rap_diag_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_cires_ugwp_debug_intel -Checking test 097 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 = 360.437426 - 0: The maximum resident set size (KB) = 1100416 - -Test 097 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_unified_ugwp_debug_intel -Checking test 098 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 = 357.097904 - 0: The maximum resident set size (KB) = 1105148 - -Test 098 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_lndp_debug_intel -Checking test 099 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 = 352.168697 - 0: The maximum resident set size (KB) = 1108448 - -Test 099 rap_lndp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 351.869027 - 0: The maximum resident set size (KB) = 1107436 - -Test 100 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_noah_debug_intel -Checking test 101 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 = 340.612150 - 0: The maximum resident set size (KB) = 1110300 - -Test 101 rap_noah_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 350.834160 - 0: The maximum resident set size (KB) = 1107856 - -Test 102 rap_sfcdiff_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 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 = 576.448159 - 0: The maximum resident set size (KB) = 1108352 - -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 343.635610 - 0: The maximum resident set size (KB) = 1102596 - -Test 104 rrfs_v1beta_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 430.471453 - 0: The maximum resident set size (KB) = 1107328 - -Test 105 rap_clm_lake_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_flake_debug_intel -Checking test 106 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 = 348.177827 - 0: The maximum resident set size (KB) = 1112120 - -Test 106 rap_flake_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_wam_debug_intel -Checking test 107 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 356.521286 - 0: The maximum resident set size (KB) = 433128 - -Test 107 control_wam_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 292.229424 - 0: The maximum resident set size (KB) = 984620 - -Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_dyn32_phy32_intel -Checking test 109 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 488.402017 - 0: The maximum resident set size (KB) = 836720 - -Test 109 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_dyn32_phy32_intel -Checking test 110 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 255.417430 - 0: The maximum resident set size (KB) = 837216 - -Test 110 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_qr_dyn32_phy32_intel -Checking test 111 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 252.847706 - 0: The maximum resident set size (KB) = 847196 - -Test 111 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 462.942898 - 0: The maximum resident set size (KB) = 880032 - -Test 112 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 233.353728 - 0: The maximum resident set size (KB) = 872812 - -Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 270.835530 - 0: The maximum resident set size (KB) = 834360 - -Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 353.136309 - 0: The maximum resident set size (KB) = 799508 - -Test 115 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 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 = 129.484569 - 0: The maximum resident set size (KB) = 766948 - -Test 116 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 117 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 = 130.806009 - 0: The maximum resident set size (KB) = 793468 - -Test 117 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 118 rrfs_smoke_conus13km_fast_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 159.884116 - 0: The maximum resident set size (KB) = 812220 - -Test 118 rrfs_smoke_conus13km_fast_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 155.607229 - 0: The maximum resident set size (KB) = 815236 - -Test 119 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 100.190863 - 0: The maximum resident set size (KB) = 813436 - -Test 120 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 102.014642 - 0: The maximum resident set size (KB) = 819280 - -Test 121 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_dyn64_phy32_intel -Checking test 122 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 340.187100 - 0: The maximum resident set size (KB) = 876572 - -Test 122 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_debug_dyn32_phy32_intel -Checking test 123 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 = 344.988078 - 0: The maximum resident set size (KB) = 997404 - -Test 123 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hrrr_control_debug_dyn32_phy32_intel -Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 340.581878 - 0: The maximum resident set size (KB) = 997544 - -Test 124 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/rap_control_dyn64_phy32_debug_intel -Checking test 125 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 350.334248 - 0: The maximum resident set size (KB) = 1032484 - -Test 125 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_intel -Checking test 126 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 322.263671 - 0: The maximum resident set size (KB) = 1154024 - -Test 126 hafs_regional_atm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 393.315742 - 0: The maximum resident set size (KB) = 1512372 - -Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_ocn_intel -Checking test 128 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 501.701737 - 0: The maximum resident set size (KB) = 1303112 - -Test 128 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_wav_intel -Checking test 129 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 917.311337 - 0: The maximum resident set size (KB) = 1333624 - -Test 129 hafs_regional_atm_wav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_atm_ocn_wav_intel -Checking test 130 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1045.947807 - 0: The maximum resident set size (KB) = 1347940 - -Test 130 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_docn_intel -Checking test 131 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 = 467.674035 - 0: The maximum resident set size (KB) = 1301960 - -Test 131 hafs_regional_docn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/hafs_regional_docn_oisst_intel -Checking test 132 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 = 461.947640 - 0: The maximum resident set size (KB) = 1291308 - -Test 132 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_cfsr_intel -Checking test 133 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 = 203.829688 - 0: The maximum resident set size (KB) = 969692 - -Test 133 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_restart_cfsr_intel -Checking test 134 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 = 123.029079 - 0: The maximum resident set size (KB) = 939316 - -Test 134 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_gefs_intel -Checking test 135 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 198.597264 - 0: The maximum resident set size (KB) = 854116 - -Test 135 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_iau_gefs_intel -Checking test 136 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 202.067405 - 0: The maximum resident set size (KB) = 854084 - -Test 136 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_stochy_gefs_intel -Checking test 137 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 = 203.164946 - 0: The maximum resident set size (KB) = 855404 - -Test 137 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_ciceC_cfsr_intel -Checking test 138 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 = 204.799547 - 0: The maximum resident set size (KB) = 970480 - -Test 138 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_bulk_cfsr_intel -Checking test 139 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 = 205.535322 - 0: The maximum resident set size (KB) = 955904 - -Test 139 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_bulk_gefs_intel -Checking test 140 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 = 198.450336 - 0: The maximum resident set size (KB) = 859948 - -Test 140 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_mx025_cfsr_intel -Checking test 141 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 543.672413 - 0: The maximum resident set size (KB) = 763188 - -Test 141 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_mx025_gefs_intel -Checking test 142 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 534.769321 - 0: The maximum resident set size (KB) = 736032 - -Test 142 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_multiple_files_cfsr_intel -Checking test 143 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 202.331530 - 0: The maximum resident set size (KB) = 959076 - -Test 143 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_3072x1536_cfsr_intel -Checking test 144 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 = 273.253030 - 0: The maximum resident set size (KB) = 2188700 - -Test 144 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_gfs_intel -Checking test 145 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 = 306.985821 - 0: The maximum resident set size (KB) = 2244820 - -Test 145 datm_cdeps_gfs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_debug_cfsr_intel -Checking test 146 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 463.293345 - 0: The maximum resident set size (KB) = 911560 - -Test 146 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_control_cfsr_faster_intel -Checking test 147 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 = 201.884016 - 0: The maximum resident set size (KB) = 959800 - -Test 147 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_lnd_gswp3_intel -Checking test 148 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 12.167908 - 0: The maximum resident set size (KB) = 250456 - -Test 148 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/datm_cdeps_lnd_gswp3_rst_intel -Checking test 149 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 18.348583 - 0: The maximum resident set size (KB) = 245572 - -Test 149 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_p8_atmlnd_sbs_intel -Checking test 150 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 275.723773 - 0: The maximum resident set size (KB) = 1593456 - -Test 150 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmwav_control_noaero_p8_intel -Checking test 151 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 133.014384 - 0: The maximum resident set size (KB) = 1573828 - -Test 151 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/control_atmwav_intel -Checking test 152 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 119.034749 - 0: The maximum resident set size (KB) = 590608 - -Test 152 control_atmwav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_intel -Checking test 153 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 302.633562 - 0: The maximum resident set size (KB) = 1633652 - -Test 153 atmaero_control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_rad_intel -Checking test 154 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 375.515952 - 0: The maximum resident set size (KB) = 1667316 - -Test 154 atmaero_control_p8_rad_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_246382/atmaero_control_p8_rad_micro_intel -Checking test 155 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 384.120376 - 0: The maximum resident set size (KB) = 1668252 - -Test 155 atmaero_control_p8_rad_micro_intel PASS - -FAILED TESTS: -compile_s2s_aoflux_intel failed in run_compile - -REGRESSION TEST FAILED -Fri Jul 14 16:50:02 UTC 2023 -Elapsed time: 08h:05m:42s. Have a nice day! -Fri Jul 14 17:44:50 UTC 2023 -Start Regression test - -Testing UFSWM Hash: 468540cd7b37378fedee39677f27d54273889b51 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1402-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 1842 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_246593/atmaero_control_p8_rad_micro_intel -Checking test 001 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 374.619270 - 0: The maximum resident set size (KB) = 1678808 - -Test 001 atmaero_control_p8_rad_micro_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri Jul 14 18:28:19 UTC 2023 -Elapsed time: 00h:43m:30s. Have a nice day! +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +4062b88d6b40c90e783e00de145f1e2f0dd8a0e3 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3686172 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:36] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:47, 07:14](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:32] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:32](1894 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:14](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:42, 11:07](1134 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:35, 24:34](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:17, 54:32] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 21:09](1883 MB) + +PASS -- COMPILE 's2swa_intel' [42:14, 40:54] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:00](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 07:57](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:53](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:00](2080 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:58, 05:00](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:21, 07:55](2323 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 08:02](2060 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 06:58](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 08:03](2058 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:33, 07:27](2045 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:19] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 06:37](1908 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:27](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:10] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:44, 11:05](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:12, 07:44](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 35:00] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:44, 06:16](1972 MB) + +PASS -- COMPILE 's2s_intel' [38:16, 35:21] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3078 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 03:58](3054 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:59, 02:29](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:27, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:11, 07:38](2028 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:21, 47:08] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:37, 21:41](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:02](1136 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 25:13](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:46] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:53](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:00] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 04:28](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:01](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 04:05](1557 MB) +PASS -- TEST 'control_latlon_intel' [05:09, 03:55](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:00](1545 MB) +PASS -- TEST 'control_c48_intel' [15:28, 11:46](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:53, 10:13](854 MB) +PASS -- TEST 'control_c192_intel' [17:42, 14:13](1691 MB) +PASS -- TEST 'control_c384_intel' [24:36, 17:54](1837 MB) +PASS -- TEST 'control_c384gdas_intel' [21:34, 13:17](1023 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:15](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:21](438 MB) +PASS -- TEST 'control_lndp_intel' [03:37, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](602 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 03:23](605 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:43](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:06, 04:48](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:27](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [04:06, 02:50](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:27](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:47](1076 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:52](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:37](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:15, 07:47](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 05:58](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:54, 04:43](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [07:03, 05:00](1847 MB) +PASS -- TEST 'regional_control_intel' [09:06, 07:57](1014 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 04:36](1010 MB) +PASS -- TEST 'regional_decomp_intel' [10:07, 08:15](1020 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 05:55](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:13, 07:52](1022 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:06, 07:58](1014 MB) + +PASS -- COMPILE 'rrfs_intel' [36:17, 35:44] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [15:09, 10:17](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 05:39](1222 MB) +PASS -- TEST 'rap_decomp_intel' [14:16, 10:41](988 MB) +PASS -- TEST 'rap_2threads_intel' [14:16, 09:44](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 05:19](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:32, 10:05](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:07, 10:40](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:12, 07:36](1004 MB) +PASS -- TEST 'hrrr_control_intel' [10:01, 05:17](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:03, 05:27](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:40, 04:48](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:32, 02:49](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:44, 10:02](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:29](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:12](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [33:19, 32:42] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:48, 08:46](960 MB) +PASS -- TEST 'control_ras_intel' [05:27, 04:30](663 MB) + +PASS -- COMPILE 'wam_intel' [33:18, 32:39] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [15:55, 14:18](1632 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:45] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:34, 04:14](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:46, 07:12](1011 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:59, 03:27](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:20](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:49](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:28](770 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:57, 05:59](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:28](788 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:27](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [06:07, 04:25](1878 MB) +PASS -- TEST 'regional_debug_intel' [24:02, 22:44](1044 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:10](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:37, 06:04](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:10](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:11](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 06:30](1243 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 06:22](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:29, 06:17](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:12](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 06:17](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:13](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 06:09](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:33, 07:32](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:12](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:29, 10:45](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:42] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:05, 16:52](1652 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:42] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:21](1081 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:01, 08:25](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:29](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 08:00](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:20, 04:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 04:46](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 06:15](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 02:25](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:20, 48:43] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:13, 02:58](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:51, 01:36](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:16, 31:03] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 05:34](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:08](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:01](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:05, 18:40](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:54](900 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:57, 10:51](1099 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:58, 18:41](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:28, 06:12](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [39:17, 38:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:27, 06:59](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:41, 06:51](1095 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:46, 09:19](767 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:30, 16:30](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:55, 18:08](827 MB) +PASS -- TEST 'gnv1_nested_intel' [27:10, 07:31](1683 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:17, 33:41] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:30, 08:46](773 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:31, 08:53](753 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1084 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:14](1027 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:25, 03:31](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 03:33](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:34](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:35](1049 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:57](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:22, 07:51](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:15](2407 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:05](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:25, 08:02](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:37] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:36](1069 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:42, 02:00](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:36, 01:43](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:54](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 34:08] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:29, 05:35](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:15, 33:24] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:39, 05:31](1875 MB) + +PASS -- COMPILE 'atml_intel' [38:16, 37:52] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:48, 08:59](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:46, 09:11](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 04:52](1076 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:04] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:54, 08:16](1899 MB) + +PASS -- COMPILE 'atmw_intel' [36:16, 35:32] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:23, 02:51](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [31:18, 27:13] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:32, 05:58](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:29, 06:29](1723 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:20, 06:33](1734 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 21:01:26 +Ending Date/Time: 20240801 00:59:10 +Total Time: 03h:58m:22s +Compiles Completed: 36/36 +Tests Completed: 164/164 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF JET REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_noaacloud.log b/tests/logs/RegressionTests_noaacloud.log new file mode 100644 index 0000000000..2e84cdbe8c --- /dev/null +++ b/tests/logs/RegressionTests_noaacloud.log @@ -0,0 +1,991 @@ +Wed Sep 13 18:53:13 UTC 2023 +Start Regression test + +Testing UFSWM Hash: 181bed7dc89e0cf7792a108741ce12c0192b2245 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 9b5825b7a6c0c07a3d936d0222917677209a07f0 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 59c554a12df3a04e0402ce5f17bb32cbbac193b2 WW3 (6.07.1-341-g59c554a1) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 634 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 615 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 654 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 705 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Thu Sep 14 12:45:30 UTC 2023 +Start Regression test + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_noaero_p8_intel +Checking test 001 cpld_control_noaero_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 235.067933 + 0: The maximum resident set size (KB) = 1819976 + +Test 001 cpld_control_noaero_p8_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_gfsv17_intel +Checking test 002 cpld_control_gfsv17_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 194.486526 + 0: The maximum resident set size (KB) = 1780520 + +Test 002 cpld_control_gfsv17_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_cfsr_intel +Checking test 003 datm_cdeps_control_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 140.720050 + 0: The maximum resident set size (KB) = 1254256 + +Test 003 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_gefs_intel +Checking test 004 datm_cdeps_control_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 145.725806 + 0: The maximum resident set size (KB) = 1137660 + +Test 004 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_iau_gefs_intel +Checking test 005 datm_cdeps_iau_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 138.806743 + 0: The maximum resident set size (KB) = 1139260 + +Test 005 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_stochy_gefs_intel +Checking test 006 datm_cdeps_stochy_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 136.898247 + 0: The maximum resident set size (KB) = 1135528 + +Test 006 datm_cdeps_stochy_gefs_intel PASS + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/atmwav_control_noaero_p8_intel +Checking test 001 atmwav_control_noaero_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 89.786822 + 0: The maximum resident set size (KB) = 1740024 + +Test 007 atmwav_control_noaero_p8_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/control_atmwav_intel +Checking test 002 control_atmwav_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 80.879828 + 0: The maximum resident set size (KB) = 760744 + +Test 008 control_atmwav_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_intel +Checking test 003 regional_atmaq_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 570.936950 + 0: The maximum resident set size (KB) = 5440640 + +Test 009 regional_atmaq_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_faster_intel +Checking test 004 regional_atmaq_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 461.022740 + 0: The maximum resident set size (KB) = 5443032 + +Test 010 regional_atmaq_faster_intel PASS + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27559/control_c384_intel +Checking test 001 control_c384_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 458.101623 + 0: The maximum resident set size (KB) = 1510240 + +Test 011 control_c384_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_latlon_intel +Checking test 001 control_latlon_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 116.591935 + 0: The maximum resident set size (KB) = 739644 + +Test 012 control_latlon_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_lndp_intel +Checking test 001 control_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 74.577322 + 0: The maximum resident set size (KB) = 744616 + +Test 013 control_lndp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29229/control_p8_lndp_intel +Checking test 001 control_p8_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 270.886762 + 0: The maximum resident set size (KB) = 1711908 + +Test 014 control_p8_lndp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29775/control_stochy_intel +Checking test 001 control_stochy_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 79.032013 + 0: The maximum resident set size (KB) = 745464 + +Test 015 control_stochy_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_18036/regional_control_intel +Checking test 001 regional_control_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 256.592547 + 0: The maximum resident set size (KB) = 1189296 + +Test 016 regional_control_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_noquilt_intel +Checking test 001 regional_noquilt_intel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 254.564088 + 0: The maximum resident set size (KB) = 1456300 + +Test 017 regional_noquilt_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_flake_intel +Checking test 002 control_flake_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 263.335844 + 0: The maximum resident set size (KB) = 791788 + +Test 018 control_flake_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr4_intel +Checking test 002 control_iovr4_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 118.289092 + 0: The maximum resident set size (KB) = 738932 + +Test 019 control_iovr4_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_wrtGauss_netcdf_parallel_intel +Checking test 002 control_wrtGauss_netcdf_parallel_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 118.455093 + 0: The maximum resident set size (KB) = 738948 + +Test 020 control_wrtGauss_netcdf_parallel_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_netcdf_parallel_intel +Checking test 002 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + + 0: The total amount of wall time = 315.339534 + 0: The maximum resident set size (KB) = 1189296 + +Test 021 regional_netcdf_parallel_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_c48_intel +Checking test 003 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 355.289641 +0: The maximum resident set size (KB) = 725172 + +Test 022 control_c48_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_CubedSphereGrid_intel +Checking test 003 control_CubedSphereGrid_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 156.608547 + 0: The maximum resident set size (KB) = 740744 + +Test 023 control_CubedSphereGrid_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr5_intel +Checking test 003 control_iovr5_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 180.745637 + 0: The maximum resident set size (KB) = 740216 + +Test 024 control_iovr5_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_2dwrtdecomp_intel +Checking test 003 regional_2dwrtdecomp_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 258.266724 + 0: The maximum resident set size (KB) = 1189112 + +Test 025 regional_2dwrtdecomp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_wofs_intel +Checking test 004 regional_wofs_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 317.986202 + 0: The maximum resident set size (KB) = 997696 + +Test 026 regional_wofs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rap_control_intel +Checking test 005 rap_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 376.232736 + 0: The maximum resident set size (KB) = 1313760 + +Test 027 rap_control_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_spp_sppt_shum_skeb_intel +Checking test 006 regional_spp_sppt_shum_skeb_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 259.976109 + 0: The maximum resident set size (KB) = 1358860 + +Test 028 regional_spp_sppt_shum_skeb_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1beta_intel +Checking test 007 rrfs_v1beta_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 367.928558 + 0: The maximum resident set size (KB) = 1275508 + +Test 029 rrfs_v1beta_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_intel +Checking test 008 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 451.901667 + 0: The maximum resident set size (KB) = 878300 + +Test 030 rrfs_v1nssl_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_nohailnoccn_intel +Checking test 009 rrfs_v1nssl_nohailnoccn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 434.283032 + 0: The maximum resident set size (KB) = 986664 + +Test 031 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_control_faster_intel +Checking test 010 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 236.396016 + 0: The maximum resident set size (KB) = 1188316 + +Test 032 regional_control_faster_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_intel +Checking test 011 hafs_regional_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 217.543716 + 0: The maximum resident set size (KB) = 1363136 + +Test 033 hafs_regional_atm_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 012 hafs_regional_atm_thompson_gfdlsf_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 332.106259 + 0: The maximum resident set size (KB) = 1696880 + +Test 034 hafs_regional_atm_thompson_gfdlsf_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_ocn_intel +Checking test 013 hafs_regional_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 342.702251 + 0: The maximum resident set size (KB) = 1492844 + +Test 035 hafs_regional_atm_ocn_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_wav_intel +Checking test 014 hafs_regional_atm_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 646.352130 + 0: The maximum resident set size (KB) = 1507564 + +Test 036 hafs_regional_atm_wav_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_control_cfsr_faster_intel +Checking test 015 datm_cdeps_control_cfsr_faster_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 140.076360 + 0: The maximum resident set size (KB) = 1268896 + +Test 037 datm_cdeps_control_cfsr_faster_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_lnd_gswp3_intel +Checking test 016 datm_cdeps_lnd_gswp3_intel results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 12.440630 + 0: The maximum resident set size (KB) = 401492 + +Test 038 datm_cdeps_lnd_gswp3_intel PASS + +REGRESSION TEST WAS SUCCESSFUL +Wed Sep 13 20:40:38 UTC 2023 +Elapsed time: 01h:47m:26s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index f65f4ea6cc..805b3c8957 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,59 +1,73 @@ -Fri Jul 14 15:07:23 CDT 2023 -Start Regression test - -Testing UFSWM Hash: 2def3318b9563512b40a61826e6c0df8be6aef60 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 695 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 237 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 370 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1037 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 713 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 657 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 740 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 933 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 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 257 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 697 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 259 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 715 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 721 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 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 737 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 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_intel elapsed time 1003 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 1050 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1059 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 311 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 1094 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 268 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 1070 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1440 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_mixedmode_intel +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) +<<<<<<< HEAD + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 02d4dc455bb517b4c641c919dc6b9dc829e1e0d4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9803-g02d4dc455) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 206 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 635 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 260 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 703 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,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 680 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 669 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 656 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 650 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 134 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 213 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 720 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 240 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 721 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 716 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 203 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 838 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 639 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 613 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 705 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 750 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 825 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 289 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1076 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 289 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 1076 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 859 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 279 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 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 262 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1007 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 209 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 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -118,14 +132,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.712244 - 0: The maximum resident set size (KB) = 3146616 + 0: The total amount of wall time = 404.233073 + 0: The maximum resident set size (KB) = 3165296 -Test 001 cpld_control_p8_mixedmode_intel PASS +Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -189,15 +203,221 @@ 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 = 328.149180 - 0: The maximum resident set size (KB) = 1694692 + 0: The total amount of wall time = 957.309365 + 0: The maximum resident set size (KB) = 1736740 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/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 = 654.516010 + 0: The maximum resident set size (KB) = 1119256 + +Test 003 cpld_control_gfsv17_iau_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_gfsv17_intel +Checking test 004 cpld_restart_gfsv17_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 472.261869 + 0: The maximum resident set size (KB) = 1096324 + +Test 004 cpld_restart_gfsv17_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_mpi_gfsv17_intel +Checking test 005 cpld_mpi_gfsv17_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1083.598206 + 0: The maximum resident set size (KB) = 1644936 + +Test 005 cpld_mpi_gfsv17_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_debug_gfsv17_intel +Checking test 006 cpld_debug_gfsv17_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1173.186375 + 0: The maximum resident set size (KB) = 1683548 + +Test 006 cpld_debug_gfsv17_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_p8_intel +Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -261,15 +481,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 = 354.738146 - 0: The maximum resident set size (KB) = 3176340 + 0: The total amount of wall time = 321.805551 + 0: The maximum resident set size (KB) = 3200708 -Test 003 cpld_control_p8_intel PASS +Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_p8_intel +Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -321,15 +541,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 = 204.654435 - 0: The maximum resident set size (KB) = 3046372 + 0: The total amount of wall time = 187.881495 + 0: The maximum resident set size (KB) = 3256140 -Test 004 cpld_restart_p8_intel PASS +Test 008 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_qr_p8_intel +Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -393,15 +613,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 = 351.553424 - 0: The maximum resident set size (KB) = 3188864 + 0: The total amount of wall time = 328.866884 + 0: The maximum resident set size (KB) = 3200724 -Test 005 cpld_control_qr_p8_intel PASS +Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_qr_p8_intel +Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -453,15 +673,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 = 206.999522 - 0: The maximum resident set size (KB) = 3055804 + 0: The total amount of wall time = 191.558617 + 0: The maximum resident set size (KB) = 3073680 -Test 006 cpld_restart_qr_p8_intel PASS +Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_2threads_p8_intel +Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -513,15 +733,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 = 403.198656 - 0: The maximum resident set size (KB) = 3516068 + 0: The total amount of wall time = 349.883748 + 0: The maximum resident set size (KB) = 3541096 -Test 007 cpld_2threads_p8_intel PASS +Test 011 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_decomp_p8_intel +Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -573,15 +793,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 = 355.201504 - 0: The maximum resident set size (KB) = 3170508 + 0: The total amount of wall time = 325.989204 + 0: The maximum resident set size (KB) = 3189356 -Test 008 cpld_decomp_p8_intel PASS +Test 012 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_mpi_p8_intel +Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -633,15 +853,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 = 282.125806 - 0: The maximum resident set size (KB) = 3030580 + 0: The total amount of wall time = 282.287345 + 0: The maximum resident set size (KB) = 3054324 -Test 009 cpld_mpi_p8_intel PASS +Test 013 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_ciceC_p8_intel +Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -705,15 +925,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 = 358.183270 - 0: The maximum resident set size (KB) = 3176168 + 0: The total amount of wall time = 326.049947 + 0: The maximum resident set size (KB) = 3209480 -Test 010 cpld_control_ciceC_p8_intel PASS +Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_c192_p8_intel -Checking test 011 cpld_control_c192_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_c192_p8_intel +Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -765,15 +985,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 = 645.462926 - 0: The maximum resident set size (KB) = 3259380 + 0: The total amount of wall time = 591.886209 + 0: The maximum resident set size (KB) = 3331316 -Test 011 cpld_control_c192_p8_intel PASS +Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_c192_p8_intel -Checking test 012 cpld_restart_c192_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_c192_p8_intel +Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -825,15 +1045,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 = 432.726936 - 0: The maximum resident set size (KB) = 3151824 + 0: The total amount of wall time = 369.496722 + 0: The maximum resident set size (KB) = 3627704 -Test 012 cpld_restart_c192_p8_intel PASS +Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_bmark_p8_intel -Checking test 013 cpld_bmark_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_bmark_p8_intel +Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -880,15 +1100,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 = 875.321319 - 0: The maximum resident set size (KB) = 4081176 + 0: The total amount of wall time = 748.623657 + 0: The maximum resident set size (KB) = 4111756 -Test 013 cpld_bmark_p8_intel PASS +Test 017 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_bmark_p8_intel -Checking test 014 cpld_restart_bmark_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_bmark_p8_intel +Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -935,15 +1155,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 = 540.396288 - 0: The maximum resident set size (KB) = 3971064 + 0: The total amount of wall time = 486.522735 + 0: The maximum resident set size (KB) = 4362996 -Test 014 cpld_restart_bmark_p8_intel PASS +Test 018 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_noaero_p8_intel -Checking test 015 cpld_control_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_noaero_p8_intel +Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1006,15 +1226,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 = 258.644310 - 0: The maximum resident set size (KB) = 1731160 + 0: The total amount of wall time = 267.400681 + 0: The maximum resident set size (KB) = 1735640 -Test 015 cpld_control_noaero_p8_intel PASS +Test 019 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_nowave_noaero_p8_intel -Checking test 016 cpld_control_nowave_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_nowave_noaero_p8_intel +Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1075,75 +1295,19 @@ 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 = 261.538353 - 0: The maximum resident set size (KB) = 1756500 - -Test 016 cpld_control_nowave_noaero_p8_intel PASS + 0: The total amount of wall time = 248.471747 + 0: The maximum resident set size (KB) = 1775800 +Test 020 cpld_control_nowave_noaero_p8_intel PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_p8_intel -Checking test 017 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 824.333613 - 0: The maximum resident set size (KB) = 3241784 +Test 021 cpld_debug_p8_intel FAIL -Test 017 cpld_debug_p8_intel PASS +Test 021 cpld_debug_p8_intel FAIL -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_noaero_p8_intel -Checking test 018 cpld_debug_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_debug_noaero_p8_intel +Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1194,15 +1358,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 = 669.532872 - 0: The maximum resident set size (KB) = 1738472 + 0: The total amount of wall time = 402.084189 + 0: The maximum resident set size (KB) = 1752588 -Test 018 cpld_debug_noaero_p8_intel PASS +Test 022 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_noaero_p8_agrid_intel -Checking test 019 cpld_control_noaero_p8_agrid_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_noaero_p8_agrid_intel +Checking test 023 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1263,15 +1427,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 = 268.120737 - 0: The maximum resident set size (KB) = 1769348 + 0: The total amount of wall time = 256.897796 + 0: The maximum resident set size (KB) = 1781356 -Test 019 cpld_control_noaero_p8_agrid_intel PASS +Test 023 cpld_control_noaero_p8_agrid_intel PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_c48_intel -Checking test 020 cpld_control_c48_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_c48_intel +Checking test 024 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1320,15 +1484,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 = 503.980052 - 0: The maximum resident set size (KB) = 2801536 + 0: The total amount of wall time = 474.410956 + 0: The maximum resident set size (KB) = 2824668 -Test 020 cpld_control_c48_intel PASS +Test 024 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_p8_faster_intel -Checking test 021 cpld_control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_p8_faster_intel +Checking test 025 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1392,15 +1556,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 = 328.530394 - 0: The maximum resident set size (KB) = 3136380 + 0: The total amount of wall time = 304.839234 + 0: The maximum resident set size (KB) = 3204564 -Test 021 cpld_control_p8_faster_intel PASS +Test 025 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_control_pdlib_p8_intel -Checking test 022 cpld_control_pdlib_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_control_pdlib_p8_intel +Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1463,15 +1627,15 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1203.976028 - 0: The maximum resident set size (KB) = 1745424 + 0: The total amount of wall time = 968.503206 + 0: The maximum resident set size (KB) = 1771548 -Test 022 cpld_control_pdlib_p8_intel PASS +Test 026 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_restart_pdlib_p8_intel -Checking test 023 cpld_restart_pdlib_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_restart_pdlib_p8_intel +Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1522,15 +1686,15 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 600.842073 - 0: The maximum resident set size (KB) = 1032428 + 0: The total amount of wall time = 453.811200 + 0: The maximum resident set size (KB) = 1143552 -Test 023 cpld_restart_pdlib_p8_intel PASS +Test 027 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_mpi_pdlib_p8_intel -Checking test 024 cpld_mpi_pdlib_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_mpi_pdlib_p8_intel +Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1593,15 +1757,15 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1056.231329 - 0: The maximum resident set size (KB) = 1659440 + 0: The total amount of wall time = 1097.218631 + 0: The maximum resident set size (KB) = 1685968 -Test 024 cpld_mpi_pdlib_p8_intel PASS +Test 028 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/cpld_debug_pdlib_p8_intel -Checking test 025 cpld_debug_pdlib_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/cpld_debug_pdlib_p8_intel +Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1652,15 +1816,15 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1592.073413 - 0: The maximum resident set size (KB) = 1712104 + 0: The total amount of wall time = 1448.208248 + 0: The maximum resident set size (KB) = 1705856 -Test 025 cpld_debug_pdlib_p8_intel PASS +Test 029 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_flake_intel -Checking test 026 control_flake_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_flake_intel +Checking test 030 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1670,15 +1834,15 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.884277 - 0: The maximum resident set size (KB) = 681292 + 0: The total amount of wall time = 199.138153 + 0: The maximum resident set size (KB) = 687544 -Test 026 control_flake_intel PASS +Test 030 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_intel -Checking test 027 control_CubedSphereGrid_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_CubedSphereGrid_intel +Checking test 031 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1704,29 +1868,37 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 144.194794 - 0: The maximum resident set size (KB) = 633448 + 0: The total amount of wall time = 131.210586 + 0: The maximum resident set size (KB) = 639192 -Test 027 control_CubedSphereGrid_intel PASS +Test 031 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_parallel_intel -Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_CubedSphereGrid_parallel_intel +Checking test 032 control_CubedSphereGrid_parallel_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.135845 - 0: The maximum resident set size (KB) = 632188 + 0: The total amount of wall time = 138.286833 + 0: The maximum resident set size (KB) = 649484 -Test 028 control_CubedSphereGrid_parallel_intel PASS +Test 032 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_latlon_intel -Checking test 029 control_latlon_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_latlon_intel +Checking test 033 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1736,33 +1908,33 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.951007 - 0: The maximum resident set size (KB) = 633168 + 0: The total amount of wall time = 134.285698 + 0: The maximum resident set size (KB) = 637724 -Test 029 control_latlon_intel PASS +Test 033 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wrtGauss_netcdf_parallel_intel -Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_wrtGauss_netcdf_parallel_intel +Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.774873 - 0: The maximum resident set size (KB) = 631336 + 0: The total amount of wall time = 136.794163 + 0: The maximum resident set size (KB) = 637376 -Test 030 control_wrtGauss_netcdf_parallel_intel PASS +Test 034 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c48_intel -Checking test 031 control_c48_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_c48_intel +Checking test 035 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1800,15 +1972,15 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.737186 -0: The maximum resident set size (KB) = 809724 +0: The total amount of wall time = 345.874754 +0: The maximum resident set size (KB) = 819776 -Test 031 control_c48_intel PASS +Test 035 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c192_intel -Checking test 032 control_c192_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_c192_intel +Checking test 036 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1818,15 +1990,15 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.503905 - 0: The maximum resident set size (KB) = 768816 + 0: The total amount of wall time = 524.232047 + 0: The maximum resident set size (KB) = 780372 -Test 032 control_c192_intel PASS +Test 036 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c384_intel -Checking test 033 control_c384_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_c384_intel +Checking test 037 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1836,15 +2008,15 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 580.053357 - 0: The maximum resident set size (KB) = 1232120 + 0: The total amount of wall time = 574.919889 + 0: The maximum resident set size (KB) = 1347140 -Test 033 control_c384_intel PASS +Test 037 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_c384gdas_intel -Checking test 034 control_c384gdas_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_c384gdas_intel +Checking test 038 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1886,15 +2058,15 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.969807 - 0: The maximum resident set size (KB) = 1342080 + 0: The total amount of wall time = 513.859647 + 0: The maximum resident set size (KB) = 1449908 -Test 034 control_c384gdas_intel PASS +Test 038 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_intel -Checking test 035 control_stochy_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_stochy_intel +Checking test 039 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1904,29 +2076,29 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.044061 - 0: The maximum resident set size (KB) = 635836 + 0: The total amount of wall time = 88.155059 + 0: The maximum resident set size (KB) = 638460 -Test 035 control_stochy_intel PASS +Test 039 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_restart_intel -Checking test 036 control_stochy_restart_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_stochy_restart_intel +Checking test 040 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.145383 - 0: The maximum resident set size (KB) = 486892 + 0: The total amount of wall time = 49.982828 + 0: The maximum resident set size (KB) = 546268 -Test 036 control_stochy_restart_intel PASS +Test 040 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_lndp_intel -Checking test 037 control_lndp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_lndp_intel +Checking test 041 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1936,15 +2108,15 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.970678 - 0: The maximum resident set size (KB) = 634112 + 0: The total amount of wall time = 81.865405 + 0: The maximum resident set size (KB) = 645852 -Test 037 control_lndp_intel PASS +Test 041 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_iovr4_intel -Checking test 038 control_iovr4_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_iovr4_intel +Checking test 042 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1958,15 +2130,15 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.844208 - 0: The maximum resident set size (KB) = 627052 + 0: The total amount of wall time = 136.110884 + 0: The maximum resident set size (KB) = 636176 -Test 038 control_iovr4_intel PASS +Test 042 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_iovr5_intel -Checking test 039 control_iovr5_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_iovr5_intel +Checking test 043 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1980,15 +2152,69 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.535880 - 0: The maximum resident set size (KB) = 627012 + 0: The total amount of wall time = 136.900922 + 0: The maximum resident set size (KB) = 638936 -Test 039 control_iovr5_intel PASS +Test 043 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_intel -Checking test 040 control_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_intel +Checking test 044 control_p8_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 170.495897 + 0: The maximum resident set size (KB) = 1610972 + +Test 044 control_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_ugwpv1_intel +Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2034,15 +2260,15 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.120127 - 0: The maximum resident set size (KB) = 1602524 + 0: The total amount of wall time = 159.860019 + 0: The maximum resident set size (KB) = 1619284 -Test 040 control_p8_intel PASS +Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_restart_p8_intel -Checking test 041 control_restart_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_restart_p8_intel +Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2080,15 +2306,15 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.663424 - 0: The maximum resident set size (KB) = 881976 + 0: The total amount of wall time = 89.057516 + 0: The maximum resident set size (KB) = 877652 -Test 041 control_restart_p8_intel PASS +Test 046 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_qr_p8_intel -Checking test 042 control_qr_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_qr_p8_intel +Checking test 047 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,15 +2360,15 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.936163 - 0: The maximum resident set size (KB) = 1609044 + 0: The total amount of wall time = 165.166081 + 0: The maximum resident set size (KB) = 1631816 -Test 042 control_qr_p8_intel PASS +Test 047 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_restart_qr_p8_intel -Checking test 043 control_restart_qr_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_restart_qr_p8_intel +Checking test 048 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2180,15 +2406,15 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.653738 - 0: The maximum resident set size (KB) = 866520 + 0: The total amount of wall time = 86.304116 + 0: The maximum resident set size (KB) = 879104 -Test 043 control_restart_qr_p8_intel PASS +Test 048 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_decomp_p8_intel -Checking test 044 control_decomp_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_decomp_p8_intel +Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2230,15 +2456,15 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.449100 - 0: The maximum resident set size (KB) = 1599940 + 0: The total amount of wall time = 169.526322 + 0: The maximum resident set size (KB) = 1600544 -Test 044 control_decomp_p8_intel PASS +Test 049 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_2threads_p8_intel -Checking test 045 control_2threads_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_2threads_p8_intel +Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2280,15 +2506,15 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.082132 - 0: The maximum resident set size (KB) = 1689756 + 0: The total amount of wall time = 169.624813 + 0: The maximum resident set size (KB) = 1692400 -Test 045 control_2threads_p8_intel PASS +Test 050 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_lndp_intel -Checking test 046 control_p8_lndp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_lndp_intel +Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2532,15 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.886927 - 0: The maximum resident set size (KB) = 1613804 + 0: The total amount of wall time = 302.075071 + 0: The maximum resident set size (KB) = 1602384 -Test 046 control_p8_lndp_intel PASS +Test 051 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_rrtmgp_intel -Checking test 047 control_p8_rrtmgp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_rrtmgp_intel +Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2360,15 +2586,15 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.192458 - 0: The maximum resident set size (KB) = 1670484 + 0: The total amount of wall time = 230.260823 + 0: The maximum resident set size (KB) = 1680536 -Test 047 control_p8_rrtmgp_intel PASS +Test 052 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_mynn_intel -Checking test 048 control_p8_mynn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_mynn_intel +Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2414,15 +2640,15 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.945561 - 0: The maximum resident set size (KB) = 1616456 + 0: The total amount of wall time = 163.779733 + 0: The maximum resident set size (KB) = 1624388 -Test 048 control_p8_mynn_intel PASS +Test 053 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/merra2_thompson_intel -Checking test 049 merra2_thompson_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/merra2_thompson_intel +Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2468,15 +2694,15 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.206247 - 0: The maximum resident set size (KB) = 1611560 + 0: The total amount of wall time = 197.728126 + 0: The maximum resident set size (KB) = 1640660 -Test 049 merra2_thompson_intel PASS +Test 054 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_intel -Checking test 050 regional_control_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_control_intel +Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2486,61 +2712,61 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.041994 - 0: The maximum resident set size (KB) = 869800 + 0: The total amount of wall time = 296.760221 + 0: The maximum resident set size (KB) = 1101076 -Test 050 regional_control_intel PASS +Test 055 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_restart_intel -Checking test 051 regional_restart_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_restart_intel +Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.566406 - 0: The maximum resident set size (KB) = 862832 + 0: The total amount of wall time = 149.910336 + 0: The maximum resident set size (KB) = 1089976 -Test 051 regional_restart_intel PASS +Test 056 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_qr_intel -Checking test 052 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_control_qr_intel +Checking test 057 regional_control_qr_intel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.893052 - 0: The maximum resident set size (KB) = 869360 + 0: The total amount of wall time = 294.068348 + 0: The maximum resident set size (KB) = 1096404 -Test 052 regional_control_qr_intel PASS +Test 057 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_restart_qr_intel -Checking test 053 regional_restart_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_restart_qr_intel +Checking test 058 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.200152 - 0: The maximum resident set size (KB) = 868124 + 0: The total amount of wall time = 148.283075 + 0: The maximum resident set size (KB) = 1085776 -Test 053 regional_restart_qr_intel PASS +Test 058 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_decomp_intel +Checking test 059 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2550,15 +2776,15 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.203068 - 0: The maximum resident set size (KB) = 859636 + 0: The total amount of wall time = 307.746277 + 0: The maximum resident set size (KB) = 1097196 -Test 054 regional_decomp_intel PASS +Test 059 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_2threads_intel +Checking test 060 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2568,44 +2794,44 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 202.436828 - 0: The maximum resident set size (KB) = 842296 + 0: The total amount of wall time = 203.258865 + 0: The maximum resident set size (KB) = 1068552 -Test 055 regional_2threads_intel PASS +Test 060 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_noquilt_intel -Checking test 056 regional_noquilt_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_noquilt_intel +Checking test 061 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 = 288.111236 - 0: The maximum resident set size (KB) = 861684 + 0: The total amount of wall time = 288.304980 + 0: The maximum resident set size (KB) = 1364660 -Test 056 regional_noquilt_intel PASS +Test 061 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_netcdf_parallel_intel -Checking test 057 regional_netcdf_parallel_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_netcdf_parallel_intel +Checking test 062 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 283.862408 - 0: The maximum resident set size (KB) = 864652 + 0: The total amount of wall time = 287.082297 + 0: The maximum resident set size (KB) = 1101748 -Test 057 regional_netcdf_parallel_intel PASS +Test 062 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_2dwrtdecomp_intel +Checking test 063 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2615,15 +2841,15 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 288.711352 - 0: The maximum resident set size (KB) = 868624 + 0: The total amount of wall time = 289.229942 + 0: The maximum resident set size (KB) = 1099668 -Test 058 regional_2dwrtdecomp_intel PASS +Test 063 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_wofs_intel +Checking test 064 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2633,15 +2859,15 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 366.549043 - 0: The maximum resident set size (KB) = 628588 + 0: The total amount of wall time = 381.451574 + 0: The maximum resident set size (KB) = 2192552 -Test 059 regional_wofs_intel PASS +Test 064 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_intel -Checking test 060 rap_control_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_intel +Checking test 065 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2687,15 +2913,15 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.052866 - 0: The maximum resident set size (KB) = 1058416 + 0: The total amount of wall time = 452.272302 + 0: The maximum resident set size (KB) = 1244704 -Test 060 rap_control_intel PASS +Test 065 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_spp_sppt_shum_skeb_intel +Checking test 066 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2705,15 +2931,15 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 347.147109 - 0: The maximum resident set size (KB) = 1181864 + 0: The total amount of wall time = 270.847412 + 0: The maximum resident set size (KB) = 1205032 -Test 061 regional_spp_sppt_shum_skeb_intel PASS +Test 066 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_decomp_intel +Checking test 067 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2759,15 +2985,15 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.569915 - 0: The maximum resident set size (KB) = 1007504 + 0: The total amount of wall time = 471.248860 + 0: The maximum resident set size (KB) = 1170424 -Test 062 rap_decomp_intel PASS +Test 067 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_2threads_intel +Checking test 068 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2813,15 +3039,15 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.264490 - 0: The maximum resident set size (KB) = 1143864 + 0: The total amount of wall time = 457.135893 + 0: The maximum resident set size (KB) = 1318668 -Test 063 rap_2threads_intel PASS +Test 068 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_restart_intel -Checking test 064 rap_restart_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_restart_intel +Checking test 069 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2859,15 +3085,15 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.479317 - 0: The maximum resident set size (KB) = 964616 + 0: The total amount of wall time = 229.596878 + 0: The maximum resident set size (KB) = 1143704 -Test 064 rap_restart_intel PASS +Test 069 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_sfcdiff_intel +Checking test 070 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2913,15 +3139,15 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.025823 - 0: The maximum resident set size (KB) = 1059496 + 0: The total amount of wall time = 446.627435 + 0: The maximum resident set size (KB) = 1248312 -Test 065 rap_sfcdiff_intel PASS +Test 070 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_sfcdiff_decomp_intel +Checking test 071 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2967,15 +3193,15 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.993687 - 0: The maximum resident set size (KB) = 998056 + 0: The total amount of wall time = 470.194796 + 0: The maximum resident set size (KB) = 1178448 -Test 066 rap_sfcdiff_decomp_intel PASS +Test 071 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_sfcdiff_restart_intel +Checking test 072 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3013,15 +3239,15 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.015635 - 0: The maximum resident set size (KB) = 986208 + 0: The total amount of wall time = 336.510225 + 0: The maximum resident set size (KB) = 1177136 -Test 067 rap_sfcdiff_restart_intel PASS +Test 072 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_intel +Checking test 073 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3067,15 +3293,15 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.695698 - 0: The maximum resident set size (KB) = 1050992 + 0: The total amount of wall time = 226.802516 + 0: The maximum resident set size (KB) = 1154264 -Test 068 hrrr_control_intel PASS +Test 073 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_qr_intel -Checking test 069 hrrr_control_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_qr_intel +Checking test 074 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3121,15 +3347,15 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.120148 - 0: The maximum resident set size (KB) = 1063468 + 0: The total amount of wall time = 228.011562 + 0: The maximum resident set size (KB) = 1034952 -Test 069 hrrr_control_qr_intel PASS +Test 074 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_decomp_intel +Checking test 075 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3175,15 +3401,15 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.385229 - 0: The maximum resident set size (KB) = 1002872 + 0: The total amount of wall time = 236.915334 + 0: The maximum resident set size (KB) = 1044372 -Test 070 hrrr_control_decomp_intel PASS +Test 075 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_2threads_intel -Checking test 071 hrrr_control_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_2threads_intel +Checking test 076 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3229,49 +3455,49 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.585345 - 0: The maximum resident set size (KB) = 1077576 + 0: The total amount of wall time = 188.895374 + 0: The maximum resident set size (KB) = 1126976 -Test 071 hrrr_control_2threads_intel PASS +Test 076 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_intel -Checking test 072 hrrr_control_restart_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_restart_intel +Checking test 077 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.805527 - 0: The maximum resident set size (KB) = 984460 + 0: The total amount of wall time = 117.506949 + 0: The maximum resident set size (KB) = 1051728 -Test 072 hrrr_control_restart_intel PASS +Test 077 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_qr_intel -Checking test 073 hrrr_control_restart_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_restart_qr_intel +Checking test 078 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.831302 - 0: The maximum resident set size (KB) = 996612 + 0: The total amount of wall time = 122.382492 + 0: The maximum resident set size (KB) = 915156 -Test 073 hrrr_control_restart_qr_intel PASS +Test 078 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1beta_intel -Checking test 074 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rrfs_v1beta_intel +Checking test 079 rrfs_v1beta_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3311,15 +3537,15 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.602089 - 0: The maximum resident set size (KB) = 1057440 + 0: The total amount of wall time = 436.892021 + 0: The maximum resident set size (KB) = 1204576 -Test 074 rrfs_v1beta_intel PASS +Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1nssl_intel -Checking test 075 rrfs_v1nssl_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rrfs_v1nssl_intel +Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3333,15 +3559,15 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.027804 - 0: The maximum resident set size (KB) = 696424 + 0: The total amount of wall time = 535.911465 + 0: The maximum resident set size (KB) = 2077592 -Test 075 rrfs_v1nssl_intel PASS +Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1nssl_nohailnoccn_intel -Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rrfs_v1nssl_nohailnoccn_intel +Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3355,140 +3581,15 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.052319 - 0: The maximum resident set size (KB) = 758808 + 0: The total amount of wall time = 520.622380 + 0: The maximum resident set size (KB) = 2193104 -Test 076 rrfs_v1nssl_nohailnoccn_intel PASS +Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 148.723996 - 0: The maximum resident set size (KB) = 1038160 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 144.724705 - 0: The maximum resident set size (KB) = 974764 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 97.533978 - 0: The maximum resident set size (KB) = 947612 - -Test 079 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_conus13km_hrrr_warm_intel -Checking test 080 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 131.242005 - 0: The maximum resident set size (KB) = 991376 - -Test 080 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 081 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 148.332834 - 0: The maximum resident set size (KB) = 1036044 - -Test 081 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 82.589406 - 0: The maximum resident set size (KB) = 1024636 - -Test 082 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 85.785630 - 0: The maximum resident set size (KB) = 1011004 - -Test 083 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmg_intel -Checking test 084 control_csawmg_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_csawmg_intel +Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3498,15 +3599,15 @@ Checking test 084 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.222740 - 0: The maximum resident set size (KB) = 726916 + 0: The total amount of wall time = 336.923019 + 0: The maximum resident set size (KB) = 820412 -Test 084 control_csawmg_intel PASS +Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmgt_intel -Checking test 085 control_csawmgt_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_csawmgt_intel +Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3516,15 +3617,15 @@ Checking test 085 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 346.086848 - 0: The maximum resident set size (KB) = 726108 + 0: The total amount of wall time = 333.872688 + 0: The maximum resident set size (KB) = 816340 -Test 085 control_csawmgt_intel PASS +Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_ras_intel -Checking test 086 control_ras_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_ras_intel +Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3534,27 +3635,27 @@ Checking test 086 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.939023 - 0: The maximum resident set size (KB) = 727132 + 0: The total amount of wall time = 187.813607 + 0: The maximum resident set size (KB) = 810800 -Test 086 control_ras_intel PASS +Test 084 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wam_intel -Checking test 087 control_wam_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_wam_intel +Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.590392 - 0: The maximum resident set size (KB) = 645008 + 0: The total amount of wall time = 112.889800 + 0: The maximum resident set size (KB) = 712192 -Test 087 control_wam_intel PASS +Test 085 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_faster_intel -Checking test 088 control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_faster_intel +Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3591,84 +3692,42 @@ Checking test 088 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 155.105991 - 0: The maximum resident set size (KB) = 1601148 - -Test 088 control_p8_faster_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_control_faster_intel -Checking test 089 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 263.502812 - 0: The maximum resident set size (KB) = 867176 - -Test 089 regional_control_faster_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 849.326095 - 0: The maximum resident set size (KB) = 1061148 - -Test 090 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.293855 - 0: The maximum resident set size (KB) = 978184 + 0: The total amount of wall time = 146.625603 + 0: The maximum resident set size (KB) = 1611876 -Test 091 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS +Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 092 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_control_faster_intel +Checking test 087 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 776.203255 - 0: The maximum resident set size (KB) = 1018196 + 0: The total amount of wall time = 262.778182 + 0: The maximum resident set size (KB) = 1092588 -Test 092 rrfs_conus13km_hrrr_warm_debug_intel PASS +Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_CubedSphereGrid_debug_intel -Checking test 093 control_CubedSphereGrid_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3694,349 +3753,377 @@ Checking test 093 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.616052 - 0: The maximum resident set size (KB) = 790588 + 0: The total amount of wall time = 152.932032 + 0: The maximum resident set size (KB) = 791472 -Test 093 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 094 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.012119 - 0: The maximum resident set size (KB) = 790792 + 0: The total amount of wall time = 152.093066 + 0: The maximum resident set size (KB) = 801580 -Test 094 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_stochy_debug_intel -Checking test 095 control_stochy_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_stochy_debug_intel +Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.611632 - 0: The maximum resident set size (KB) = 795656 + 0: The total amount of wall time = 175.247534 + 0: The maximum resident set size (KB) = 753880 -Test 095 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_lndp_debug_intel -Checking test 096 control_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_lndp_debug_intel +Checking test 091 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 = 149.336561 - 0: The maximum resident set size (KB) = 795616 + 0: The total amount of wall time = 160.016172 + 0: The maximum resident set size (KB) = 805196 -Test 096 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmg_debug_intel -Checking test 097 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_csawmg_debug_intel +Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.391333 - 0: The maximum resident set size (KB) = 844400 + 0: The total amount of wall time = 239.478723 + 0: The maximum resident set size (KB) = 850360 -Test 097 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_csawmgt_debug_intel -Checking test 098 control_csawmgt_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_csawmgt_debug_intel +Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.213852 - 0: The maximum resident set size (KB) = 845680 + 0: The total amount of wall time = 232.901001 + 0: The maximum resident set size (KB) = 855700 -Test 098 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_ras_debug_intel -Checking test 099 control_ras_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_ras_debug_intel +Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.257453 - 0: The maximum resident set size (KB) = 805744 + 0: The total amount of wall time = 154.026975 + 0: The maximum resident set size (KB) = 809164 -Test 099 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_diag_debug_intel -Checking test 100 control_diag_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_diag_debug_intel +Checking test 095 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 = 153.711076 - 0: The maximum resident set size (KB) = 849048 + 0: The total amount of wall time = 161.201045 + 0: The maximum resident set size (KB) = 860856 + +Test 095 control_diag_debug_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_debug_p8_intel +Checking test 096 control_debug_p8_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 158.274819 + 0: The maximum resident set size (KB) = 1642852 + +Test 096 control_debug_p8_intel PASS -Test 100 control_diag_debug_intel PASS + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_debug_intel +Checking test 097 regional_debug_intel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 1000.022630 + 0: The maximum resident set size (KB) = 1108736 + +Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_debug_p8_intel -Checking test 101 control_debug_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_debug_intel +Checking test 098 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 = 173.845991 - 0: The maximum resident set size (KB) = 1589780 + 0: The total amount of wall time = 280.625762 + 0: The maximum resident set size (KB) = 1188724 -Test 101 control_debug_p8_intel PASS +Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_debug_intel -Checking test 102 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_debug_intel +Checking test 099 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 = 1014.021593 - 0: The maximum resident set size (KB) = 891740 + 0: The total amount of wall time = 272.196253 + 0: The maximum resident set size (KB) = 1188332 -Test 102 regional_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_debug_intel -Checking test 103 rap_control_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_gf_debug_intel +Checking test 100 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 = 272.501547 - 0: The maximum resident set size (KB) = 1172588 + 0: The total amount of wall time = 280.156197 + 0: The maximum resident set size (KB) = 1189892 -Test 103 rap_control_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_debug_intel -Checking test 104 hrrr_control_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_c3_debug_intel +Checking test 101 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 = 275.966299 - 0: The maximum resident set size (KB) = 1173664 + 0: The total amount of wall time = 280.365297 + 0: The maximum resident set size (KB) = 1194268 -Test 104 hrrr_control_debug_intel PASS +Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_unified_drag_suite_debug_intel -Checking test 105 rap_unified_drag_suite_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_unified_drag_suite_debug_intel +Checking test 102 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 = 276.487024 - 0: The maximum resident set size (KB) = 1175388 + 0: The total amount of wall time = 285.409215 + 0: The maximum resident set size (KB) = 1145360 -Test 105 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_diag_debug_intel -Checking test 106 rap_diag_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_diag_debug_intel +Checking test 103 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 = 292.076758 - 0: The maximum resident set size (KB) = 1260984 + 0: The total amount of wall time = 304.356228 + 0: The maximum resident set size (KB) = 1215092 -Test 106 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_cires_ugwp_debug_intel -Checking test 107 rap_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_cires_ugwp_debug_intel +Checking test 104 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 = 285.123688 - 0: The maximum resident set size (KB) = 1177860 + 0: The total amount of wall time = 290.364291 + 0: The maximum resident set size (KB) = 1186624 -Test 107 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_unified_ugwp_debug_intel -Checking test 108 rap_unified_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_unified_ugwp_debug_intel +Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.294899 - 0: The maximum resident set size (KB) = 1180896 + 0: The total amount of wall time = 283.814608 + 0: The maximum resident set size (KB) = 1186924 -Test 108 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_lndp_debug_intel -Checking test 109 rap_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_lndp_debug_intel +Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.512685 - 0: The maximum resident set size (KB) = 1177340 + 0: The total amount of wall time = 283.370709 + 0: The maximum resident set size (KB) = 1192080 -Test 109 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_progcld_thompson_debug_intel -Checking test 110 rap_progcld_thompson_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_progcld_thompson_debug_intel +Checking test 107 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 = 278.994686 - 0: The maximum resident set size (KB) = 1181616 + 0: The total amount of wall time = 283.326417 + 0: The maximum resident set size (KB) = 1189560 -Test 110 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_noah_debug_intel -Checking test 111 rap_noah_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_noah_debug_intel +Checking test 108 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 = 281.268767 - 0: The maximum resident set size (KB) = 1170444 + 0: The total amount of wall time = 275.315177 + 0: The maximum resident set size (KB) = 1190576 -Test 111 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_sfcdiff_debug_intel -Checking test 112 rap_sfcdiff_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_sfcdiff_debug_intel +Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.754318 - 0: The maximum resident set size (KB) = 1174060 + 0: The total amount of wall time = 281.830252 + 0: The maximum resident set size (KB) = 1188088 -Test 112 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 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 = 461.308018 - 0: The maximum resident set size (KB) = 1171244 + 0: The total amount of wall time = 462.313110 + 0: The maximum resident set size (KB) = 1192932 -Test 113 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_v1beta_debug_intel -Checking test 114 rrfs_v1beta_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rrfs_v1beta_debug_intel +Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.006026 - 0: The maximum resident set size (KB) = 1167772 + 0: The total amount of wall time = 277.957874 + 0: The maximum resident set size (KB) = 1190368 -Test 114 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_clm_lake_debug_intel -Checking test 115 rap_clm_lake_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_clm_lake_debug_intel +Checking test 112 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 = 357.441223 - 0: The maximum resident set size (KB) = 1177404 + 0: The total amount of wall time = 337.112959 + 0: The maximum resident set size (KB) = 1191752 -Test 115 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_flake_debug_intel -Checking test 116 rap_flake_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_flake_debug_intel +Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.180530 - 0: The maximum resident set size (KB) = 1171928 + 0: The total amount of wall time = 274.621566 + 0: The maximum resident set size (KB) = 1198196 -Test 116 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_wam_debug_intel -Checking test 117 control_wam_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_wam_debug_intel +Checking test 114 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.720581 - 0: The maximum resident set size (KB) = 523196 + 0: The total amount of wall time = 292.667571 + 0: The maximum resident set size (KB) = 564904 -Test 117 control_wam_debug_intel PASS +Test 114 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4046,15 +4133,15 @@ Checking test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 248.927557 - 0: The maximum resident set size (KB) = 1088904 + 0: The total amount of wall time = 249.391645 + 0: The maximum resident set size (KB) = 1094796 -Test 118 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_dyn32_phy32_intel -Checking test 119 rap_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_dyn32_phy32_intel +Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4100,15 +4187,15 @@ Checking test 119 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.352836 - 0: The maximum resident set size (KB) = 1010260 + 0: The total amount of wall time = 373.409410 + 0: The maximum resident set size (KB) = 1103372 -Test 119 rap_control_dyn32_phy32_intel PASS +Test 116 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_dyn32_phy32_intel -Checking test 120 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_dyn32_phy32_intel +Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4154,15 +4241,15 @@ Checking test 120 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.206437 - 0: The maximum resident set size (KB) = 959548 + 0: The total amount of wall time = 192.969203 + 0: The maximum resident set size (KB) = 1031048 -Test 120 hrrr_control_dyn32_phy32_intel PASS +Test 117 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_qr_dyn32_phy32_intel -Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_qr_dyn32_phy32_intel +Checking test 118 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4177,46 +4264,46 @@ Checking test 121 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 194.601480 - 0: The maximum resident set size (KB) = 966340 + 0: The total amount of wall time = 190.333608 + 0: The maximum resident set size (KB) = 976824 -Test 121 hrrr_control_qr_dyn32_phy32_intel PASS +Test 118 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_2threads_dyn32_phy32_intel -Checking test 122 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_2threads_dyn32_phy32_intel +Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4262,15 +4349,15 @@ Checking test 122 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 = 388.198556 - 0: The maximum resident set size (KB) = 1024344 + 0: The total amount of wall time = 382.235263 + 0: The maximum resident set size (KB) = 1124336 -Test 122 rap_2threads_dyn32_phy32_intel PASS +Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_2threads_dyn32_phy32_intel -Checking test 123 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_2threads_dyn32_phy32_intel +Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4316,15 +4403,15 @@ Checking test 123 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 = 174.749667 - 0: The maximum resident set size (KB) = 939596 + 0: The total amount of wall time = 164.112819 + 0: The maximum resident set size (KB) = 973608 -Test 123 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_decomp_dyn32_phy32_intel -Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_decomp_dyn32_phy32_intel +Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4370,15 +4457,15 @@ Checking test 124 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.959869 - 0: The maximum resident set size (KB) = 903580 + 0: The total amount of wall time = 201.463097 + 0: The maximum resident set size (KB) = 982664 -Test 124 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_restart_dyn32_phy32_intel -Checking test 125 rap_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_restart_dyn32_phy32_intel +Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4416,43 +4503,43 @@ Checking test 125 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.209607 - 0: The maximum resident set size (KB) = 947040 + 0: The total amount of wall time = 273.403370 + 0: The maximum resident set size (KB) = 1057164 -Test 125 rap_restart_dyn32_phy32_intel PASS +Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_dyn32_phy32_intel -Checking test 126 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_restart_dyn32_phy32_intel +Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.558397 - 0: The maximum resident set size (KB) = 861072 + 0: The total amount of wall time = 102.520975 + 0: The maximum resident set size (KB) = 890492 -Test 126 hrrr_control_restart_dyn32_phy32_intel PASS +Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 127 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 124 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.563721 - 0: The maximum resident set size (KB) = 872460 + 0: The total amount of wall time = 101.691544 + 0: The maximum resident set size (KB) = 894452 -Test 127 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 124 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 128 rrfs_smoke_conus13km_fast_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_control_intel +Checking test 125 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4467,21 +4554,127 @@ Checking test 128 rrfs_smoke_conus13km_fast_phy32_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 = 115.308172 - 0: The maximum resident set size (KB) = 899684 + 0: The total amount of wall time = 112.402069 + 0: The maximum resident set size (KB) = 1251812 -Test 128 rrfs_smoke_conus13km_fast_phy32_intel PASS +Test 125 conus13km_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_2threads_intel +Checking test 126 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 52.511867 + 0: The maximum resident set size (KB) = 1168672 + +Test 126 conus13km_2threads_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_restart_mismatch_intel +Checking test 127 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 65.008901 + 0: The maximum resident set size (KB) = 1138560 + +Test 127 conus13km_restart_mismatch_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_dyn64_phy32_intel +Checking test 128 rap_control_dyn64_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 242.533953 + 0: The maximum resident set size (KB) = 1098148 + +Test 128 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_debug_dyn32_phy32_intel +Checking test 129 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 = 270.491042 + 0: The maximum resident set size (KB) = 1070580 + +Test 129 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hrrr_control_debug_dyn32_phy32_intel +Checking test 130 hrrr_control_debug_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 272.717772 + 0: The maximum resident set size (KB) = 1069800 + +Test 130 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_debug_intel +Checking test 131 conus13km_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK Comparing RESTART/20210512.170000.fv_core.res.nc .........OK Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK @@ -4490,105 +4683,102 @@ Checking test 129 rrfs_smoke_conus13km_fast_phy32_qr_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 = 113.773084 - 0: The maximum resident set size (KB) = 928376 - -Test 129 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - + 0: The total amount of wall time = 848.878842 + 0: The maximum resident set size (KB) = 1291988 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 65.142616 - 0: The maximum resident set size (KB) = 899704 - -Test 130 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS +Test 131 conus13km_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_debug_qr_intel +Checking test 132 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 69.388530 - 0: The maximum resident set size (KB) = 916552 + 0: The total amount of wall time = 837.510399 + 0: The maximum resident set size (KB) = 936244 -Test 131 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS +Test 132 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_debug_dyn32_phy32_intel -Checking test 133 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_debug_2threads_intel +Checking test 133 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 = 271.901980 - 0: The maximum resident set size (KB) = 1063424 + 0: The total amount of wall time = 482.901694 + 0: The maximum resident set size (KB) = 1196900 -Test 133 rap_control_debug_dyn32_phy32_intel PASS +Test 133 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hrrr_control_debug_dyn32_phy32_intel -Checking test 134 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/conus13km_radar_tten_debug_intel +Checking test 134 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 = 269.159369 - 0: The maximum resident set size (KB) = 1050764 + 0: The total amount of wall time = 867.038274 + 0: The maximum resident set size (KB) = 1346396 -Test 134 hrrr_control_debug_dyn32_phy32_intel PASS +Test 134 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/rap_control_dyn64_phy32_debug_intel Checking test 135 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 = 278.569591 - 0: The maximum resident set size (KB) = 1102168 + 0: The total amount of wall time = 281.607290 + 0: The maximum resident set size (KB) = 1110788 Test 135 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_atm_intel Checking test 136 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 254.861600 - 0: The maximum resident set size (KB) = 1062208 + 0: The total amount of wall time = 243.457236 + 0: The maximum resident set size (KB) = 1254040 Test 136 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_atm_thompson_gfdlsf_intel Checking test 137 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 399.557415 - 0: The maximum resident set size (KB) = 1423528 + 0: The total amount of wall time = 328.351894 + 0: The maximum resident set size (KB) = 1542408 Test 137 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_atm_ocn_intel Checking test 138 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4597,14 +4787,14 @@ Checking test 138 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 = 385.174540 - 0: The maximum resident set size (KB) = 1225072 + 0: The total amount of wall time = 371.343823 + 0: The maximum resident set size (KB) = 1421892 Test 138 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_atm_wav_intel Checking test 139 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4613,14 +4803,14 @@ Checking test 139 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 731.466615 - 0: The maximum resident set size (KB) = 1253844 + 0: The total amount of wall time = 727.826729 + 0: The maximum resident set size (KB) = 1448224 Test 139 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_atm_ocn_wav_intel Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4631,14 +4821,14 @@ Checking test 140 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 838.512615 - 0: The maximum resident set size (KB) = 1278848 + 0: The total amount of wall time = 820.942811 + 0: The maximum resident set size (KB) = 1474440 Test 140 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_1nest_atm_intel Checking test 141 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4660,14 +4850,14 @@ Checking test 141 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 = 348.899131 - 0: The maximum resident set size (KB) = 506220 + 0: The total amount of wall time = 341.440783 + 0: The maximum resident set size (KB) = 658068 Test 141 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_1nest_atm_qr_intel Checking test 142 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4689,14 +4879,14 @@ Checking test 142 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 = 352.038456 - 0: The maximum resident set size (KB) = 477400 + 0: The total amount of wall time = 345.809257 + 0: The maximum resident set size (KB) = 503452 Test 142 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_telescopic_2nests_atm_intel Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4705,14 +4895,14 @@ Checking test 143 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 390.904575 - 0: The maximum resident set size (KB) = 514900 + 0: The total amount of wall time = 389.810302 + 0: The maximum resident set size (KB) = 668568 Test 143 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_global_1nest_atm_intel Checking test 144 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4759,14 +4949,14 @@ Checking test 144 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 167.689298 - 0: The maximum resident set size (KB) = 349148 + 0: The total amount of wall time = 164.895716 + 0: The maximum resident set size (KB) = 406080 Test 144 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_global_1nest_atm_qr_intel Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4813,14 +5003,14 @@ Checking test 145 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 173.305021 - 0: The maximum resident set size (KB) = 357204 + 0: The total amount of wall time = 174.275264 + 0: The maximum resident set size (KB) = 377612 Test 145 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_global_multiple_4nests_atm_intel Checking test 146 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4902,14 +5092,14 @@ Checking test 146 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 = 438.735529 - 0: The maximum resident set size (KB) = 420740 + 0: The total amount of wall time = 428.895406 + 0: The maximum resident set size (KB) = 478320 Test 146 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_global_multiple_4nests_atm_qr_intel Checking test 147 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4991,14 +5181,14 @@ Checking test 147 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 = 455.389825 - 0: The maximum resident set size (KB) = 449444 + 0: The total amount of wall time = 449.828322 + 0: The maximum resident set size (KB) = 480004 Test 147 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_specified_moving_1nest_atm_intel Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5007,14 +5197,14 @@ Checking test 148 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.099291 - 0: The maximum resident set size (KB) = 527092 + 0: The total amount of wall time = 220.430031 + 0: The maximum resident set size (KB) = 665696 Test 148 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_storm_following_1nest_atm_intel Checking test 149 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5036,14 +5226,14 @@ Checking test 149 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 = 212.833807 - 0: The maximum resident set size (KB) = 523672 + 0: The total amount of wall time = 205.624686 + 0: The maximum resident set size (KB) = 672036 Test 149 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 150 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5065,14 +5255,14 @@ Checking test 150 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 = 220.570245 - 0: The maximum resident set size (KB) = 502376 + 0: The total amount of wall time = 213.191582 + 0: The maximum resident set size (KB) = 534336 Test 150 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5081,42 +5271,42 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.742222 - 0: The maximum resident set size (KB) = 562836 + 0: The total amount of wall time = 289.374044 + 0: The maximum resident set size (KB) = 720712 Test 151 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_global_storm_following_1nest_atm_intel Checking test 152 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.965989 - 0: The maximum resident set size (KB) = 372440 + 0: The total amount of wall time = 63.424128 + 0: The maximum resident set size (KB) = 417688 Test 152 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 153 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 = 750.880672 - 0: The maximum resident set size (KB) = 587228 + 0: The total amount of wall time = 754.796671 + 0: The maximum resident set size (KB) = 734712 Test 153 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5127,14 +5317,14 @@ Checking test 154 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 = 547.785002 - 0: The maximum resident set size (KB) = 620888 + 0: The total amount of wall time = 529.762793 + 0: The maximum resident set size (KB) = 808300 Test 154 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_docn_intel Checking test 155 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5142,14 +5332,14 @@ Checking test 155 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.935360 - 0: The maximum resident set size (KB) = 1232744 + 0: The total amount of wall time = 342.602717 + 0: The maximum resident set size (KB) = 1422868 Test 155 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_docn_oisst_intel Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5157,131 +5347,131 @@ Checking test 156 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 345.351614 - 0: The maximum resident set size (KB) = 1216512 + 0: The total amount of wall time = 340.831134 + 0: The maximum resident set size (KB) = 1388612 Test 156 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/hafs_regional_datm_cdeps_intel Checking test 157 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 = 933.829839 - 0: The maximum resident set size (KB) = 1038220 + 0: The total amount of wall time = 938.335886 + 0: The maximum resident set size (KB) = 1155196 Test 157 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_control_cfsr_intel Checking test 158 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 = 144.653782 - 0: The maximum resident set size (KB) = 1065676 + 0: The total amount of wall time = 149.680417 + 0: The maximum resident set size (KB) = 1121308 Test 158 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_restart_cfsr_intel Checking test 159 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 = 90.071848 - 0: The maximum resident set size (KB) = 1015784 + 0: The total amount of wall time = 90.303499 + 0: The maximum resident set size (KB) = 1075956 Test 159 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_control_gefs_intel Checking test 160 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 = 140.010641 - 0: The maximum resident set size (KB) = 960284 + 0: The total amount of wall time = 144.597024 + 0: The maximum resident set size (KB) = 995840 Test 160 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_iau_gefs_intel Checking test 161 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.492664 - 0: The maximum resident set size (KB) = 972188 + 0: The total amount of wall time = 147.589130 + 0: The maximum resident set size (KB) = 1011860 Test 161 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_stochy_gefs_intel Checking test 162 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.519637 - 0: The maximum resident set size (KB) = 970796 + 0: The total amount of wall time = 146.744960 + 0: The maximum resident set size (KB) = 1013800 Test 162 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_ciceC_cfsr_intel Checking test 163 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 = 147.626359 - 0: The maximum resident set size (KB) = 1069748 + 0: The total amount of wall time = 150.025933 + 0: The maximum resident set size (KB) = 1116780 Test 163 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_bulk_cfsr_intel Checking test 164 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 = 148.712183 - 0: The maximum resident set size (KB) = 1066100 + 0: The total amount of wall time = 151.496817 + 0: The maximum resident set size (KB) = 1123248 Test 164 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_bulk_gefs_intel Checking test 165 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 = 141.086664 - 0: The maximum resident set size (KB) = 966944 + 0: The total amount of wall time = 143.840041 + 0: The maximum resident set size (KB) = 1005288 Test 165 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_mx025_cfsr_intel Checking test 166 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5290,14 +5480,14 @@ Checking test 166 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 = 440.531267 - 0: The maximum resident set size (KB) = 872164 + 0: The total amount of wall time = 441.463002 + 0: The maximum resident set size (KB) = 1033696 Test 166 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_mx025_gefs_intel Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5306,77 +5496,77 @@ Checking test 167 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.049822 - 0: The maximum resident set size (KB) = 930164 + 0: The total amount of wall time = 449.174843 + 0: The maximum resident set size (KB) = 1026248 Test 167 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_multiple_files_cfsr_intel Checking test 168 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 = 144.288663 - 0: The maximum resident set size (KB) = 1072452 + 0: The total amount of wall time = 151.147374 + 0: The maximum resident set size (KB) = 1104784 Test 168 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_3072x1536_cfsr_intel Checking test 169 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 = 193.655451 - 0: The maximum resident set size (KB) = 2372532 + 0: The total amount of wall time = 203.042608 + 0: The maximum resident set size (KB) = 2465836 Test 169 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_gfs_intel Checking test 170 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 = 196.436069 - 0: The maximum resident set size (KB) = 2367560 + 0: The total amount of wall time = 203.474910 + 0: The maximum resident set size (KB) = 2408436 Test 170 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_debug_cfsr_intel Checking test 171 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 = 360.162873 - 0: The maximum resident set size (KB) = 1002884 + 0: The total amount of wall time = 359.572120 + 0: The maximum resident set size (KB) = 1058952 Test 171 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_control_cfsr_faster_intel Checking test 172 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 = 143.945700 - 0: The maximum resident set size (KB) = 1073508 + 0: The total amount of wall time = 147.968160 + 0: The maximum resident set size (KB) = 1117508 Test 172 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_lnd_gswp3_intel Checking test 173 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 @@ -5385,14 +5575,14 @@ Checking test 173 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.969437 - 0: The maximum resident set size (KB) = 259424 + 0: The total amount of wall time = 5.540127 + 0: The maximum resident set size (KB) = 255972 Test 173 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/datm_cdeps_lnd_gswp3_rst_intel Checking test 174 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 @@ -5401,14 +5591,14 @@ Checking test 174 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.304199 - 0: The maximum resident set size (KB) = 260184 + 0: The total amount of wall time = 14.783515 + 0: The maximum resident set size (KB) = 257176 Test 174 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_p8_atmlnd_sbs_intel Checking test 175 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5493,14 +5683,14 @@ Checking test 175 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 = 203.989566 - 0: The maximum resident set size (KB) = 1611632 + 0: The total amount of wall time = 190.232774 + 0: The maximum resident set size (KB) = 1621632 Test 175 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5543,14 +5733,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.498751 - 0: The maximum resident set size (KB) = 1646088 + 0: The total amount of wall time = 91.733027 + 0: The maximum resident set size (KB) = 1651656 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5594,14 +5784,14 @@ Checking test 177 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 = 86.792694 - 0: The maximum resident set size (KB) = 664688 + 0: The total amount of wall time = 93.196872 + 0: The maximum resident set size (KB) = 660160 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5645,14 +5835,14 @@ Checking test 178 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 = 228.693701 - 0: The maximum resident set size (KB) = 2977992 + 0: The total amount of wall time = 220.329896 + 0: The maximum resident set size (KB) = 2997468 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5696,14 +5886,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.649382 - 0: The maximum resident set size (KB) = 3057368 + 0: The total amount of wall time = 272.798329 + 0: The maximum resident set size (KB) = 3069020 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5747,14 +5937,14 @@ Checking test 180 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 = 284.656611 - 0: The maximum resident set size (KB) = 3056964 + 0: The total amount of wall time = 291.853565 + 0: The maximum resident set size (KB) = 3079444 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_atmaq_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_atmaq_intel Checking test 181 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5770,14 +5960,14 @@ Checking test 181 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 = 612.188237 - 0: The maximum resident set size (KB) = 1477288 + 0: The total amount of wall time = 655.591082 + 0: The maximum resident set size (KB) = 5381868 Test 181 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5791,14 +5981,14 @@ Checking test 182 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 = 1207.869627 - 0: The maximum resident set size (KB) = 1394300 + 0: The total amount of wall time = 1213.166047 + 0: The maximum resident set size (KB) = 4951196 -Test 182 regional_atmaq_debug_intel PASS Tries: 2 +Test 182 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1777/stmp/zshrader/FV3_RT/rt_66061/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_428639/regional_atmaq_faster_intel Checking test 183 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5814,11 +6004,450 @@ Checking test 183 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 = 546.523382 - 0: The maximum resident set size (KB) = 1473196 + 0: The total amount of wall time = 792.289084 + 0: The maximum resident set size (KB) = 5385020 Test 183 regional_atmaq_faster_intel PASS + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231102/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_324314/cpld_debug_p8_intel +Checking test 001 cpld_debug_p8_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 502.386459 + 0: The maximum resident set size (KB) = 3234672 + +Test 184 cpld_debug_p8_intel PASS + + REGRESSION TEST WAS SUCCESSFUL -Fri Jul 14 17:05:20 CDT 2023 -Elapsed time: 01h:57m:58s. Have a nice day! +Fri Nov 3 08:16:04 CDT 2023 +Elapsed time: 00h:18m:54s. Have a nice day! +>>>>>>> 4513c2673da5c10e1fcb2b1c53fa3545912f4091 +======= + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_457009 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [17:10, 16:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:41, 14:32](2094 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 18:05](1960 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 19:00](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:23](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:40](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:37] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:49, 26:53](1944 MB) + +PASS -- COMPILE 's2swa_intel' [16:10, 16:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:36, 14:16](2140 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:18](2135 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:55](1810 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:36, 14:32](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:58](1716 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:34, 13:16](2434 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:34, 14:05](2132 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:17](2148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:40](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:02, 08:26](2724 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:01, 11:29](3662 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:34, 07:08](3542 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:26, 05:58](2116 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:40](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:28, 04:49](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:50](2173 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 06:03](2018 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:10, 13:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:18, 04:39](2046 MB) + +PASS -- COMPILE 's2s_intel' [14:10, 14:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:47](3109 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:20](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:01, 02:08](2546 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 23:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:31](2154 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 20:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 18:07](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:54](1248 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 20:20](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:48] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 28:48](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:37](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:10](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:43, 03:05](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 03:06](1594 MB) +PASS -- TEST 'control_c48_intel' [10:49, 09:16](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:56](856 MB) +PASS -- TEST 'control_c192_intel' [12:49, 11:10](1741 MB) +PASS -- TEST 'control_c384_intel' [14:48, 12:21](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [12:28, 09:27](1360 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:08](475 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](643 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:38](639 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:26](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:25](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:20, 03:15](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:06, 02:01](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:22](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 01:57](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:22](1872 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:40](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:49](1881 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:52](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:34, 03:40](1895 MB) +PASS -- TEST 'regional_control_intel' [07:35, 06:17](1091 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 03:29](1081 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 06:39](1081 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 04:36](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:19](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 06:17](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:21](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 07:33](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:16] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:20, 08:16](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 05:01](1307 MB) +PASS -- TEST 'rap_decomp_intel' [10:02, 08:27](1020 MB) +PASS -- TEST 'rap_2threads_intel' [09:57, 08:14](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:16](1041 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:00, 08:11](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:28](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [05:58, 04:16](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:20](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 04:05](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:18](950 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:14, 08:03](1043 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:38](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:22](2026 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:32](1024 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:25](718 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:43, 12:01](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:19, 03:10](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 05:58](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:02] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:44](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:39](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:03](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:42](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:18](1143 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:48](822 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:44](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [03:49, 03:08](1919 MB) +PASS -- TEST 'regional_debug_intel' [18:47, 17:16](1098 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:44](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:52](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:14](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:31](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:14](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 04:57](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:00](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:50](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:00](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:49](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:01](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:50](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:01](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:52](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:19, 08:19](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:48](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:58](1012 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:41](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 07:05](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:33](956 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:51](907 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:13](981 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:36](1185 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:13](1131 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 01:30](1085 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:29](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:43](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:45](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:07](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:29](950 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:31](1174 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:44](1316 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:54](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:54](761 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:10](1136 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:22](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:15](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:23, 29:02](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:59](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:17](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:22](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:13, 09:28](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:37](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:21](541 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:38](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:33](411 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:56](603 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:10, 21:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:11, 12:47](676 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 12:49](735 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 08:45](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 12:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:14](833 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 07:15](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:56](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:54](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:47](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:28](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:22](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:55](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:16](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2345 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:29](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:37](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:59] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:00](1984 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:54](1955 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 13:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 04:47](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:46](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:47](1083 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 05:52](1906 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 12:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 02:04](1919 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 12:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:33](1989 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 05:14](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:17](1800 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:56] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 20:46](4552 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 09:22:04 +Ending Date/Time: 20240731 10:52:07 +Total Time: 01h:30m:46s +Compiles Completed: 41/41 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1813348 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [06:10, 05:35] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:41, 14:00](1695 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:28] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:06, 04:19](1730 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:42:20 +Ending Date/Time: 20240731 17:05:05 +Total Time: 00h:22m:56s +Compiles Completed: 2/2 +Tests Completed: 2/2 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF ORION REGRESSION TESTING LOG==== +>>>>>>> remotes/upstream/develop diff --git a/tests/logs/RegressionTests_stampede.log b/tests/logs/RegressionTests_stampede.log deleted file mode 100644 index 00e5a787c3..0000000000 --- a/tests/logs/RegressionTests_stampede.log +++ /dev/null @@ -1,252 +0,0 @@ -Sun Mar 21 22:01:01 CDT 2021 -Start Regression test - -Compile 001 elapsed time 569 seconds. SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y - -baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmark_wave -working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmark_wave -Checking test 001 cpld_bmark_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - -The total amount of wall time = 1513.274982 - -Test 001 cpld_bmark_wave PASS - - -baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave -working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave -Checking test 002 cpld_bmarkfrac_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing 20130402.000000.out_grd.gwes_30m .........OK - Comparing 20130402.000000.out_pnt.points .........OK - Comparing 20130402.000000.restart.gwes_30m .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - -The total amount of wall time = 1511.941093 - -Test 002 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave_v16 -working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave_v16 -Checking test 003 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 1019.892656 - -Test 003 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_control_wave -working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_control_wave -Checking test 004 cpld_control_wave results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK - -The total amount of wall time = 753.637820 - -Test 004 cpld_control_wave PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 22 02:13:36 CDT 2021 -Elapsed time: 04h:12m:35s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 62796ca942..f62c9c31cf 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,4713 +1,346 @@ -Fri Jul 14 13:32:57 UTC 2023 -Start Regression test - -Testing UFSWM Hash: 328cb7309d2abb5a35b24cd605c9c867a6c32152 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c ../CICE-interface/CICE (CICE6.0.0-440-g5840cd1) - 9923d6d17700daf502d9a016138bf8eb8aad7f09 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2295-g9923d6d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b6901a95012bfe2fb65fc2bd86a67749f7d80441 ../FV3 (remotes/origin/hr2_land1) - b94145fca46169bbc53ec6b8d4ed849715dc5130 ../GOCART (rt-v5_29_1_BPL91_1-exRT4-514-gb94145f) - 24437531dcf8580aadaf6ebeb9de544ccfc674f9 ../HYCOM-interface/HYCOM (2.3.00-120-g2443753) - fdbfa2523650b81a0771f3fb1791ea3e3dce66db ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9713-gfdbfa2523) - 8dbe01268bd76a0c1860200d2fc152aa600e149f ../NOAHMP-interface/noahmp (v3.7.1-302-g8dbe012) - c4b116886b5ef9af5fb4942d7161074df3402732 ../WW3 (6.07.1-325-gc4b11688) - 3bfa4468d85e5b63980c28434f494967f38b10a3 ../stochastic_physics (ufs-v2.0.0-171-g3bfa446) -Compile atmaero_intel elapsed time 788 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 833 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 996 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 690 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1329 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1425 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 2034 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 1183 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 1452 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 1183 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 1748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1187 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 1852 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 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 994 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 994 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 2191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1565 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1890 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1867 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1336 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1024 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 2354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 339.981038 -The maximum resident set size (KB) = 2949976 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 259.318109 -The maximum resident set size (KB) = 1567328 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_intel -Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 386.984925 -The maximum resident set size (KB) = 2976580 - -Test 003 cpld_control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 241.976575 -The maximum resident set size (KB) = 2867352 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 391.833557 -The maximum resident set size (KB) = 2991672 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 243.110268 -The maximum resident set size (KB) = 2880108 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 370.817061 -The maximum resident set size (KB) = 3281964 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 381.695605 -The maximum resident set size (KB) = 2982032 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 327.737301 -The maximum resident set size (KB) = 2910076 - -Test 009 cpld_mpi_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 387.961246 -The maximum resident set size (KB) = 2979496 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_bmark_p8_intel -Checking test 011 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 949.664185 -The maximum resident set size (KB) = 3907548 - -Test 011 cpld_bmark_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_restart_bmark_p8_intel -Checking test 012 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 662.700637 -The maximum resident set size (KB) = 3873856 - -Test 012 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_noaero_p8_intel -Checking test 013 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 291.305218 -The maximum resident set size (KB) = 1583132 - -Test 013 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_nowave_noaero_p8_intel -Checking test 014 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 306.563022 -The maximum resident set size (KB) = 1628732 - -Test 014 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_noaero_p8_agrid_intel -Checking test 015 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 311.223751 -The maximum resident set size (KB) = 1631752 - -Test 015 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_c48_intel -Checking test 016 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 436.424417 -The maximum resident set size (KB) = 2641904 - -Test 016 cpld_control_c48_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/cpld_control_p8_faster_intel -Checking test 017 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 382.488881 -The maximum resident set size (KB) = 2984284 - -Test 017 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_flake_intel -Checking test 018 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 216.529575 -The maximum resident set size (KB) = 565104 - -Test 018 control_flake_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_CubedSphereGrid_intel -Checking test 019 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -The total amount of wall time = 129.968674 -The maximum resident set size (KB) = 512364 - -Test 019 control_CubedSphereGrid_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_latlon_intel -Checking test 020 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 132.775350 -The maximum resident set size (KB) = 517272 - -Test 020 control_latlon_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wrtGauss_netcdf_parallel_intel -Checking test 021 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 135.432866 -The maximum resident set size (KB) = 514840 - -Test 021 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c48_intel -Checking test 022 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 326.518581 -The maximum resident set size (KB) = 672396 - -Test 022 control_c48_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c192_intel -Checking test 023 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 534.335620 -The maximum resident set size (KB) = 615000 - -Test 023 control_c192_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c384_intel -Checking test 024 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 567.661786 -The maximum resident set size (KB) = 922192 - -Test 024 control_c384_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_c384gdas_intel -Checking test 025 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 499.581802 -The maximum resident set size (KB) = 1057504 - -Test 025 control_c384gdas_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_stochy_intel -Checking test 026 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 95.001677 -The maximum resident set size (KB) = 521668 - -Test 026 control_stochy_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_stochy_restart_intel -Checking test 027 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 49.652390 -The maximum resident set size (KB) = 291332 - -Test 027 control_stochy_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_lndp_intel -Checking test 028 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 90.748784 -The maximum resident set size (KB) = 520748 - -Test 028 control_lndp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_iovr4_intel -Checking test 029 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 138.271800 -The maximum resident set size (KB) = 513496 - -Test 029 control_iovr4_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_iovr5_intel -Checking test 030 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 138.341677 -The maximum resident set size (KB) = 515984 - -Test 030 control_iovr5_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_intel -Checking test 031 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 181.177282 -The maximum resident set size (KB) = 1497392 - -Test 031 control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_restart_p8_intel -Checking test 032 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 101.640799 -The maximum resident set size (KB) = 656628 - -Test 032 control_restart_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_qr_p8_intel -Checking test 033 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 178.783378 -The maximum resident set size (KB) = 1501712 - -Test 033 control_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_restart_qr_p8_intel -Checking test 034 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 102.901049 -The maximum resident set size (KB) = 664784 - -Test 034 control_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_decomp_p8_intel -Checking test 035 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 183.866184 -The maximum resident set size (KB) = 1484068 - -Test 035 control_decomp_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_2threads_p8_intel -Checking test 036 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 157.998458 -The maximum resident set size (KB) = 1566928 - -Test 036 control_2threads_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_lndp_intel -Checking test 037 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 323.027274 -The maximum resident set size (KB) = 1498268 - -Test 037 control_p8_lndp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_rrtmgp_intel -Checking test 038 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 236.924285 -The maximum resident set size (KB) = 1549760 - -Test 038 control_p8_rrtmgp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_mynn_intel -Checking test 039 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 182.265958 -The maximum resident set size (KB) = 1491432 - -Test 039 control_p8_mynn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/merra2_thompson_intel -Checking test 040 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 206.087446 -The maximum resident set size (KB) = 1492008 - -Test 040 merra2_thompson_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_intel -Checking test 041 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 285.022680 -The maximum resident set size (KB) = 655380 - -Test 041 regional_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_restart_intel -Checking test 042 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 158.405306 -The maximum resident set size (KB) = 658508 - -Test 042 regional_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_qr_intel -Checking test 043 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 286.762830 -The maximum resident set size (KB) = 658624 - -Test 043 regional_control_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_restart_qr_intel -Checking test 044 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 160.800545 -The maximum resident set size (KB) = 651780 - -Test 044 regional_restart_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_decomp_intel -Checking test 045 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 300.804066 -The maximum resident set size (KB) = 656636 - -Test 045 regional_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_2threads_intel -Checking test 046 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 173.840130 -The maximum resident set size (KB) = 700348 - -Test 046 regional_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_noquilt_intel -Checking test 047 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 - -The total amount of wall time = 282.698811 -The maximum resident set size (KB) = 647224 - -Test 047 regional_noquilt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_netcdf_parallel_intel -Checking test 048 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - -The total amount of wall time = 281.310533 -The maximum resident set size (KB) = 656632 - -Test 048 regional_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_2dwrtdecomp_intel -Checking test 049 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 286.478399 -The maximum resident set size (KB) = 655456 - -Test 049 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_wofs_intel -Checking test 050 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 364.260877 -The maximum resident set size (KB) = 342912 - -Test 050 regional_wofs_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_intel -Checking test 051 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 407.249404 -The maximum resident set size (KB) = 892752 - -Test 051 rap_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_spp_sppt_shum_skeb_intel -Checking test 052 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 243.285097 -The maximum resident set size (KB) = 993864 - -Test 052 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_decomp_intel -Checking test 053 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 421.330851 -The maximum resident set size (KB) = 896424 - -Test 053 rap_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_2threads_intel -Checking test 054 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 367.100458 -The maximum resident set size (KB) = 979000 - -Test 054 rap_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_restart_intel -Checking test 055 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 209.266918 -The maximum resident set size (KB) = 639128 - -Test 055 rap_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_intel -Checking test 056 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 409.146582 -The maximum resident set size (KB) = 892256 - -Test 056 rap_sfcdiff_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_decomp_intel -Checking test 057 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 425.590728 -The maximum resident set size (KB) = 895528 - -Test 057 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_restart_intel -Checking test 058 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 301.953701 -The maximum resident set size (KB) = 644312 - -Test 058 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1beta_intel -Checking test 059 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 402.782267 -The maximum resident set size (KB) = 889852 - -Test 059 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1nssl_intel -Checking test 060 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 467.166111 -The maximum resident set size (KB) = 576692 - -Test 060 rrfs_v1nssl_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1nssl_nohailnoccn_intel -Checking test 061 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 455.010538 -The maximum resident set size (KB) = 571528 - -Test 061 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_intel -Checking test 062 rrfs_smoke_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 160.117656 -The maximum resident set size (KB) = 796388 - -Test 062 rrfs_smoke_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_qr_intel -Checking test 063 rrfs_smoke_conus13km_hrrr_warm_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - -The total amount of wall time = 152.635611 -The maximum resident set size (KB) = 737216 - -Test 063 rrfs_smoke_conus13km_hrrr_warm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_2threads_intel -Checking test 064 rrfs_smoke_conus13km_hrrr_warm_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 115.859610 -The maximum resident set size (KB) = 802800 - -Test 064 rrfs_smoke_conus13km_hrrr_warm_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_conus13km_hrrr_warm_intel -Checking test 065 rrfs_conus13km_hrrr_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 145.645719 -The maximum resident set size (KB) = 785612 - -Test 065 rrfs_conus13km_hrrr_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_radar_tten_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_radar_tten_warm_intel -Checking test 066 rrfs_smoke_conus13km_radar_tten_warm_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 161.928684 -The maximum resident set size (KB) = 800516 - -Test 066 rrfs_smoke_conus13km_radar_tten_warm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 106.431229 -The maximum resident set size (KB) = 793856 - -Test 067 rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 112.253030 -The maximum resident set size (KB) = 792084 - -Test 068 rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmg_intel -Checking test 069 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 340.833969 -The maximum resident set size (KB) = 585704 - -Test 069 control_csawmg_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmgt_intel -Checking test 070 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 338.317925 -The maximum resident set size (KB) = 583732 - -Test 070 control_csawmgt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_ras_intel -Checking test 071 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 183.232136 -The maximum resident set size (KB) = 553020 - -Test 071 control_ras_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wam_intel -Checking test 072 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 118.412480 -The maximum resident set size (KB) = 274640 - -Test 072 control_wam_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_faster_intel -Checking test 073 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 178.255178 -The maximum resident set size (KB) = 1487756 - -Test 073 control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_control_faster_intel -Checking test 074 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 280.236988 -The maximum resident set size (KB) = 657672 - -Test 074 regional_control_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_debug_intel -Checking test 075 rrfs_smoke_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 910.159993 -The maximum resident set size (KB) = 826636 - -Test 075 rrfs_smoke_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_hrrr_warm_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 526.730567 -The maximum resident set size (KB) = 837124 - -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_conus13km_hrrr_warm_debugs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_conus13km_hrrr_warm_debug_intel -Checking test 077 rrfs_conus13km_hrrr_warm_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 813.872450 -The maximum resident set size (KB) = 807620 - -Test 077 rrfs_conus13km_hrrr_warm_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_CubedSphereGrid_debug_intel -Checking test 078 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 158.250109 -The maximum resident set size (KB) = 673284 - -Test 078 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 158.357449 -The maximum resident set size (KB) = 680252 - -Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_stochy_debug_intel -Checking test 080 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 178.543599 -The maximum resident set size (KB) = 681756 - -Test 080 control_stochy_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_lndp_debug_intel -Checking test 081 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 159.883641 -The maximum resident set size (KB) = 684020 - -Test 081 control_lndp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmg_debug_intel -Checking test 082 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 259.074108 -The maximum resident set size (KB) = 718396 - -Test 082 control_csawmg_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_csawmgt_debug_intel -Checking test 083 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 252.665209 -The maximum resident set size (KB) = 717980 - -Test 083 control_csawmgt_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_ras_debug_intel -Checking test 084 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 161.613702 -The maximum resident set size (KB) = 691508 - -Test 084 control_ras_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_diag_debug_intel -Checking test 085 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 162.665661 -The maximum resident set size (KB) = 735160 - -Test 085 control_diag_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_debug_p8_intel -Checking test 086 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 189.651469 -The maximum resident set size (KB) = 1509780 - -Test 086 control_debug_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_debug_intel -Checking test 087 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1039.592460 -The maximum resident set size (KB) = 675400 - -Test 087 regional_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_debug_intel -Checking test 088 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.998683 -The maximum resident set size (KB) = 1051568 - -Test 088 rap_control_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_debug_intel -Checking test 089 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 289.950415 -The maximum resident set size (KB) = 1049284 - -Test 089 hrrr_control_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_unified_drag_suite_debug_intel -Checking test 090 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.124472 -The maximum resident set size (KB) = 1051256 - -Test 090 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_diag_debug_intel -Checking test 091 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 308.200966 -The maximum resident set size (KB) = 1140272 - -Test 091 rap_diag_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_cires_ugwp_debug_intel -Checking test 092 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 304.571034 -The maximum resident set size (KB) = 1056096 - -Test 092 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_unified_ugwp_debug_intel -Checking test 093 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.646038 -The maximum resident set size (KB) = 1056208 - -Test 093 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_lndp_debug_intel -Checking test 094 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 301.488584 -The maximum resident set size (KB) = 1053976 - -Test 094 rap_lndp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_progcld_thompson_debug_intel -Checking test 095 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.712919 -The maximum resident set size (KB) = 1053304 - -Test 095 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_noah_debug_intel -Checking test 096 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 292.445915 -The maximum resident set size (KB) = 1053392 - -Test 096 rap_noah_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_sfcdiff_debug_intel -Checking test 097 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.689696 -The maximum resident set size (KB) = 1055476 - -Test 097 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 487.444942 -The maximum resident set size (KB) = 1055836 - -Test 098 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_v1beta_debug_intel -Checking test 099 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.788590 -The maximum resident set size (KB) = 1051580 - -Test 099 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_clm_lake_debug_intel -Checking test 100 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 357.070715 -The maximum resident set size (KB) = 1055112 - -Test 100 rap_clm_lake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_flake_debug_intel -Checking test 101 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.893979 -The maximum resident set size (KB) = 1049724 - -Test 101 rap_flake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_wam_debug_intel -Checking test 102 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 295.622157 -The maximum resident set size (KB) = 307212 - -Test 102 control_wam_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 231.085511 -The maximum resident set size (KB) = 893224 - -Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_dyn32_phy32_intel -Checking test 104 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 340.230993 -The maximum resident set size (KB) = 774736 - -Test 104 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_dyn32_phy32_intel -Checking test 105 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 180.857015 -The maximum resident set size (KB) = 771720 - -Test 105 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_qr_dyn32_phy32_intel -Checking test 106 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 180.611561 -The maximum resident set size (KB) = 779800 - -Test 106 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_2threads_dyn32_phy32_intel -Checking test 107 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 308.506716 -The maximum resident set size (KB) = 829988 - -Test 107 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_2threads_dyn32_phy32_intel -Checking test 108 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 161.933623 -The maximum resident set size (KB) = 821784 - -Test 108 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_decomp_dyn32_phy32_intel -Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 188.086192 -The maximum resident set size (KB) = 775492 - -Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_restart_dyn32_phy32_intel -Checking test 110 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 248.714028 -The maximum resident set size (KB) = 608440 - -Test 110 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_restart_dyn32_phy32_intel -Checking test 111 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 93.851990 -The maximum resident set size (KB) = 603772 - -Test 111 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_qr_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 112 hrrr_control_restart_qr_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 94.541773 -The maximum resident set size (KB) = 622920 - -Test 112 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_intel -Checking test 113 rrfs_smoke_conus13km_fast_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 134.492611 -The maximum resident set size (KB) = 719912 - -Test 113 rrfs_smoke_conus13km_fast_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_qr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_qr_intel -Checking test 114 rrfs_smoke_conus13km_fast_phy32_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 129.432572 -The maximum resident set size (KB) = 692820 - -Test 114 rrfs_smoke_conus13km_fast_phy32_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -Checking test 115 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 87.785426 -The maximum resident set size (KB) = 725156 - -Test 115 rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rrfs_smoke_conus13km_fast_phy32_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel -Checking test 116 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 93.931126 -The maximum resident set size (KB) = 707532 - -Test 116 rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_dyn64_phy32_intel -Checking test 117 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 232.383941 -The maximum resident set size (KB) = 797724 - -Test 117 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_debug_dyn32_phy32_intel -Checking test 118 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.991267 -The maximum resident set size (KB) = 935424 - -Test 118 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hrrr_control_debug_dyn32_phy32_intel -Checking test 119 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 288.153874 -The maximum resident set size (KB) = 935276 - -Test 119 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/rap_control_dyn64_phy32_debug_intel -Checking test 120 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.451081 -The maximum resident set size (KB) = 960972 - -Test 120 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_intel -Checking test 121 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 259.997132 -The maximum resident set size (KB) = 823076 - -Test 121 hafs_regional_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 330.992155 -The maximum resident set size (KB) = 1182620 - -Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_ocn_intel -Checking test 123 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 389.467364 -The maximum resident set size (KB) = 860612 - -Test 123 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_wav_intel -Checking test 124 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 713.119054 -The maximum resident set size (KB) = 890656 - -Test 124 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_atm_ocn_wav_intel -Checking test 125 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 903.698120 -The maximum resident set size (KB) = 914568 - -Test 125 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_1nest_atm_intel -Checking test 126 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 309.670536 -The maximum resident set size (KB) = 396216 - -Test 126 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_1nest_atm_qr_intel -Checking test 127 hafs_regional_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 336.935430 -The maximum resident set size (KB) = 373588 - -Test 127 hafs_regional_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_telescopic_2nests_atm_intel -Checking test 128 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 377.487757 -The maximum resident set size (KB) = 411396 - -Test 128 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_1nest_atm_intel -Checking test 129 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 162.010508 -The maximum resident set size (KB) = 290208 - -Test 129 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_1nest_atm_qr_intel -Checking test 130 hafs_global_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 172.935550 -The maximum resident set size (KB) = 273376 - -Test 130 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_multiple_4nests_atm_intel -Checking test 131 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 464.871277 -The maximum resident set size (KB) = 345668 - -Test 131 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_multiple_4nests_atm_qr_intel -Checking test 132 hafs_global_multiple_4nests_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 520.351477 -The maximum resident set size (KB) = 379300 - -Test 132 hafs_global_multiple_4nests_atm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_specified_moving_1nest_atm_intel -Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -The total amount of wall time = 207.571719 -The maximum resident set size (KB) = 403932 - -Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_intel -Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 195.358861 -The maximum resident set size (KB) = 409440 - -Test 134 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 220.818357 -The maximum resident set size (KB) = 395508 - -Test 135 hafs_regional_storm_following_1nest_atm_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 254.014342 -The maximum resident set size (KB) = 473612 - -Test 136 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_global_storm_following_1nest_atm_intel -Checking test 137 hafs_global_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 82.610111 -The maximum resident set size (KB) = 287292 - -Test 137 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 806.846427 -The maximum resident set size (KB) = 493008 - -Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 507.900776 -The maximum resident set size (KB) = 525608 - -Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/control_p8_atmlnd_sbs_intel -Checking test 140 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -The total amount of wall time = 240.745521 -The maximum resident set size (KB) = 1543284 - -Test 140 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_intel -Checking test 141 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 250.463193 -The maximum resident set size (KB) = 2815224 - -Test 141 atmaero_control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_rad_intel -Checking test 142 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 283.915162 -The maximum resident set size (KB) = 2881704 - -Test 142 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/atmaero_control_p8_rad_micro_intel -Checking test 143 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 290.910874 -The maximum resident set size (KB) = 2886704 - -Test 143 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_atmaq_intel -Checking test 144 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 689.083583 -The maximum resident set size (KB) = 1266000 - -Test 144 regional_atmaq_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230713/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_12247/regional_atmaq_debug_intel -Checking test 145 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1306.130630 -The maximum resident set size (KB) = 1297692 - -Test 145 regional_atmaq_debug_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri Jul 14 15:22:40 UTC 2023 -Elapsed time: 01h:49m:43s. Have a nice day! +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135764 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [31:50, 30:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:57, 01:57](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 01:55](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 01:37](1849 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [34:19, 02:12](982 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 01:29](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 42:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:53, 01:11](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:31, 15:08] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [55:20, 01:46](1843 MB) + +PASS -- COMPILE 's2swa_intel' [30:47, 30:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:02, 01:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:02, 01:48](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:42, 01:04](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 01:34](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [31:42, 00:59](3087 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:02, 01:01](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 01:45](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:03, 01:35](3078 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:02, 01:49](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 04:01](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:42, 04:25](4273 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:02, 01:50](3114 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 11:14] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:23, 00:49](1840 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:23, 00:58](1904 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:28, 13:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:22, 01:06](1899 MB) + +PASS -- COMPILE 's2s_intel' [22:38, 21:55] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:11, 01:00](2923 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:11, 01:27](2925 MB) +PASS -- TEST 'cpld_restart_c48_intel' [44:08, 01:11](2349 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:48, 30:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:02, 01:55](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:34, 18:11] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 00:47](1843 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:04, 01:26](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 01:41](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:50, 28:29] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 00:42](1863 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:52, 34:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:50, 00:22](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:50, 00:35](1463 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:50, 00:24](1475 MB) +PASS -- TEST 'control_latlon_intel' [19:20, 00:20](1478 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:56, 00:32](1471 MB) +PASS -- TEST 'control_c48_intel' [18:45, 01:11](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:45, 00:50](715 MB) +PASS -- TEST 'control_c192_intel' [18:45, 00:40](1593 MB) +PASS -- TEST 'control_c384_intel' [18:36, 01:37](1903 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 02:04](1089 MB) +PASS -- TEST 'control_stochy_intel' [18:26, 00:27](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:01, 01:01](333 MB) +PASS -- TEST 'control_lndp_intel' [18:21, 00:30](528 MB) +PASS -- TEST 'control_iovr4_intel' [17:52, 00:44](527 MB) +PASS -- TEST 'control_iovr5_intel' [17:52, 00:43](521 MB) +PASS -- TEST 'control_p8_intel' [17:32, 01:38](1770 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:44, 01:49](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [16:44, 01:57](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [12:25, 01:00](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [16:44, 01:31](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:43, 00:41](925 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:44, 01:25](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:43, 01:02](1855 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:42, 01:04](1777 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 02:04](1830 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:39, 01:43](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [16:37, 01:42](1778 MB) +PASS -- TEST 'regional_control_intel' [15:56, 00:12](849 MB) +PASS -- TEST 'regional_restart_intel' [10:14, 00:28](852 MB) +PASS -- TEST 'regional_decomp_intel' [15:56, 00:55](852 MB) +PASS -- TEST 'regional_2threads_intel' [15:43, 00:56](904 MB) +PASS -- TEST 'regional_noquilt_intel' [15:33, 00:19](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:20, 00:23](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:04, 00:15](855 MB) +PASS -- TEST 'regional_wofs_intel' [15:03, 00:52](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [21:41, 20:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [33:37, 01:42](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:38, 01:03](1087 MB) +PASS -- TEST 'rap_decomp_intel' [33:37, 01:26](913 MB) +PASS -- TEST 'rap_2threads_intel' [33:37, 01:45](997 MB) +PASS -- TEST 'rap_restart_intel' [24:34, 01:33](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:37, 02:10](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:37, 01:55](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [24:03, 01:43](782 MB) +PASS -- TEST 'hrrr_control_intel' [33:37, 01:02](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:37, 00:56](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:38, 01:24](991 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:32, 01:05](737 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:37, 02:08](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:37, 01:00](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:37, 01:17](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [11:25, 11:05] +PASS -- TEST 'control_csawmg_intel' [40:52, 00:29](872 MB) +PASS -- TEST 'control_ras_intel' [40:52, 00:52](565 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 08:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [42:52, 00:55](1572 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 13:52] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [33:09, 02:03](1774 MB) +PASS -- TEST 'regional_control_faster_intel' [32:39, 00:21](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:35, 18:23] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:16, 01:14](1499 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:17](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:16, 00:44](701 MB) +PASS -- TEST 'control_lndp_debug_intel' [23:16, 01:00](703 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:16, 00:26](1012 MB) +PASS -- TEST 'control_ras_debug_intel' [23:16, 01:01](711 MB) +PASS -- TEST 'control_diag_debug_intel' [23:16, 01:12](1559 MB) +PASS -- TEST 'control_debug_p8_intel' [23:16, 00:54](1796 MB) +PASS -- TEST 'regional_debug_intel' [23:15, 00:11](903 MB) +PASS -- TEST 'rap_control_debug_intel' [23:16, 00:44](1084 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:16, 00:49](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:16, 00:45](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:16, 00:42](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:16, 00:43](1082 MB) +PASS -- TEST 'rap_diag_debug_intel' [23:16, 00:34](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:16, 00:37](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:13, 00:36](1090 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:24, 00:47](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:24, 00:51](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:24, 00:54](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:28, 00:42](1082 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 00:25](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:05, 00:47](1078 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:45, 00:33](1090 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:22, 00:41](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 01:51](1091 MB) + +PASS -- COMPILE 'wam_debug_intel' [22:43, 22:00] ( 825 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:29, 01:16](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:28, 01:20](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:28, 02:00](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:28, 01:49](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:29, 02:17](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:28, 01:51](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:09, 01:34](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:05, 00:17](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:42, 22:30] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:46, 01:05](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:00](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:47, 00:47](887 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:44, 17:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 01:21](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:59, 31:28] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:37, 00:55](964 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:37, 01:04](960 MB) +PASS -- TEST 'conus13km_debug_intel' [01:37, 01:05](1056 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:37, 00:57](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:38, 00:23](1057 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:37, 01:00](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 10:24] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:11, 00:56](991 MB) + +PASS -- COMPILE 'hafsw_intel' [22:37, 22:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:18, 02:04](615 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 01:09](972 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:16, 01:37](664 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [05:16, 01:30](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:17, 01:56](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:16, 01:03](389 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:17, 02:01](405 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:17, 01:35](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 00:37](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 00:52](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:18, 00:56](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:17, 00:28](325 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:41, 19:23] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:49, 01:16](527 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:43, 25:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:36, 01:33](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [57:36, 01:32](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:36, 14:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:56, 00:56](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:39, 20:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:30, 01:49](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:30, 01:44](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:28, 00:21](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 11:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 00:46](1824 MB) + +PASS -- COMPILE 'atml_intel' [26:48, 25:34] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:30, 14:15] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:30, 15:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [50:22, 01:02](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:22, 01:34](2904 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:22, 01:21](2920 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:46] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [57:05, 01:30](4437 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 13:48:54 +Ending Date/Time: 20240731 15:30:17 +Total Time: 01h:42m:25s +Compiles Completed: 33/33 +Tests Completed: 155/156 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_control_wam_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_238998 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: control_wam_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:17, 03:54] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:01, 01:01](1599 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:15:42 +Ending Date/Time: 20240731 16:37:16 +Total Time: 00h:21m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF WCOSS2 REGRESSION TESTING LOG==== diff --git a/tests/module-setup.sh b/tests/module-setup.sh index ed6dacec0d..cd606178f6 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -1,65 +1,72 @@ #!/bin/bash set -eu -if [[ $MACHINE_ID = jet ]] ; then +if [[ ${MACHINE_ID} = jet ]] ; then # We are on NOAA Jet if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = hera ]] ; then +elif [[ ${MACHINE_ID} = hera ]] ; then # We are on NOAA Hera if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = orion ]] ; then +elif [[ ${MACHINE_ID} = orion ]] ; then # We are on Orion if ( ! eval module help > /dev/null 2>&1 ) ; then source /apps/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = s4 ]] ; then +elif [[ ${MACHINE_ID} = hercules ]] ; then + # We are on Hercules + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/other/lmod/lmod/init/bash + fi + module purge + +elif [[ ${MACHINE_ID} = s4 ]] ; then # We are on SSEC Wisconsin S4 if ( ! eval module help > /dev/null 2>&1 ) ; then source /usr/share/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]] ; then +elif [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]] ; then # We are on NOAA Cactus or Dogwood if ( ! eval module help > /dev/null 2>&1 ) ; then source /usr/share/lmod/lmod/init/bash fi module purge module reset - -elif [[ $MACHINE_ID = cheyenne ]] ; then - # We are on NCAR Cheyenne + +elif [[ ${MACHINE_ID} = derecho ]] ; then + # We are on NCAR Derecho if ( ! eval module help > /dev/null 2>&1 ) ; then - source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh + source /usr/share/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = noaacloud ]] ; then - # We are on NOAA Cloud +elif [[ ${MACHINE_ID} = stampede ]] ; then + # We are on TACC Stampede if ( ! eval module help > /dev/null 2>&1 ) ; then - source /apps/lmod/8.5.2/init/bash + source /opt/apps/lmod/lmod/init/bash fi module purge - -elif [[ $MACHINE_ID = stampede ]] ; then - # We are on TACC Stampede + +elif [[ ${MACHINE_ID} = frontera ]] ; then + # We are on TACC Frontera if ( ! eval module help > /dev/null 2>&1 ) ; then source /opt/apps/lmod/lmod/init/bash fi module purge -elif [[ $MACHINE_ID = gaea ]] ; then - # We are on GAEA. +elif [[ ${MACHINE_ID} = gaea ]] ; then + # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA # /etc/profile modifies a number of module-related variables @@ -68,9 +75,9 @@ elif [[ $MACHINE_ID = gaea ]] ; then # /etc/profile here. source /etc/profile fi - source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh + module reset -elif [[ $MACHINE_ID = expanse ]]; then +elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then source /etc/profile.d/modules.sh @@ -78,6 +85,10 @@ elif [[ $MACHINE_ID = expanse ]]; then module purge module load slurm/expanse/20.02.3 +elif [[ ${MACHINE_ID} = noaacloud ]] ; then + # We are on NOAA Cloud + module purge + else echo WARNING: UNKNOWN PLATFORM 1>&2 fi diff --git a/tests/opnReqTest b/tests/opnReqTest index acc8a0b448..3578f1a098 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -78,7 +78,7 @@ find_build() { build_opnReqTests() { rm -f fv3_std.exe fv3_dbg.exe fv3_bit.exe modules.fv3_std modules.fv3_dbg modules.fv3_bit - + export RTVERBOSE=false model_found=false base_opt= find_build @@ -104,12 +104,12 @@ build_opnReqTests() { ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') - export COMPILE_NR=${name} + export COMPILE_ID=${name} cat <<-EOF > ${RUNDIR_ROOT}/compile_${name}.env export MACHINE_ID=${MACHINE_ID} - export JOB_NR=${COMPILE_NR} - export COMPILE_NR=${COMPILE_NR} + export JOB_NR=${COMPILE_ID} + export COMPILE_ID=${COMPILE_ID} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export SCHEDULER=${SCHEDULER} @@ -124,7 +124,7 @@ build_opnReqTests() { EOF if [[ $ECFLOW == true ]]; then - COMPILE_NR=$name + COMPILE_ID=$name ecflow_create_compile_task else echo "compiling $name with compile option $MAKE_OPT" @@ -252,8 +252,8 @@ run_opnReqTests() { EOF if [[ $ECFLOW == true ]]; then - TEST_NR=${RT_SUFFIX:1} - COMPILE_NR=$comp_nm + TEST_ID=${RT_SUFFIX:1} + COMPILE_ID=$comp_nm RT_COMPILER=${RT_COMPILER:-intel} DEP_RUN= if [[ ${RT_SUFFIX} == _std || ${RT_SUFFIX} == _thr || ${RT_SUFFIX} == _mpi || ${RT_SUFFIX} == _dcp || ${RT_SUFFIX} == _rst || ${RT_SUFFIX} == _fhz ]]; then @@ -269,8 +269,8 @@ run_opnReqTests() { else echo "Running test for $rc" echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TPN: $TPN" - TEST_NR=${RT_SUFFIX:1} - ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_NR $comp_nm > $LOG_DIR/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1 + TEST_ID=${RT_SUFFIX:1} + ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_ID $comp_nm > $LOG_DIR/run_${TEST_ID}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1 fi done @@ -307,7 +307,7 @@ export CI_TEST=${CI_TEST:-false} # specify compiler export RT_COMPILER=${RT_COMPILER:-intel} # detect_machine sets MACHINE_ID -RT_MACHINE=${RT_MACHINE:-} +MACHINE=${MACHINE:-} source detect_machine.sh cd $PATHRT @@ -338,10 +338,10 @@ if [[ $MACHINE_ID = hera ]]; then PARTITION= QUEUE=batch COMPILE_QUEUE=batch - dprefix=/scratch1/NCEPDEV - DISKNM=$dprefix/nems/emc.nemspara/RT - STMP=${dprefix}/stmp4 - PTMP=${dprefix}/stmp2 + dprefix="/scratch1/NCEPDEV" + DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" SCHEDULER=slurm elif [[ $MACHINE_ID = orion ]]; then @@ -361,6 +361,30 @@ elif [[ $MACHINE_ID = orion ]]; then PTMP=$dprefix/stmp SCHEDULER=slurm +elif [[ $MACHINE_ID = hercules ]]; then + + module load contrib rocoto/1.3.5 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + + module use /work/noaa/epic/role-epic/spack-stack/modulefiles + module load ecflow/5.8.4-hercules + ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/ecflow-5.8.4-hercules/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + QUEUE=windfall + COMPILE_QUEUE=windfall + PARTITION=hercules + dprefix=/work2/noaa/epic/${USER} + DISKNM=/work/noaa/epic/hercules/UFS-WM_RT + STMP=$dprefix/stmp + PTMP=$dprefix/stmp + + SCHEDULER=slurm + cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN + elif [[ $MACHINE_ID = linux ]]; then PARTITION= @@ -538,6 +562,8 @@ if [[ $ECFLOW == true ]]; then EOF if [[ $MACHINE_ID == hera ]]; then QUEUE=batch + elif [[ $MACHINE_ID == hercules ]]; then + QUEUE=windfall elif [[ $MACHINE_ID == orion ]]; then QUEUE=batch else @@ -606,8 +632,8 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/ +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20240501} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} rm -rf $NEW_BASELINE diff --git a/tests/opnReqTests/dbg.sh b/tests/opnReqTests/dbg.sh index 96d26889a1..131da76ea8 100644 --- a/tests/opnReqTests/dbg.sh +++ b/tests/opnReqTests/dbg.sh @@ -21,7 +21,6 @@ elif [[ $application == 'regional' ]]; then elif [[ $application == 'cpld' ]]; then FHMAX=3 DAYS=0.125 - NFHOUT_HF=1 RESTART_INTERVAL=${FHMAX} RESTART_N=${FHMAX} OUTPUT_FH="0 ${FHMAX}" @@ -38,10 +37,9 @@ elif [[ $application == 'cpld' ]]; then | sed -e "s/^ *//" -e "s/ *$//") elif [[ $application == 'atmw' ]]; then FHMAX=3 - WW3RSTDTHR=3 - DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" + WW3_RSTDTHR=3 + WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" DAYS=0.125 - NFHOUT_HF=1 RESTART_INTERVAL=${FHMAX} RESTART_N=${FHMAX} OUTPUT_FH="0 ${FHMAX}" @@ -59,5 +57,5 @@ source $PATHRT/opnReqTests/wrt_env.sh cat <>${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env export WLCLK=${WLCLK} -export DT_2_RST=${DT_2_RST:-} +export WW3_DT_2_RST=${WW3_DT_2_RST:-} EOF diff --git a/tests/opnReqTests/dcp.sh b/tests/opnReqTests/dcp.sh index 8c7c18fa67..0c779b72ba 100644 --- a/tests/opnReqTests/dcp.sh +++ b/tests/opnReqTests/dcp.sh @@ -30,7 +30,7 @@ elif [[ $application == 'cpld' ]]; then JNPES=1 OCN_tasks=10 ICE_tasks=6 - NPROC_ICE=$ICE_tasks + CICE_NPROC=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) else temp=$INPES diff --git a/tests/opnReqTests/rst.sh b/tests/opnReqTests/rst.sh index 1a070d866f..f01b2ca0cf 100644 --- a/tests/opnReqTests/rst.sh +++ b/tests/opnReqTests/rst.sh @@ -25,9 +25,9 @@ elif [[ $application == 'regional' ]]; then elif [[ $application == 'cpld' ]]; then FHROT=$(( FHMAX/2 )) - CICERUNTYPE='continue' + CICE_RUNTYPE='continue' RUNTYPE='continue' - USE_RESTART_TIME='.true.' + CICE_USE_RESTART_TIME='.true.' MOM6_RESTART_SETTING="r" RESTART_N=$(( FHMAX - FHROT )) RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" @@ -35,10 +35,10 @@ elif [[ $application == 'cpld' ]]; then RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" elif [[ $application == 'atmw' ]]; then FHROT=$(( FHMAX/2 )) - WW3RSTDTHR=6 - DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" + WW3_RSTDTHR=6 + WW3_DT_2_RST="$(printf "%02d" $(( ${WW3_RSTDTHR}*3600 )))" RUNTYPE='continue' - USE_RESTART_TIME='.true.' + CICE_USE_RESTART_TIME='.true.' RESTART_N=$(( FHMAX - FHROT )) RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (SHOUR + FHROT)* 3600 )))" @@ -69,12 +69,12 @@ source $PATHRT/opnReqTests/wrt_env.sh cat <>${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env export FHROT=${FHROT} -export DT_2_RST=${DT_2_RST:-} +export WW3_DT_2_RST=${WW3_DT_2_RST:-} export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} export NSTF_NAME=${NSTF_NAME} -export CICERUNTYPE=${CICERUNTYPE:-} +export CICE_RUNTYPE=${CICE_RUNTYPE:-} export RUNTYPE=${RUNTYPE:-} -export USE_RESTART_TIME=${USE_RESTART_TIME:-} +export CICE_USE_RESTART_TIME=${CICE_USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} export RESTART_N=${RESTART_N:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} diff --git a/tests/opnReqTests/std.sh b/tests/opnReqTests/std.sh index c4b034150a..6d03aa541e 100644 --- a/tests/opnReqTests/std.sh +++ b/tests/opnReqTests/std.sh @@ -26,7 +26,7 @@ elif [[ $application == 'cpld' ]]; then JNPES=2 OCN_tasks=10 ICE_tasks=6 - NPROC_ICE=$ICE_tasks + CICE_NPROC=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) fi diff --git a/tests/opnReqTests/thr.sh b/tests/opnReqTests/thr.sh index 8a7f5838b6..5c53609d2f 100644 --- a/tests/opnReqTests/thr.sh +++ b/tests/opnReqTests/thr.sh @@ -23,7 +23,7 @@ elif [[ $application == 'cpld' ]]; then JNPES=4 OCN_tasks=30 ICE_tasks=12 - NPROC_ICE=$ICE_tasks + CICE_NPROC=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $TEST_NAME =~ 'cpld_control_c96_noaero_p8' ]]; then @@ -31,7 +31,7 @@ elif [[ $application == 'cpld' ]]; then JNPES=4 OCN_tasks=30 ICE_tasks=12 - NPROC_ICE=$ICE_tasks + CICE_NPROC=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $TEST_NAME =~ 'cpld_control_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_ciceC_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_gfsv17' ]]; then @@ -40,7 +40,7 @@ elif [[ $application == 'cpld' ]]; then OCN_tasks=20 ICE_tasks=10 WAV_tasks=12 - NPROC_ICE=$ICE_tasks + CICE_NPROC=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks + WAV_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $TEST_NAME == 'cpld_bmark_p8' ]]; then diff --git a/tests/opnReqTests/wrt_env.sh b/tests/opnReqTests/wrt_env.sh index c784711f92..2f6871d7f2 100644 --- a/tests/opnReqTests/wrt_env.sh +++ b/tests/opnReqTests/wrt_env.sh @@ -13,16 +13,13 @@ export ICE_tasks=${ICE_tasks:-} export WAV_tasks=${WAV_tasks:-} export WRITE_GROUP=${WRITE_GROUP:-} export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP:-} -export NPROC_ICE=${NPROC_ICE:-} +export CICE_NPROC=${CICE_NPROC:-} export THRD=${THRD:-} export TASKS=${TASKS:-} export TPN=${TPN:-} export NODES=${NODES:-} export OMP_ENV="${OMP_ENV:-}" export MPI_PROC_BIND="${MPI_PROC_BIND:-}" -export NFHOUT=${NFHOUT} -export NFHMAX_HF=${NFHMAX_HF} -export NFHOUT_HF=${NFHOUT_HF} export LIST_FILES="${LIST_FILES}" export OUTPUT_FH="${OUTPUT_FH}" export AOD_FRQ=${AOD_FRQ:-} diff --git a/tests/parm/MOM6_data_table.IN b/tests/parm/MOM6_data_table.IN new file mode 100644 index 0000000000..71d0106acf --- /dev/null +++ b/tests/parm/MOM6_data_table.IN @@ -0,0 +1 @@ +"OCN", "runoff", "runoff", "./INPUT/@[MOM6_FRUNOFF]", "none" , 1.0 diff --git a/tests/parm/MOM6_data_table_hafs b/tests/parm/MOM6_data_table_hafs new file mode 100644 index 0000000000..89905df3a7 --- /dev/null +++ b/tests/parm/MOM6_data_table_hafs @@ -0,0 +1,2 @@ +"OCN", "runoff", "liq_runoff", "./INPUT/ocean_runoff_monthly.nc", "bilinear", 1.0 +"OCN", "SSS_restore", "s_an", "./INPUT/ocean_salt_restore.nc", "bilinear", 1.0 diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_025.IN similarity index 96% rename from tests/parm/MOM_input_template_025 rename to tests/parm/MOM_input_025.IN index 7057ce2f58..0898e1def4 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_025.IN @@ -91,8 +91,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 ! The value of SST below which a bad value message is triggered, if ! CHECK_BAD_SURFACE_VALS is true. -DEFAULT_2018_ANSWERS = True ! [Boolean] default = True - ! This sets the default value for the various _2018_ANSWERS parameters. +DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. WRITE_GEOM = 2 ! default = 1 ! If =0, never write the geometry and vertical grid files. If =1, write the ! geometry and vertical grid files only for a new simulation. If =2, always @@ -341,8 +341,8 @@ DIAG_COORDS = "z Z ZSTAR" ! A list of string tuples associating diag_table modules to ! a coordinate definition used for diagnostics. Each string ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". -DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" -DIAG_MISVAL = -1e34 +DIAG_COORD_DEF_Z="FILE:@[MOM6_DIAG_COORD_DEF_Z_FILE],interfaces=zw" +DIAG_MISVAL = @[MOM6_DIAG_MISVAL] !DIAG_COORD_DEF_RHO2 = "FILE:diag_rho2.nc,interfaces=rho2" ! default = "WOA09" ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 @@ -509,9 +509,10 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -701,7 +702,7 @@ PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine ! the e-folding depth of incoming short wave radiation. -CHL_FILE = @[CHLCLIM] ! +CHL_FILE = @[MOM6_CHLCLIM] ! ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. CHL_VARNAME = "chlor_a" ! default = "CHL_A" @@ -835,6 +836,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_050.IN similarity index 96% rename from tests/parm/MOM_input_template_050 rename to tests/parm/MOM_input_050.IN index 2853c1de89..3974f87cfe 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_050.IN @@ -91,8 +91,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 ! The value of SST below which a bad value message is triggered, if ! CHECK_BAD_SURFACE_VALS is true. -DEFAULT_2018_ANSWERS = True ! [Boolean] default = True - ! This sets the default value for the various _2018_ANSWERS parameters. +DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. WRITE_GEOM = 2 ! default = 1 ! If =0, never write the geometry and vertical grid files. If =1, write the ! geometry and vertical grid files only for a new simulation. If =2, always @@ -339,8 +339,8 @@ DIAG_COORDS = "z Z ZSTAR" ! A list of string tuples associating diag_table modules to ! a coordinate definition used for diagnostics. Each string ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". -DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" -DIAG_MISVAL = -1e34 +DIAG_COORD_DEF_Z="FILE:@[MOM6_DIAG_COORD_DEF_Z_FILE],interfaces=zw" +DIAG_MISVAL = @[MOM6_DIAG_MISVAL] !DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" ! Determines how to specify the coordinate resolution. Valid options are: ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 @@ -539,9 +539,10 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -731,7 +732,7 @@ PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine ! the e-folding depth of incoming short wave radiation. -CHL_FILE = @[CHLCLIM] ! +CHL_FILE = @[MOM6_CHLCLIM] ! ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. CHL_VARNAME = "chlor_a" ! default = "CHL_A" @@ -860,8 +861,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_100.IN similarity index 96% rename from tests/parm/MOM_input_template_100 rename to tests/parm/MOM_input_100.IN index 4da3e10fa2..70efc8da9d 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_100.IN @@ -65,8 +65,8 @@ BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 ! The value of SST below which a bad value message is triggered, if ! CHECK_BAD_SURFACE_VALS is true. -DEFAULT_2018_ANSWERS = True ! [Boolean] default = False - ! This sets the default value for the various _2018_ANSWERS parameters. +DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. WRITE_GEOM = 2 ! default = 1 ! If =0, never write the geometry and vertical grid files. If =1, write the ! geometry and vertical grid files only for a new simulation. If =2, always @@ -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 @@ -162,7 +137,7 @@ TOPO_CONFIG = "file" ! ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. -TOPO_EDITS_FILE = "@[TOPOEDITS]" ! default = "" +TOPO_EDITS_FILE = "@[MOM6_TOPOEDITS]" ! default = "" ! The file from which to read a list of i,j,z topography overrides. ALLOW_LANDMASK_CHANGES = @[MOM6_ALLOW_LANDMASK_CHANGES] ! default = "False" ! If true, allow topography overrides to change ocean points to land @@ -346,8 +321,8 @@ DIAG_COORDS = "z Z ZSTAR" ! A list of string tuples associating diag_table modules to ! a coordinate definition used for diagnostics. Each string ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". -DIAG_COORD_DEF_Z="FILE:interpolate_zgrid_40L.nc,interfaces=zw" -DIAG_MISVAL = -1e34 +DIAG_COORD_DEF_Z="FILE:@[MOM6_DIAG_COORD_DEF_Z_FILE],interfaces=zw" +DIAG_MISVAL = @[MOM6_DIAG_MISVAL] !AVAILABLE_DIAGS_FILE = "available_diags.002160" ! default = "available_diags.000000" ! A file into which to write a list of all available ocean diagnostics that can ! be included in a diag_table. @@ -530,9 +505,10 @@ USE_KH_BG_2D = True ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -699,7 +675,7 @@ PRESSURE_DEPENDENT_FRAZIL = False ! [Boolean] default = False VAR_PEN_SW = True ! [Boolean] default = False ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine ! the e-folding depth of incoming short wave radiation. -CHL_FILE = @[CHLCLIM] ! +CHL_FILE = @[MOM6_CHLCLIM] ! ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. @@ -832,6 +808,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_500.IN similarity index 86% rename from tests/parm/MOM_input_template_500 rename to tests/parm/MOM_input_500.IN index 2a5dde838b..bf474652ee 100644 --- a/tests/parm/MOM_input_template_500 +++ b/tests/parm/MOM_input_500.IN @@ -258,6 +258,15 @@ Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False ! If True, then remap straight to model coordinate from file. ! === module MOM_diag_mediator === +NUM_DIAG_COORDS = 1 + ! The number of diagnostic vertical coordinates to use. + ! For each coordinate, an entry in DIAG_COORDS must be provided. +DIAG_COORDS = "z Z ZSTAR" + ! A list of string tuples associating diag_table modules to + ! a coordinate definition used for diagnostics. Each string + ! is of the form "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_Z="FILE:@[MOM6_DIAG_COORD_DEF_Z_FILE],interfaces=zw" +DIAG_MISVAL = @[MOM6_DIAG_MISVAL] ! === module MOM_MEKE === USE_MEKE = True ! [Boolean] default = False @@ -341,9 +350,10 @@ USE_LAND_MASK_FOR_HVISC = True ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. -KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 - ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. - ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +KV_ML_INVZ2 = 1.0E-04 ! [m2 s-1] default = 0.0 + ! An extra kinematic viscosity in a mixed layer of thickness HMIX_FIXED, with + ! the actual viscosity scaling as 1/(z*HMIX_FIXED)^2, where z is the distance + ! from the surface, to allow for finite wind stresses to be transmitted through. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -458,6 +468,48 @@ USE_LA_LI2016 = @[MOM6_USE_LI2016] ! [nondim] default = False ! Langmuir number. USE_WAVES = @[MOM6_USE_WAVES] ! [Boolean] default = False ! If true, enables surface wave modules. +WAVE_METHOD = "SURFACE_BANDS" ! default = "EMPTY" + ! Choice of wave method, valid options include: + ! TEST_PROFILE - Prescribed from surface Stokes drift + ! and a decay wavelength. + ! SURFACE_BANDS - Computed from multiple surface values + ! and decay wavelengths. + ! DHH85 - Uses Donelan et al. 1985 empirical + ! wave spectrum with prescribed values. + ! LF17 - Infers Stokes drift profile from wind + ! speed following Li and Fox-Kemper 2017. +SURFBAND_SOURCE = "COUPLER" ! default = "EMPTY" + ! Choice of SURFACE_BANDS data mode, valid options include: + ! DATAOVERRIDE - Read from NetCDF using FMS DataOverride. + ! COUPLER - Look for variables from coupler pass + ! INPUT - Testing with fixed values. +STK_BAND_COUPLER = 3 ! default = 1 + ! STK_BAND_COUPLER is the number of Stokes drift bands in the coupler. This has + ! to be consistent with the number of Stokes drift bands in WW3, or the model + ! will fail. +SURFBAND_WAVENUMBERS = 0.04, 0.11, 0.3305 ! [rad/m] default = 0.12566 + ! Central wavenumbers for surface Stokes drift bands. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement of mstar +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancementt of mstar +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. ! === module MOM_regularize_layers === @@ -495,6 +547,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/MOM_input_hafs b/tests/parm/MOM_input_hafs new file mode 100644 index 0000000000..b7fd7e72bc --- /dev/null +++ b/tests/parm/MOM_input_hafs @@ -0,0 +1,976 @@ + +! Where appropriate, parameters use usually given in MKS units. + +! This particular file is for the example in ice_ocean_SIS2/Baltic_OM4_025. + +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + + +! === module MOM_domains === +REENTRANT_X = False ! [Boolean] default = True + ! If true, the domain is zonally reentrant. +!SYMMETRIC_MEMORY_ = True +!STATIC_MEMORY_ = False + +NIGLOBAL = 1135 ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = 633 ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +!NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +!NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 4, 4 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. + +! === module MOM === +DIABATIC_FIRST = False ! [Boolean] default = False + ! If true, apply diabatic and thermodynamic processes, including buoyancy + ! forcing and mass gain or loss, before stepping the dynamics forward. +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. +DT = 360.0 ! [s] + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) +DT_THERM = 360.0 ! [s] default = 3600.0 + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = True ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +DO_GEOTHERMAL = True ! [Boolean] default = False + ! If true, apply geothermal heating. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. +C_P = 3925.0 !3992.0 ! [J kg-1 K-1] default = 3991.86795711963 + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. +CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False + ! If true, check the surface state for ridiculous values. +BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_ANSWER_DATE = 20181231 ! default = 99991231 + ! This sets the default value for the various _ANSWER_DATE parameters. +WRITE_GEOM = 0 ! default = 1 + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. +IC_OUTPUT_FILE = "MOM_IC" ! default = "MOM_IC" + ! The file into which to write the initial conditions. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! benchmark - use the benchmark test case topography. + ! Neverland - use the Neverland test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. + ! shelfwave - exponential slope for shelfwave test case. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" + ! The file from which the bathymetry is read. +MAXIMUM_DEPTH = 6500.0 ! [m] + ! The maximum depth of the ocean. +MINIMUM_DEPTH = 5.0 !9.5 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. +! khs_testMASKING_DEPTH = 1.0 ! [m] default = -9999.0 +MASKING_DEPTH = 5.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. +CHANNEL_CONFIG = "none" ! default = "none" + ! A parameter that determines which set of channels are + ! restricted to specific widths. Options are: + ! none - All channels have the grid width. + ! global_1deg - Sets 16 specific channels appropriate + ! for a 1-degree model, as used in CM2G. + ! list - Read the channel locations and widths from a + ! text file, like MOM_channel_list in the MOM_SIS + ! test case. + ! file - Read open face widths everywhere from a + ! NetCDF file on the model grid. +!CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" + ! The file from which the list of narrowed channels is read. +OBC_NUMBER_OF_SEGMENTS = 4 ! default = 0 + ! The number of open boundary segments. +OBC_FREESLIP_VORTICITY = True ! [Boolean] default = True + ! If true, sets the normal gradient of tangential velocity to zero in the + ! relative vorticity on open boundaries. This cannot be true if another + ! OBC_XXX_VORTICITY option is True. +OBC_COMPUTED_VORTICITY = False ! [Boolean] default = False + ! If true, uses the external values of tangential velocity in the relative + ! vorticity on open boundaries. This cannot be true if another OBC_XXX_VORTICITY + ! option is True. +OBC_ZERO_BIHARMONIC = False ! [Boolean] default = False + ! If true, zeros the Laplacian of flow on open boundaries in the biharmonic + ! viscosity term. +OBC_FREESLIP_STRAIN = False ! [Boolean] default = True +OBC_COMPUTED_STRAIN = True ! [Boolean] default = False +OBC_SEGMENT_001 = "J=N,I=N:0,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! north +OBC_SEGMENT_002 = "J=0,I=0:N,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! south +OBC_SEGMENT_003 = "I=N,J=0:N,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! east +OBC_SEGMENT_004 = "I=0,J=N:0,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! west + ! Documentation needs to be dynamic????? +OBC_SEGMENT_001_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +OBC_SEGMENT_002_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. +OBC_SEGMENT_003_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 !3, 3600.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +OBC_SEGMENT_004_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 !3, 3600.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +BRUSHCUTTER_MODE = True ! [Boolean] default = False + ! If true, read external OBC data on the supergrid. +OBC_SEGMENT_001_DATA = "U=file:ocean_uv_obc_north.nc(u),V=file:ocean_uv_obc_north.nc(v),SSH=file:ocean_ssh_obc_north.nc(ssh),TEMP=file:ocean_ts_obc_north.nc(temp),SALT=file:ocean_ts_obc_north.nc(salt)" ! +OBC_SEGMENT_002_DATA = "U=file:ocean_uv_obc_south.nc(u),V=file:ocean_uv_obc_south.nc(v),SSH=file:ocean_ssh_obc_south.nc(ssh),TEMP=file:ocean_ts_obc_south.nc(temp),SALT=file:ocean_ts_obc_south.nc(salt)" ! +OBC_SEGMENT_003_DATA = "U=file:ocean_uv_obc_east.nc(u),V=file:ocean_uv_obc_east.nc(v),SSH=file:ocean_ssh_obc_east.nc(ssh),TEMP=file:ocean_ts_obc_east.nc(temp),SALT=file:ocean_ts_obc_east.nc(salt)" ! +OBC_SEGMENT_004_DATA = "U=file:ocean_uv_obc_west.nc(u),V=file:ocean_uv_obc_west.nc(v),SSH=file:ocean_ssh_obc_west.nc(ssh),TEMP=file:ocean_ts_obc_west.nc(temp),SALT=file:ocean_ts_obc_west.nc(salt)" ! +OBC_TRACER_RESERVOIR_LENGTH_SCALE_OUT = 3000.0 !0.0 !3000.0 ! [m] default = 0.0 + ! An effective length scale for restoring the tracer concentration at the + ! boundaries to externally imposed values when the flow is exiting the domain. +OBC_TRACER_RESERVOIR_LENGTH_SCALE_IN = 3.0E+04 !0.0 !3.0E+04 ! [m] default = 0.0 + ! An effective length scale for restoring the tracer concentration at the + ! boundaries to values from the interior when the flow is entering the domain. +RAMP_OBCS = False ! default = False +OBC_RAMP_TIMESCALE = 2.0 ! [days] default = 1.0 +OBC_RADIATION_MAX = 1.0 ! [nondim] default = 1.0 + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 55 ! [nondim] + ! The number of model layers. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential + ! temperature with pressure. + +! === module MOM_restart === +PARALLEL_RESTARTFILES = False ! [Boolean] default = False + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated +RESTART_CHECKSUMS_REQUIRED = False + +! === module MOM_tracer_flow_control === +USE_IDEAL_AGE_TRACER = True ! [Boolean] default = False + ! If true, use the ideal_age_example tracer package. + +! === module ideal_age_example === + +! === module MOM_coord_initialization === +COORD_CONFIG = "gprime" !"file" ! default = "none" + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +GINT = 0.0098 ! [m s-2] +!COORD_FILE = "layer_coord.nc" ! + ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. +REGRIDDING_COORDINATE_MODE = "Z*" !"HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. +ALE_COORDINATE_CONFIG = "FILE:ocean_vgrid.nc,dz" !"HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 7*2.0, 2*2.01, 2.02, 2.03, 2.05, 2.08, 2.11, 2.15, 2.21, 2.2800000000000002, 2.37, 2.48, 2.61, 2.77, 2.95, 3.17, 3.4299999999999997, 3.74, 4.09, 4.49, 4.95, 5.48, 6.07, 6.74, 7.5, 8.34, 9.280000000000001, 10.33, 11.49, 12.77, 14.19, 15.74, 17.450000000000003, 19.31, 21.35, 23.56, 25.97, 28.580000000000002, 31.41, 34.47, 37.77, 41.32, 45.14, 49.25, 53.65, 58.370000000000005, 63.42, 68.81, 74.56, 80.68, 87.21000000000001, 94.14, 101.51, 109.33, 117.62, 126.4, 135.68, 145.5, 155.87, 166.81, 178.35, 190.51, 203.31, 216.78, 230.93, 245.8, 261.42, 277.83 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 12.75, 23.25, 36.49, 52.480000000000004, 71.22, 92.71000000000001, 116.94000000000001, 143.92000000000002, 173.65, 206.13, 241.36, 279.33000000000004, 320.05000000000007, 363.5200000000001, 409.7400000000001, 458.7000000000001, 510.4100000000001, 564.8700000000001, 622.0800000000002, 682.0300000000002, 744.7300000000002, 810.1800000000003, 878.3800000000003, 949.3300000000004, 1023.0200000000004, 1099.4600000000005, 1178.6500000000005, 1260.5900000000006, 1345.2700000000007, 1432.7000000000007, 1522.8800000000008, 1615.8100000000009, 1711.490000000001, 1809.910000000001, 1911.080000000001, 2015.0000000000011, 2121.670000000001, 2231.080000000001, 2343.2400000000007, 2458.1500000000005, 2575.8100000000004, 2696.2200000000003, 2819.3700000000003, 2945.2700000000004, 3073.9200000000005, 3205.3200000000006, 3339.4600000000005, 3476.3500000000004, 3615.9900000000002, 3758.38, 3903.52, 4051.4, 4202.03, 4355.41, 4511.54, 4670.41, 4832.03, 4996.4, 5163.5199999999995, 5333.379999999999, 5505.989999999999, 5681.3499999999985, 5859.459999999998, 6040.319999999998, 6223.919999999998, 6410.269999999999, 6599.369999999999, 6791.219999999999, 6985.8099999999995, 7183.15, 7383.24, 7586.08, 7791.67, 8000.0 + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +TS_CONFIG = "file" ! + ! A string that determines how the initial tempertures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = "ocean_ts_ic.nc" ! + ! The initial condition file for temperature. + +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. + + +! === module MOM_initialize_layers_from_Z === +TEMP_SALT_Z_INIT_FILE = "ocean_ts_ic.nc" ! default = "temp_salt_z.nc" + ! The name of the z-space input file used to initialize temperatures (T) and + ! salinities (S). If T and S are not in the same file, TEMP_Z_INIT_FILE and + ! SALT_Z_INIT_FILE must be set. +!TEMP_Z_INIT_FILE = "" ! default = "" + ! The name of the z-space input file used to initialize temperatures, only. +!SALT_Z_INIT_FILE = "" ! default = "" + ! The name of the z-space input file used to initialize temperatures, only. +Z_INIT_FILE_PTEMP_VAR = "Temp" ! default = "ptemp" + ! The name of the potential temperature variable in TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "Salt" ! default = "salt" + ! The name of the salinity variable in SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. +Z_INIT_REMAP_GENERAL = True ! [Boolean] default = False + ! If false, only initializes to z* coordinates. + ! If true, allows initialization directly to general coordinates. +Z_INIT_REMAP_FULL_COLUMN = True ! [Boolean] default = True + ! If false, only reconstructs profiles for valid data points. + ! If true, inserts vanished layers below the valid data. +DEPRESS_INITIAL_SURFACE = True ! [Boolean] default = False + ! If true, depress the initial surface to avoid huge tsunamis when a large + ! surface pressure is applied. +SURFACE_HEIGHT_IC_FILE = "ocean_ssh_ic.nc" ! + ! The initial condition file for the surface height. +SURFACE_HEIGHT_IC_VAR = "ave_ssh" ! default = "SSH" + ! The initial condition variable for the surface height +VELOCITY_CONFIG = "file" +VELOCITY_FILE = "ocean_uv_ic.nc" + +! === module MOM_diag_mediator === +NUM_DIAG_COORDS = 2 ! default = 1 + ! The number of diagnostic vertical coordinates to use. For each coordinate, an + ! entry in DIAG_COORDS must be provided. +DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! + ! A list of string tuples associating diag_table modules to a coordinate + ! definition used for diagnostics. Each string is of the form + ! "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +DIAG_COORD_DEF_Z = "FILE:ocean_vgrid.nc,interfaces=zw" ! default = "WOA09" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. +MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. +MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 + ! A background energy source for MEKE. +MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to Kh for MEKE itself. +MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. +MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. +RESOLN_SCALED_KH = True ! [Boolean] default = False + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. +RESOLN_SCALED_KHTH = True ! [Boolean] default = False + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. +KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity +USE_STORED_SLOPES = True ! [Boolean] default = False + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. +INTERPOLATE_RES_FN = False ! [Boolean] default = True + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. +GILL_EQUATORIAL_LD = True ! [Boolean] default = False + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. + +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. +PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 + ! The turbulent Prandtl number applied to shear instability. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. +DRAG_BG_VEL = 0.01 ! [m s-1] default = 0.0 + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. +BBL_USE_EOS = True ! [Boolean] default = False + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. +BBL_THICK_MIN = 0.1 ! [m] default = 0.0 + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum + ! near-bottom viscosity. +KV = 1.0E-06 ! [m2 s-1] + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. +KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the bottom boundary layer. +KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the top boundary layer. + +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === +ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. +ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +AH_VEL_SCALE = 0.005 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = False ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. + +! === module MOM_vert_friction === +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. +! khs_testMAXVEL = 6.0 ! [m s-1] default = 3.0E+08 +MAXVEL = 3.0E+08 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity components are truncated. + +! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. +DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. +DT_BT_FILTER = 360 ! [sec or nondim] default = -0.25 + ! A time-scale over which the barotropic mode solutions are filtered, in seconds + ! if positive, or as a fraction of DT if negative. When used this can never be + ! take to be longer than 2*dt. Set this to 0 to apply no filtering. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. +BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = True ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. +! FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) +MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. + +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ + +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "ocean_tidal_amplitude.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. + +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix + +! === module MOM_geothermal === +GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. +GEOTHERMAL_FILE = "ocean_geothermal.nc" ! default = "" + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. +GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. + +! === module MOM_set_diffusivity === +BBL_MIXING_AS_MAX = False ! [Boolean] default = True + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. +USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. +SIMPLE_TKE_TO_KD = True ! [Boolean] default = False + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients +KD = 1.5E-05 ! [m2 s-1] + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 + ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. +KD_MAX = 0.1 ! [m2 s-1] default = -1.0 + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. +PRESSURE_DEPENDENT_FRAZIL = True ! [Boolean] default = False + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = "ocean_chla.nc" ! + ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. + +EPBL_VEL_SCALE_FACTOR = 0.5 ! [nondim] default = 1.0 + ! An overall nondimensional scaling factor for wT. Making this larger increases + ! the PBL diffusivity. + +! === module MOM_energetic_PBL === +ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. +USE_MLD_ITERATION = True ! [Boolean] default = False + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. +EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. +USE_LA_LI2016 = True ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement of mstar +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancementt of mstar +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === +PEN_SW_NBANDS = 3 ! default = 1 + ! The number of bands of penetrating shortwave radiation. + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers + +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + +! === module MOM_sum_output === +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. +ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. + +! === module ocean_model_init === + +! === module MOM_surface_forcing === +BUOY_CONFIG = "data_override" ! default = "zero" + ! The character string that indicates how buoyancy forcing is specified. Valid + ! options include (file), (zero), (linear), (USER), (BFB) and (NONE). +ARCHAIC_OMIP_FORCING_FILE = False ! [Boolean] default = True + ! If true, use the forcing variable decomposition from the old German OMIP + ! prescription that predated CORE. If false, use the variable groupings + ! available from MOM output diagnostics of forcing variables. +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. +CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 + ! The drag coefficient that applies to the tides. +WIND_CONFIG = "data_override" ! default = "zero" + ! The character string that indicates how wind forcing is specified. Valid + ! options include (file), (2gyre), (1gyre), (gyres), (zero), and (USER). +RESTOREBUOY = True ! [Boolean] default = False + ! If true, the buoyancy fluxes drive the model back toward some specified + ! surface state with a rate given by FLUXCONST. +LATENT_HEAT_FUSION = 3.34E+05 ! [J/kg] default = 3.34E+05 + ! The latent heat of fusion. +LATENT_HEAT_VAPORIZATION = 2.5E+06 ! [J/kg] default = 2.5E+06 + ! The latent heat of fusion. +!FLUXCONST = 0.5 ! [m day-1] default = 0.0 + ! The constant that relates the restoring surface fluxes to the relative surface + ! anomalies (akin to a piston velocity). Note the non-MKS units. +!FLUXCONST_T = 0.5 ! [m day-1] default = 0.5 + ! The constant that relates the restoring surface temperature flux to the + ! relative surface anomaly (akin to a piston velocity). Note the non-MKS units. +!FLUXCONST_S = 0.5 ! [m day-1] default = 0.5 + ! The constant that relates the restoring surface salinity flux to the relative + ! surface anomaly (akin to a piston velocity). Note the non-MKS units. +GUST_CONST = 0.0 ! [Pa] default = 0.0 + ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = True ! [Boolean] default = True + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity + +! These parameters are used in CORE mode but should not be used in +! the coupled model (CM4). +RESTORE_SALINITY = False ! [Boolean] default = False + ! If true, the coupled driver will add a globally-balanced + ! fresh-water flux that drives sea-surface salinity + ! toward specified values. +ADJUST_NET_FRESH_WATER_TO_ZERO = True ! [Boolean] default = False + ! If true, adjusts the net fresh-water forcing seen + ! by the ocean (including restoring) to zero. +FLUXCONST = 0.1667 !0.500 !0.1667 ! [m day-1] + ! The constant that relates the restoring surface fluxes + ! to the relative surface anomalies (akin to a piston + ! velocity). Note the non-MKS units. +SALT_RESTORE_FILE = "ocean_salt_restore.nc" !"salt_restore_correct.nc" ! default = "salt_restore.nc" + ! A file in which to find the surface salinity to use for restoring. +SALT_RESTORE_VARIABLE = "SALT" +SRESTORE_AS_SFLUX = True ! [Boolean] default = False + ! If true, the restoring of salinity is applied as a salt + ! flux instead of as a freshwater flux. +MAX_DELTA_SRESTORE = 5.0 ! [PSU or g kg-1] default = 999.0 + ! The maximum salinity difference used in restoring terms. +USE_NET_FW_ADJUSTMENT_SIGN_BUG = False ! [Boolean] default = True + ! If true, use the wrong sign for the adjustment to + ! the net fresh-water. + +! === module MOM_restart === + +! === module MOM_file_parser === diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 3bceb82f31..d48d1fb422 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -10,23 +10,16 @@ max_output_fields = @[MAX_OUTPUT_FIELDS] / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 6119ad7d21..95abe17265 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -10,23 +10,16 @@ max_output_fields = @[MAX_OUTPUT_FIELDS] / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index b96c803f80..6729ed1031 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -9,23 +9,16 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -76,11 +69,11 @@ deflate_level=1 mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. do_sat_adj = .false. diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index b0e1b47288..cea5817471 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -9,23 +9,16 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -111,7 +104,7 @@ deflate_level=1 lakefrac_threshold = @[LAKEFRAC_THRESHOLD] ! 0.15 lakedepth_threshold = @[LAKEDEPTH_THRESHOLD] ! 0.5 clm_lake_debug = .false. - + frac_ice = @[FRAC_ICE] ! false for flake, true for clm lake fhzero = 6 h2o_phys = .true. ldiag3d = .false. diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 7f52778e71..9ffeadd0e3 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -3,31 +3,22 @@ chksum_debug = .false. dycore_only = .false. ccpp_suite = '@[CCPP_SUITE]' - + / &diag_manager_nml prepend_date = .false. - -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 - -/ -&mpp_io_nml -shuffle=1 -deflate_level=1 / &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. - +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" / &fv_core_nml @@ -100,7 +91,7 @@ deflate_level=1 agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" - + / &cires_ugwp_nml @@ -115,7 +106,7 @@ deflate_level=1 knob_ugwp_dokdis = 1 knob_ugwp_ndx4lh = 1 knob_ugwp_version = 0 - launch_level = 54 + launch_level = 54 / &external_ic_nml @@ -124,7 +115,7 @@ deflate_level=1 gfs_dwinds = .true. checker_tr = .false. nt_checker = 0 - + / &gfs_physics_nml @@ -204,7 +195,7 @@ deflate_level=1 iau_delthrs = 6 iau_inc_files= @[IAU_INC_FILES] iau_drymassfixer = .false. - + / &gfdl_cloud_microphysics_nml @@ -256,12 +247,12 @@ deflate_level=1 mp_time = 150. reiflag = 2 - + / &interpolator_nml interp_method = 'conserve_great_circle' - + / &namsfc @@ -306,12 +297,12 @@ deflate_level=1 FvmxL = 99999 FSLPL = 99999 FABSL = 99999 - + / &fv_grid_nml grid_file = 'INPUT/grid_spec.nc' - + / &nam_stochy @@ -333,8 +324,8 @@ deflate_level=1 sppt_logit = .true. sppt_sfclimit = .true. use_zmtnblck = .true. - + / &nam_sfcperts - + / diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN index 5f72a8355c..247cca85e8 100644 --- a/tests/parm/control_gfsv17.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -10,23 +10,16 @@ max_output_fields = @[MAX_OUTPUT_FIELDS] / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index b9a03b7df4..6082aa789b 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -9,23 +9,16 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN deleted file mode 100644 index 91016fb8c3..0000000000 --- a/tests/parm/control_ugwpv1.nml.IN +++ /dev/null @@ -1,326 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = 5111 - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = 2,0,0,0,0 - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - do_sppt = .false. - do_shum = .false. - do_skeb = .false. - ttendlim = 0.005 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. - min_lakeice = 0.15 - min_seaice = 0.15 - gwd_opt = 1 - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v1_w_gsldrag = .true. - do_ugwp_v1_orog_only = .false. - do_gsl_drag_ls_bl = .false. - do_gsl_drag_ss = .false. - do_gsl_drag_tofd = .false. - do_ugwp_v0 = .false. - do_ugwp_v0_orog_only = .false. - -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' - FNMSKH = 'global_slmask.t1534.3072.1536.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = @[FNABSC] - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = 1 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = 0 - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN deleted file mode 100644 index 4e6f365376..0000000000 --- a/tests/parm/cpt.nml.IN +++ /dev/null @@ -1,334 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = @[NPZ] - nudge_qv = .false. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .true. -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - use_ufo = .true. - pre_rad = .false. - crtrh = 0.93,0.90,0.95 - imp_physics = 10 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = -1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - oz_phys = .false. - oz_phys_2015 = .true. - debug = .false. - ras = .false. - cscnv = .true. - do_shoc = .false. - do_aw = .true. - shoc_cld = .false. - h2o_phys = .true. - shcnvcw = .false. - xkzm_h = 0.5 - xkzm_m = 0.5 - xkzm_s = 1.0 - nstf_name = @[NSTF_NAME] - nst_anl = .true. - ccwf = 1.0,1.0 - dlqf = 0.25,0.05 - mg_dcs = 200.0 - mg_ts_auto_ice = 180.0,900.0 - mg_qcvar = 1.0 - fprcp = 2 - pdfflag = 4 - iccn = 0 - mg_do_graupel = .true. - mg_do_hail = .false. - do_sb_physics = .true. - mg_do_ice_gmao = .false. - mg_do_liq_liu = .true. - cs_parm = 8.0,4.0,1.0e3,3.5e3,20.0,1.0,0.0,1.0,0.6,0.0 - shoc_parm = 7000.0,1.0,2.0,0.7,-999.0 - ctei_rm = 0.60,0.23 - max_lon = 8000 - max_lat = 4000 - rhcmax = 0.9999999 - effr_in = .true. - ltaerosol = .false. - lradar = .false. - cplflx = .false. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1500. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSOCC = @[FNSOCC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.TRUE., - SPPT_SFCLIMIT=.TRUE., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index e81a543ffa..b01ba5f205 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -9,12 +9,6 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 3000000, @@ -25,6 +19,10 @@ grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -75,11 +73,11 @@ mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. consv_am = .false. diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index f77a65c383..3f77e6fd0f 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -9,12 +9,6 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 3000000, @@ -25,6 +19,10 @@ grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -75,11 +73,11 @@ mountain = @[MOUNTAIN] ncep_ic = .false. d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 13 + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. consv_am = .false. diff --git a/tests/parm/data_table_template b/tests/parm/data_table_template deleted file mode 100644 index 4ca9128415..0000000000 --- a/tests/parm/data_table_template +++ /dev/null @@ -1 +0,0 @@ -"OCN", "runoff", "runoff", "./INPUT/@[FRUNOFF]", "none" , 1.0 diff --git a/tests/parm/datm.streams.IN b/tests/parm/datm.streams.IN index 97c4b94636..f6ec3e1b16 100644 --- a/tests/parm/datm.streams.IN +++ b/tests/parm/datm.streams.IN @@ -9,7 +9,7 @@ yearFirst01: @[SYEAR] yearLast01: @[SYEAR] yearAlign01: @[SYEAR] stream_vectors01: "Sa_u:Sa_v" -stream_mesh_file01: @[MESH_ATM] +stream_mesh_file01: "INPUT/@[MESH_ATM]" stream_lev_dimname01: null stream_data_files01: @[stream_files] stream_data_variables01: "slmsksfc Sa_mask" "DSWRF Faxa_swdn" "DLWRF Faxa_lwdn" "vbdsf_ave Faxa_swvdr" "vddsf_ave Faxa_swvdf" "nbdsf_ave Faxa_swndr" "nddsf_ave Faxa_swndf" "u10m Sa_u10m" "v10m Sa_v10m" "hgt_hyblev1 Sa_z" "psurf Sa_pslv" "tmp_hyblev1 Sa_tbot" "spfh_hyblev1 Sa_shum" "ugrd_hyblev1 Sa_u" "vgrd_hyblev1 Sa_v" "q2m Sa_q2m" "t2m Sa_t2m" "pres_hyblev1 Sa_pbot" "precp Faxa_rain" "fprecp Faxa_snow" diff --git a/tests/parm/datm.streams.era5.IN b/tests/parm/datm.streams.era5.IN new file mode 100644 index 0000000000..04e8050617 --- /dev/null +++ b/tests/parm/datm.streams.era5.IN @@ -0,0 +1,15 @@ +stream_info: era5.01 +taxmode01: limit +mapalgo01: redist +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: 3600 +yearFirst01: @[SDATE] +yearLast01: @[EDATE] +yearAlign01: @[SDATE] +stream_vectors01: null +stream_mesh_file01: "INPUT/@[MESH_ATM_DATA]" +stream_lev_dimname01: null +stream_data_files01: @[DATA_ATM01] +stream_data_variables01: "temperature Sa_tbot" "specific_humidity Sa_shum" "surface_pressure Sa_pslv" "surface_pressure Sa_pbot" "downward_solar Faxa_swdn" "downward_longwave Faxa_lwdn" "wind_speed Sa_wspd" "precipitation Faxa_rain" diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index 267dce2bd1..1b38eb9a5f 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -7,7 +7,3 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] fhrot: @[FHROT] -nfhout: @[NFHOUT] -nfhmax_hf: -1 -nfhout_hf: 3 -nsout: -1 diff --git a/tests/parm/datm_in b/tests/parm/datm_in.IN similarity index 70% rename from tests/parm/datm_in rename to tests/parm/datm_in.IN index cf313b1e4b..699ce7750a 100644 --- a/tests/parm/datm_in +++ b/tests/parm/datm_in.IN @@ -6,9 +6,10 @@ flds_presaero = .false. flds_wiso = .false. iradsw = 1 - model_maskfile = "@[MESH_ATM]" - model_meshfile = "@[MESH_ATM]" + model_maskfile = "INPUT/@[MESH_ATM]" + model_meshfile = "INPUT/@[MESH_ATM]" nx_global = @[ATM_NX_GLB] ny_global = @[ATM_NY_GLB] restfilm = "null" + export_all = @[EXPORT_ALL] / diff --git a/tests/parm/diag_table/diag_additional_ldiag3d_ugwp b/tests/parm/diag_table/diag_additional_ldiag3d_ugwp new file mode 100644 index 0000000000..0391132f7a --- /dev/null +++ b/tests/parm/diag_table/diag_additional_ldiag3d_ugwp @@ -0,0 +1,38 @@ +# Diagnostic variables for Unified Gravity Wave Physics (UGWP) +"gfs_phys", "dws3dt_ogw", "dws3dt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_obl", "dws3dt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_oss", "dws3dt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_ofd", "dws3dt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ogw", "ldu3dt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_obl", "ldu3dt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_oss", "ldu3dt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ofd", "ldu3dt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ngw", "ldu3dt_ngw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldv3dt_ngw", "ldv3dt_ngw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldt3dt_ngw", "ldt3dt_ngw", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "dudt_ogw", "dudt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_ogw", "dvdt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_obl", "dudt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_obl", "dvdt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_oss", "dudt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_oss", "dvdt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_ofd", "dudt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_ofd", "dvdt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_ogwcol", "du_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_ogwcol", "dv_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_oblcol", "du_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_oblcol", "dv_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_osscol", "du_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_osscol", "dv_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_ofdcol", "du_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_ofdcol", "dv_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_ogwcol", "du3_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_ogwcol", "dv3_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_oblcol", "du3_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_oblcol", "dv3_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_osscol", "du3_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_osscol", "dv3_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_ofdcol", "du3_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_ofdcol", "dv3_ofdcol", "fv3_history2d", "all", .false., "none", 2 + diff --git a/tests/parm/diag_table/diag_table_cpld_template b/tests/parm/diag_table/diag_table_cpld.IN similarity index 79% rename from tests/parm/diag_table/diag_table_cpld_template rename to tests/parm/diag_table/diag_table_cpld.IN index 609f806054..002b47673e 100644 --- a/tests/parm/diag_table/diag_table_cpld_template +++ b/tests/parm/diag_table/diag_table_cpld.IN @@ -4,64 +4,65 @@ "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", "1901 1 1 0 0 0" -"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/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_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 # ### # FV3 variabls needed for NGGPS evaluation @@ -75,6 +76,7 @@ "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", "omga", "omga", "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 diff --git a/tests/parm/diag_table/diag_table_p8_template b/tests/parm/diag_table/diag_table_cpld_sfs.IN similarity index 78% rename from tests/parm/diag_table/diag_table_p8_template rename to tests/parm/diag_table/diag_table_cpld_sfs.IN index 609f806054..9d82b7f0e7 100644 --- a/tests/parm/diag_table/diag_table_p8_template +++ b/tests/parm/diag_table/diag_table_cpld_sfs.IN @@ -4,64 +4,65 @@ "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", "1901 1 1 0 0 0" -"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/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_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 # ### # FV3 variabls needed for NGGPS evaluation @@ -73,8 +74,7 @@ "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", "omga", "omga", "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 diff --git a/tests/parm/diag_table/diag_table_gfsv16_3d_soil b/tests/parm/diag_table/diag_table_gfsv16_3d_soil new file mode 100644 index 0000000000..cc4a869f6d --- /dev/null +++ b/tests/parm/diag_table/diag_table_gfsv16_3d_soil @@ -0,0 +1,210 @@ +20210322.06Z.C96.64bit.non-mono +2021 03 22 06 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" + +# +### +# 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 + +"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", "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", "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_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", "soilt", "soilt" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw", "soilw" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soill", "soill", "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 + +#============================================================================================= +# +#====> 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/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index 802adbdc4b..d3ad4afbb5 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -13,6 +13,63 @@ ufs.hafs #"maxmin2D", 1, "hours", 1, "hours", "time" # +###################### +"ocn%4yr%2mo%2dy%2hr", 3, "hours", 1, "hours", "time", 3, "hours" +#"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 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",.false.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.false.,"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",.false.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 #======================= # ATMOSPHERE DIAGNOSTICS #======================= diff --git a/tests/parm/diag_table/diag_table_p8_gocart_micro b/tests/parm/diag_table/diag_table_p8_gocart_micro index c9d938dc2b..566d265e05 100644 --- a/tests/parm/diag_table/diag_table_p8_gocart_micro +++ b/tests/parm/diag_table/diag_table_p8_gocart_micro @@ -4,64 +4,65 @@ "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", "1901 1 1 0 0 0" -"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/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_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/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 + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/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 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 # ### # FV3 variabls needed for NGGPS evaluation @@ -166,8 +167,8 @@ "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", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "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 diff --git a/tests/parm/diag_table/diag_table_template b/tests/parm/diag_table/diag_table_template index 37f7765f67..75ee3bd7a3 100644 --- a/tests/parm/diag_table/diag_table_template +++ b/tests/parm/diag_table/diag_table_template @@ -75,6 +75,7 @@ "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", "omga", "omga", "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 diff --git a/tests/parm/diag_table/diag_table_thompson b/tests/parm/diag_table/diag_table_thompson index 588b58b98f..8e2b41b279 100644 --- a/tests/parm/diag_table/diag_table_thompson +++ b/tests/parm/diag_table/diag_table_thompson @@ -102,6 +102,7 @@ "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", "omga", "omga", "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 diff --git a/tests/parm/diag_table/diag_table_wam b/tests/parm/diag_table/diag_table_wam index 4f55f96e4c..273fc78ee1 100644 --- a/tests/parm/diag_table/diag_table_wam +++ b/tests/parm/diag_table/diag_table_wam @@ -16,12 +16,17 @@ "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", "spfo2", "spfo2", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "spfo", "spfo", "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", "spo3", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo2", "spfo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo", "spfo", "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", "omga", "omga", "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 @@ -69,13 +74,6 @@ "gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "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", "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 @@ -181,7 +179,19 @@ "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 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# "gfs_phys", "cldfra2d", "cldfra2d", "fv3_history2d", "all", .false., "none", 2 +# "gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cldfra", "cldfra", "fv3_history", "all", .false., "none", 2 #============================================================================================= # #====> This file can be used with diag_manager/v2.0a (or higher) <==== diff --git a/tests/parm/docn_in b/tests/parm/docn_in.IN similarity index 62% rename from tests/parm/docn_in rename to tests/parm/docn_in.IN index b31b080424..dd399770dd 100644 --- a/tests/parm/docn_in +++ b/tests/parm/docn_in.IN @@ -1,11 +1,11 @@ &docn_nml datamode = "@[ocn_datamode]" - model_maskfile = "@[ocn_mesh]" - model_meshfile = "@[ocn_mesh]" + model_maskfile = "INPUT/@[MESH_OCN]" + model_meshfile = "INPUT/@[MESH_OCN]" nx_global = @[ocn_nx_global] ny_global = @[ocn_ny_global] restfilm = "null" sst_constant_value = -1.0 skip_restart_read = true - import_data_fields = none + import_data_fields = "none" / diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_ufs.yaml similarity index 85% rename from tests/parm/fd_nems.yaml rename to tests/parm/fd_ufs.yaml index 4b8c276331..c0189f0bdf 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_ufs.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 #----------------------------------- @@ -54,64 +72,67 @@ #----------------------------------- # - standard_name: Faxa_swdn - alias: mean_down_sw_flx + alias: inst_down_sw_flx canonical_units: W m-2 description: atmosphere export - mean downward SW heat flux # - standard_name: Faxa_lwdn - alias: mean_down_lw_flx + alias: inst_down_lw_flx canonical_units: W m-2 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 # - standard_name: Faxa_rainl + alias: inst_prec_rate_large canonical_units: kg m-2 s-1 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 # - standard_name: Faxa_snowc + alias: inst_fprec_rate_conv canonical_units: kg m-2 s-1 description: atmosphere export # - standard_name: Faxa_snowl + alias: inst_fprec_rate_large canonical_units: kg m-2 s-1 description: atmosphere export # - standard_name: Faxa_swnet - alias: mean_net_sw_flx + alias: inst_net_sw_flx canonical_units: W m-2 description: atmosphere export # - standard_name: Faxa_swndf - alias: mean_down_sw_ir_dif_flx + alias: inst_down_sw_ir_dif_flx canonical_units: W m-2 description: atmosphere export - mean surface downward nir diffuse flux # - standard_name: Faxa_swndr - alias: mean_down_sw_ir_dir_flx + alias: inst_down_sw_ir_dir_flx canonical_units: W m-2 description: atmosphere export - mean surface downward nir direct flux # - standard_name: Faxa_swvdf - alias: mean_down_sw_vis_dif_flx + alias: inst_down_sw_vis_dif_flx canonical_units: W m-2 description: atmosphere export - mean surface downward uv+vis diffuse flux # - standard_name: Faxa_swvdr - alias: mean_down_sw_vis_dir_flx + alias: inst_down_sw_vis_dir_flx canonical_units: W m-2 description: atmosphere export - mean surface downward uv+visvdirect flux # @@ -176,16 +197,6 @@ canonical_units: m s-1 description: atmosphere export - bottom layer meridional wind # - - standard_name: Sa_ua - alias: inst_zonal_wind_height_lowest_from_phys - canonical_units: m s-1 - description: atmosphere export - bottom layer zonal wind - # - - standard_name: Sa_va - alias: inst_merid_wind_height_lowest_from_phys - canonical_units: m s-1 - description: atmosphere export - bottom layer meridional wind - # - standard_name: Sa_wspd alias: inst_wind_speed_height_lowest canonical_units: m s-1 @@ -202,21 +213,40 @@ description: atmosphere export - topographic height # - standard_name: Faxa_taux - alias: mean_zonal_moment_flx_atm + alias: inst_zonal_moment_flx + - standard_name: Faxa_taux + alias: inst_zonal_moment_flx_atm canonical_units: N m-2 description: atmosphere export- zonal component of momentum flux # - standard_name: Faxa_tauy - alias: mean_merid_moment_flx_atm + alias: inst_merid_moment_flx + - standard_name: Faxa_tauy + alias: inst_merid_moment_flx_atm canonical_units: N m-2 description: atmosphere export - meridional component of momentum flux # + - standard_name: Faxa_lwnet + canonical_units: W m-2 + alias: inst_net_lw_flx + description: atmosphere export - mean net longwave flux from atm + # + - standard_name: Faxa_sen + canonical_units: W m-2 + alias: inst_sensi_heat_flx + description: atmosphere export - sensible heat flux + # + - standard_name : Faxa_evap + canonical_units: kg m-2 s-1 + alias: inst_evap_rate + description: atmosphere export - latent heat flux conversion + # - standard_name: Faxx_evap canonical_units: kg m-2 s-1 description: atmosphere import # - standard_name: Faxa_lat - alias: mean_laten_heat_flx + alias: inst_laten_heat_flx canonical_units: W m-2 description: atmosphere export - latent heat flux # @@ -318,22 +348,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 +496,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 +613,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 +703,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,13 +735,19 @@ # section: atmosphere fields that need to be defined but are not used #----------------------------------- # - - standard_name: inst_down_lw_flx + - 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: mean_down_lw_flx canonical_units: W m-2 - standard_name: inst_net_lw_flx canonical_units: W m-2 - - standard_name: inst_down_sw_flx + - standard_name: mean_down_sw_flx canonical_units: W m-2 - - standard_name: inst_net_sw_flx + - standard_name: mean_net_sw_flx canonical_units: W m-2 - standard_name: inst_net_sw_ir_dir_flx canonical_units: W m-2 @@ -745,19 +757,23 @@ canonical_units: W m-2 - standard_name: inst_net_sw_vis_dif_flx canonical_units: W m-2 - - standard_name: inst_down_sw_ir_dif_flx + - standard_name: mean_down_sw_ir_dif_flx canonical_units: W m-2 - - standard_name: inst_down_sw_ir_dir_flx + - standard_name: mean_down_sw_ir_dir_flx canonical_units: W m-2 - - standard_name: inst_down_sw_vis_dif_flx + - standard_name: mean_down_sw_vis_dif_flx canonical_units: W m-2 - - standard_name: inst_down_sw_vis_dir_flx + - standard_name: mean_down_sw_vis_dir_flx canonical_units: W m-2 - standard_name: inst_surface_height canonical_units: m - - standard_name: inst_zonal_moment_flx + - standard_name: mean_zonal_moment_flx_atm + canonical_units: N m-2 + - standard_name: mean_merid_moment_flx_atm canonical_units: N m-2 - - standard_name: inst_merid_moment_flx + - standard_name: inst_zonal_moment_flx_atm + canonical_units: N m-2 + - standard_name: inst_merid_moment_flx_atm canonical_units: N m-2 - standard_name: inst_sensi_heat_flx canonical_units: N m-2 @@ -828,10 +844,6 @@ canonical_units: tbd - standard_name: inst_surface_roughness canonical_units: tbd - - standard_name: inst_zonal_moment_flx - canonical_units: N m-2 - - standard_name: inst_merid_moment_flx - canonical_units: N m-2 - standard_name: inst_laten_heat_flx canonical_units: W m-2 - standard_name: inst_sensi_heat_flx @@ -1043,44 +1055,77 @@ # - standard_name: u canonical_units: m s-1 + alias: u_component_of_native_D_grid_wind # - standard_name: v canonical_units: m s-1 + alias: v_component_of_native_D_grid_wind # - standard_name: ua canonical_units: m s-1 + alias: eastward_wind # - standard_name: va canonical_units: m s-1 + alias: northward_wind # - standard_name: t canonical_units: K + alias: air_temperature # - standard_name: delp canonical_units: Pa + alias: air_pressure_thickness + # + - standard_name: ps + canonical_units: Pa + alias: surface_pressure # - standard_name: sphum canonical_units: kg kg-1 + alias: specific_humidity # - standard_name: ice_wat canonical_units: kg kg-1 + alias: cloud_liquid_ice # - standard_name: liq_wat canonical_units: kg kg-1 + alias: cloud_liquid_water + # + - standard_name: rainwat + canonical_units: kg kg-1 + alias: rain_water + # + - standard_name: snowwat + canonical_units: kg kg-1 + alias: snow_water + # + - standard_name: graupel + canonical_units: kg kg-1 + alias: graupel # - standard_name: o3mr canonical_units: kg kg-1 + alias: ozone_mass_mixing_ratio # - standard_name: phis canonical_units: m2 s-2 + alias: sfc_geopotential_height_times_grav # - standard_name: u_srf canonical_units: m s-1 + alias: surface_eastward_wind # - standard_name: v_srf canonical_units: m s-1 + alias: surface_northward_wind # # + - standard_name: t2m + canonical_units: K + alias: surface_temperature + # - standard_name: slmsk canonical_units: flag description: landmask sea/land/ice=0/1/2 @@ -1088,6 +1133,7 @@ - standard_name: weasd canonical_units: mm description: water equiv of acc snow depth over land and sea ice + alias: sheleg # - standard_name: tsea canonical_units: K @@ -1101,9 +1147,11 @@ canonical_units: index description: soil type # - - standard_name: vfrac + - standard_name: Sa_vfrac canonical_units: frac description: areal fractional cover of green vegetation + - standard_name: Sa_vfrac + alias: vfrac # - standard_name: stc canonical_units: K @@ -1121,9 +1169,11 @@ canonical_units: ratio description: fm at 10m - Ratio of sigma level 1 wind and 10m wind # - - standard_name: zorl + - standard_name: Sa_zorl canonical_units: cm description: composite surface roughness in cm + - standard_name: Sa_zorl + alias: zorl # - standard_name: t2m canonical_units: K @@ -1134,6 +1184,7 @@ #----------------------------------- # - standard_name: Sl_lfrac + alias: land_fraction canonical_units: 1 description: land export # @@ -1149,12 +1200,67 @@ canonical_units: 1 description: AOD # + - standard_name: Sl_sfrac + alias: inst_snow_area_fraction_lnd + canonical_units: 1 + description: land export + # + - standard_name: Sl_tref + alias: inst_temp_height2m_lnd + canonical_units: K + description: mediator export to glc - no levation classes + # + - standard_name: Sl_qref + alias: inst_spec_humid_height2m_lnd + canonical_units: kg kg-1 + description: land export + # + - standard_name: Sl_q + alias: inst_spec_humid_lnd + canonical_units: kg kg-1 + description: land export + # - standard_name: Fall_lat - alias: mean_laten_heat_flx_lnd_to_atm - canonical_units: W m-2 + alias: inst_laten_heat_flx_lnd + canonical_units: kg kg-1 m s-1 description: land export to atm - atm/lnd latent heat flux # - standard_name: Fall_sen - alias: mean_sensi_heat_flx_lnd_to_atm - canonical_units: W m-2 + alias: inst_sensi_heat_flx_lnd + canonical_units: K m s-1 description: land export to atm - atm/lnd sensible heat flux + # + - standard_name: Fall_evap + alias: inst_potential_laten_heat_flx_lnd + canonical_units: W m-2 + description: land export + # + - standard_name: Fall_gflx + alias: inst_upward_heat_flux_lnd + canonical_units: W m-2 + description: land export + # + - standard_name: Fall_roff + alias: inst_runoff_rate_lnd + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Fall_soff + alias: inst_subsurface_runoff_rate_lnd + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Sl_cmm + alias: inst_drag_wind_speed_for_momentum + canonical_units: m s-1 + description: land export + # + - standard_name: Sl_chh + alias: inst_drag_mass_flux_for_heat_and_moisture + canonical_units: kg m-2 s-1 + description: land export + # + - standard_name: Sl_zvfun + alias: inst_func_of_roughness_length_and_vfrac + canonical_units: 1 + description: land export diff --git a/tests/parm/field_table/field_table_thompson_aero_tke_progsigma b/tests/parm/field_table/field_table_thompson_aero_tke_progsigma new file mode 100644 index 0000000000..b27b504b50 --- /dev/null +++ b/tests/parm/field_table/field_table_thompson_aero_tke_progsigma @@ -0,0 +1,70 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic sigmab tracer + "TRACER", "atmos_mod", "sigmab" + "longname", "sigma fraction" + "units", "fraction" + "profile_type", "fixed", "surface_value=0.0" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_wam b/tests/parm/field_table/field_table_wam_noaer similarity index 68% rename from tests/parm/field_table/field_table_wam rename to tests/parm/field_table/field_table_wam_noaer index 7fecc850c4..acf347c027 100644 --- a/tests/parm/field_table/field_table_wam +++ b/tests/parm/field_table/field_table_wam_noaer @@ -10,49 +10,59 @@ "longname", "cloud water mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / -# 3 prognostic cloud water mixing ratio +# 3 prognostic rain water mixing ratio "TRACER", "atmos_mod", "rainwat" "longname", "rain mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / -# 4 prognostic cloud water mixing ratio +# 4 prognostic ice water mixing ratio "TRACER", "atmos_mod", "ice_wat" "longname", "cloud ice mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / -# 5 prognostic cloud water mixing ratio +# 5 prognostic snow water mixing ratio "TRACER", "atmos_mod", "snowwat" "longname", "snow mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / -# 6 prognostic cloud water mixing ratio +# 6 prognostic graupel water mixing ratio "TRACER", "atmos_mod", "graupel" "longname", "graupel mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / -# 7 prognostic ozone mixing ratio tracer +# 9 prognostic ozone mixing ratio tracer "TRACER", "atmos_mod", "spo3" "longname", "ozone mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e15" / -# 8 prognostic ozone mixing ratio tracer +# 10 prognostic ozone mixing ratio tracer "TRACER", "atmos_mod", "spo" "longname", "oxygen atom mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e10" / -# 9 prognostic ozone mixing ratio tracer +# 11 prognostic ozone mixing ratio tracer "TRACER", "atmos_mod", "spo2" "longname", "oxygen mixing ratio" "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e15" / -# 10 prognostic subgrid scale turbulent kinetic energy +# 7 prognostic cloud ice water number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# 8 prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# 12 prognostic subgrid scale turbulent kinetic energy "TRACER", "atmos_mod", "sgs_tke" "longname", "subgrid scale turbulent kinetic energy" "units", "m2/s2" "profile_type", "fixed", "surface_value=0.0" / -# 11 # non-prognostic cloud amount - "TRACER", "atmos_mod", "cld_amt" - "longname", "cloud amount" - "units", "1" - "profile_type", "fixed", "surface_value=0.0" / +# 13 # non-prognostic cloud amount +# "TRACER", "atmos_mod", "cld_amt" +# "longname", "cloud amount" +# "units", "1" +# "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/global_control.nml.IN similarity index 75% rename from tests/parm/cpld_control.nml.IN rename to tests/parm/global_control.nml.IN index db846ff05a..94559bfd9f 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -10,23 +10,16 @@ max_output_fields = @[MAX_OUTPUT_FIELDS] / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = @[DOMAINS_STACK_SIZE] print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = 'netcdf4' +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -44,22 +37,24 @@ deflate_level=1 n_sponge = 42 nudge_qv = .true. nudge_dz = .false. - tau = 10.0 - rf_cutoff = 7.5e2 + tau = 0.0 + fast_tau_w_sec = 0.2 + rf_cutoff = 10. d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. + kord_tm = @[KORD_TM] + kord_mt = @[KORD_XX] + kord_wz = @[KORD_XX] + kord_tr = @[KORD_XX] + hydrostatic = @[HYDROSTATIC] phys_hydrostatic = .false. use_hydro_pressure = .false. + pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] beta = 0. a_imp = 1. p_fac = 0.1 k_split = 2 - n_split = 6 + n_split = 5 nwat = 6 na_init = @[NA_INIT] d_ext = 0. @@ -72,21 +67,21 @@ deflate_level=1 vtdm4 = 0.02 delt_max = 0.002 ke_bg = 0. - do_vort_damp = .true. + do_vort_damp = @[DO_VORT_DAMP] external_ic = @[EXTERNAL_IC] external_eta = .true. gfs_phil = .false. nggps_ic = @[NGGPS_IC] mountain = @[MOUNTAIN] ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 + d_con = @[D_CON] + hord_mt = @[HORD_XX] + hord_vt = @[HORD_XX] + hord_tm = @[HORD_XX] + hord_dp = @[HORD_DP] + hord_tr = @[HORD_TR] adjust_dry_mass = .false. - dry_mass=98320.0 + dry_mass = 98320.0 consv_te = 1. do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. @@ -118,8 +113,8 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = @[IMP_PHYSICS] - iovr = 3 + imp_physics = @[IMP_PHYSICS] + iovr = @[IOVR] ltaerosol = .false. lradar = .false. ttendlim = -999 @@ -128,7 +123,7 @@ deflate_level=1 decfl = @[DECFL] oz_phys = .false. oz_phys_2015 = .true. - lsoil_lsm = 4 + lsoil_lsm = 17 do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = .false. icloud_bl = 1 @@ -144,9 +139,11 @@ deflate_level=1 do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gwd_opt_psl = @[DO_GWD_OPT_PSL] + psl_gwd_dx_factor = @[PSL_GWD_DX_FACTOR] do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = 0.15 + min_lakeice = @[MIN_LAKEICE] min_seaice = @[MIN_SEAICE] use_cice_alb = @[USE_CICE_ALB] pdfcld = .false. @@ -155,7 +152,7 @@ deflate_level=1 ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] - icliq_sw = 2 + icliq_sw = @[ICLIQ_SW] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -178,12 +175,16 @@ deflate_level=1 imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] ras = @[RAS] cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 isot = 1 - lsoil = 4 + lsoil_input = 4 + zsoil_input = 0.1,0.4,1.,2. lsm = @[LSM] iopt_dveg = @[IOPT_DVEG] iopt_crs = @[IOPT_CRS] @@ -199,6 +200,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = @[IOPT_STC] + zsoil = 0.02,0.06,0.12,0.20,0.32,0.48,0.68,0.92,1.2,1.52,1.88,2.28,2.72,3.26,3.9,4.64,5.48 debug = .false. nstf_name = @[NSTF_NAME] nst_anl = .true. @@ -225,6 +227,10 @@ deflate_level=1 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] @@ -233,6 +239,7 @@ deflate_level=1 cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] cpllnd = @[CPLLND] + cpllnd2atm = @[CPLLND2ATM] do_ca = @[DO_CA] ca_global = @[CA_GLOBAL] ca_sgs = @[CA_SGS] @@ -250,18 +257,29 @@ deflate_level=1 / &cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - launch_level = 54 + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This is only for UGWP v0 +@[HIDE_UGWPV0] launch_level = 54 + ! These are only for UGWP v1 +@[HIDE_UGWPV1] knob_ugwp_palaunch = 275.0e2 +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] +@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 +@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 +@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 +@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 +@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' / &gfdl_cloud_microphysics_nml @@ -285,12 +303,12 @@ deflate_level=1 tau_l2v = 225. tau_v2l = 150. tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water + rthresh = 10.e-6 ! This is a key parameter for cloud water dw_land = 0.16 dw_ocean = 0.10 ql_gen = 1.0e-3 ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 + qi0_crt = 8.0e-5 qs0_crt = 1.0e-3 tau_i2s = 1000. c_psaci = 0.05 @@ -319,14 +337,14 @@ deflate_level=1 / &namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] FNALBC = @[FNALBC] FNALBC2 = @[FNALBC2] - FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNAISC = @[FNAISC] FNTG3C = @[FNTG3C] FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] @@ -341,12 +359,12 @@ deflate_level=1 FNVMXC = @[FNVMXC] FNSLPC = @[FNSLPC] FNABSC = @[FNABSC] - LDEBUG =.false. + LDEBUG = .false. FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 LANDICE = @[LANDICE] - FTSFS = 90 + FTSFS = @[FTSFS] FAISL = 99999 FAISS = 99999 FSNOL = 99999 @@ -372,17 +390,17 @@ deflate_level=1 &nam_sfcperts lndp_type = @[LNDP_TYPE] lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] lndp_var_list = @[LNDP_VAR_LIST] lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml - output_directory = 'MOM6_OUTPUT/', + output_directory = '@[MOM6_OUTPUT_DIR]', input_filename = '@[MOM6_RESTART_SETTING]' restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', + restart_output_dir = '@[MOM6_RESTART_DIR]' parameter_filename = 'INPUT/MOM_input', 'INPUT/MOM_override'/ diff --git a/tests/parm/global_dice.streams.IN b/tests/parm/global_dice.streams.IN new file mode 100644 index 0000000000..96929ec420 --- /dev/null +++ b/tests/parm/global_dice.streams.IN @@ -0,0 +1,15 @@ +stream_info: cplhist01 +taxmode01: extend +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.0E30 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: "INPUT/@[MESH_ICE]" +stream_lev_dimname01: null +stream_data_files01: "@[stream_files_dice]" +stream_data_variables01: "iceImp_Si_ifrac Si_ifrac" "iceImp_Si_imask Si_imask" "iceImp_Faii_lat Faii_lat" "iceImp_Faii_sen Faii_sen" "iceImp_Faii_lwup Faii_lwup" "iceImp_Faii_evap Faii_evap" "iceImp_Faii_taux Faii_taux" "iceImp_Faii_tauy Faii_tauy" "iceImp_Si_vice Si_vice" "iceImp_Si_vsno Si_vsno" "iceImp_Si_t Si_t" "iceImp_Si_avsdr Si_avsdr" "iceImp_Si_avsdf Si_avsdf" "iceImp_Si_anidr Si_anidr" "iceImp_Si_anidf Si_anidf" diff --git a/tests/parm/global_dice_in.IN b/tests/parm/global_dice_in.IN new file mode 100644 index 0000000000..2b896b9ff8 --- /dev/null +++ b/tests/parm/global_dice_in.IN @@ -0,0 +1,13 @@ +&dice_nml + datamode = "@[ice_datamode]" + model_maskfile = "INPUT/@[MESH_ICE]" + model_meshfile = "INPUT/@[MESH_ICE]" + nx_global = @[ice_nx_global] + ny_global = @[ice_ny_global] + restfilm = "null" + flux_swpf = 0.0 + flux_Qmin = 0.0 + flux_Qacc = false + flux_Qacc0 = 0.0 + export_all = false +/ diff --git a/tests/parm/global_docn.streams.IN b/tests/parm/global_docn.streams.IN new file mode 100644 index 0000000000..0cacc9bbea --- /dev/null +++ b/tests/parm/global_docn.streams.IN @@ -0,0 +1,15 @@ +stream_info: cplhist01 +taxmode01: extend +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.0E30 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: "INPUT/@[MESH_OCN]" +stream_lev_dimname01: null +stream_data_files01: "@[stream_files_docn]" +stream_data_variables01: "ocnImp_So_t So_t" "ocnImp_So_omask So_omask" diff --git a/tests/parm/global_docn_in.IN b/tests/parm/global_docn_in.IN new file mode 100644 index 0000000000..9d393a1ba7 --- /dev/null +++ b/tests/parm/global_docn_in.IN @@ -0,0 +1,12 @@ +&docn_nml + datamode = "@[ocn_datamode]" + model_maskfile = "INPUT/@[MESH_OCN]" + model_meshfile = "INPUT/@[MESH_OCN]" + nx_global = @[ocn_nx_global] + ny_global = @[ocn_ny_global] + restfilm = "null" + sst_constant_value = 273.15 + skip_restart_read = true + import_data_fields = "none" + export_all = false +/ diff --git a/tests/parm/gocart/AERO_HISTORY.rc.IN b/tests/parm/gocart/AERO_HISTORY.rc.IN index 8a2671b19f..1ce1eeb7a2 100644 --- a/tests/parm/gocart/AERO_HISTORY.rc.IN +++ b/tests/parm/gocart/AERO_HISTORY.rc.IN @@ -6,7 +6,7 @@ VERSION: 1 EXPID: gocart EXPDSC: GOCART2g_diagnostics_at_c360 EXPSRC: GEOSgcm-v10.16.0 - +Allow_Overwrite: .true. COLLECTIONS: 'inst_aod' # 'inst_du_ss' diff --git a/tests/parm/gocart/CAP.rc b/tests/parm/gocart/CAP.rc index 64425b1bb4..d40106ae81 100644 --- a/tests/parm/gocart/CAP.rc +++ b/tests/parm/gocart/CAP.rc @@ -8,6 +8,8 @@ REPORT_THROUGHPUT: .false. USE_SHMEM: 0 +GridType: Cubed-Sphere + MAPL_ENABLE_TIMERS: NO MAPL_ENABLE_MEMUTILS: NO PRINTSPEC: 0 # (0: OFF, 1: IMPORT & EXPORT, 2: IMPORT, 3: EXPORT) diff --git a/tests/parm/gocart/DU2G_instance_DU.rc b/tests/parm/gocart/DU2G_instance_DU.rc index d98e65186f..b3e4c36aa6 100644 --- a/tests/parm/gocart/DU2G_instance_DU.rc +++ b/tests/parm/gocart/DU2G_instance_DU.rc @@ -44,3 +44,5 @@ emission_scheme: fengsha # choose among: fengsha, ginoux, k14 alpha: 0.039 gamma: 0.8 vertical_to_horizontal_flux_ratio_limit: 2.e-04 +soil_moisture_factor: 1.0 +soil_drylimit_factor: 1.0 diff --git a/tests/parm/gocart/GOCART2G_GridComp.rc b/tests/parm/gocart/GOCART2G_GridComp.rc index 5ea4fa45df..18954f8cdd 100644 --- a/tests/parm/gocart/GOCART2G_GridComp.rc +++ b/tests/parm/gocart/GOCART2G_GridComp.rc @@ -39,3 +39,5 @@ PASSIVE_INSTANCES_NI: aerosol_monochromatic_optics_wavelength_in_nm_from_LUT: 470 550 670 870 wavelengths_for_profile_aop_in_nm: 470 550 670 870 # must be included in LUT wavelengths_for_vertically_integrated_aop_in_nm: 470 550 670 870 # must be included in LUT + +use_threads: .TRUE. diff --git a/tests/parm/hafs_datm.streams.era5.IN b/tests/parm/hafs_datm.streams.era5.IN index 6b155b848a..a63e8ca29f 100644 --- a/tests/parm/hafs_datm.streams.era5.IN +++ b/tests/parm/hafs_datm.streams.era5.IN @@ -9,7 +9,7 @@ yearFirst01: @[SYEAR] yearLast01: @[SYEAR] yearAlign01: @[SYEAR] stream_vectors01: "Sa_u10m:Sa_v10m" -stream_mesh_file01: @[MESH_ATM] +stream_mesh_file01: "INPUT/@[MESH_ATM]" stream_lev_dimname01: null stream_data_files01: @[DATA_ATM]" stream_data_variables01: "u10 Sa_u10m" "v10 Sa_v10m" "t2m Sa_t2m" "skt Sa_tskn" "d2m Sa_tdew" "msl Sa_pslv" "tp Faxa_rain" "cp Faxa_rainc" "lsp Faxa_rainl" "csf Faxa_snowc" "lsf Faxa_snowl" "ssrd Faxa_swdn" "ssr Faxa_swnet" "strd Faxa_lwdn" "str Faxa_lwnet" "aluvp Faxa_swvdr" "aluvd Faxa_swvdf" "alnip Faxa_swndr" "alnid Faxa_swndf" "sshf Faxa_sen" "slhf Faxa_lat" "ewss Faxa_taux" "nsss Faxa_tauy" diff --git a/tests/parm/hafs_docn.streams.IN b/tests/parm/hafs_docn.streams.IN index 3b037ee77f..f13fdd39c7 100644 --- a/tests/parm/hafs_docn.streams.IN +++ b/tests/parm/hafs_docn.streams.IN @@ -9,7 +9,7 @@ yearFirst01: @[SYEAR] yearLast01: @[SYEAR] yearAlign01: @[SYEAR] stream_vectors01: "null" -stream_mesh_file01: @[ocn_mesh] +stream_mesh_file01: "INPUT/@[MESH_OCN]" stream_lev_dimname01: null stream_data_files01: @[ocn_data] stream_data_variables01: "@[ocn_data_var] So_t" diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in.IN similarity index 64% rename from tests/parm/ice_in_template rename to tests/parm/ice_in.IN index 76f199ad56..75a8f5a33f 100644 --- a/tests/parm/ice_in_template +++ b/tests/parm/ice_in.IN @@ -1,55 +1,68 @@ &setup_nml - days_per_year = 365 - use_leap_years = .true. - year_init = @[SYEAR] - month_init = @[SMONTH] - day_init = @[SDAY] - sec_init = @[SECS] - dt = @[DT_CICE] - npt = 999 - ndtd = 1 - runtype = '@[CICERUNTYPE]' - runid = '@[RUNID]' - ice_ic = 'cice_model.res.nc' - restart = .true. - restart_ext = .false. - use_restart_time = @[USE_RESTART_TIME] - restart_format = 'nc' - lcdf64 = .false. - numin = 21 - numax = 89 - restart_dir = './RESTART/' - restart_file = 'iced' - pointer_file = './ice.restart_file' - dumpfreq = '@[DUMPFREQ]' - dumpfreq_n = @[DUMPFREQ_N] - dump_last = .false. - bfbflag = 'off' - diagfreq = 6 - diag_type = 'file' - diag_file = 'ice_diag.d' - print_global = .true. - print_points = .true. - latpnt(1) = 90. - lonpnt(1) = 0. - latpnt(2) = -65. - lonpnt(2) = -45. - histfreq = 'm','d','h','x','x' - histfreq_n = 0 , 0 , 6 , 1 , 1 - hist_avg = @[CICE_HIST_AVG] - history_dir = './history/' - history_file = 'iceh' - write_ic = .true. - incond_dir = './history/' - incond_file = 'iceh_ic' - version_name = 'CICE_6.0.2' + days_per_year = 365 + use_leap_years = .true. + year_init = @[SYEAR] + month_init = @[SMONTH] + day_init = @[SDAY] + sec_init = @[SECS] + dt = @[DT_CICE] + npt = @[CICE_NPT] + ndtd = 1 + runtype = '@[CICE_RUNTYPE]' + runid = '@[CICE_RUNID]' + ice_ic = '@[CICE_ICE_IC]' + restart = .true. + restart_ext = .false. + use_restart_time = @[CICE_USE_RESTART_TIME] + numin = 21 + numax = 89 + restart_format = '@[CICE_RESTART_FORMAT]' + restart_iotasks = @[CICE_RESTART_IOTASKS] + restart_rearranger = '@[CICE_RESTART_REARR]' + restart_root = @[CICE_RESTART_ROOT] + restart_stride = @[CICE_RESTART_STRIDE] + restart_chunksize = @[CICE_RESTART_CHUNK] + restart_deflate = @[CICE_RESTART_DEFLATE] + restart_dir = '@[CICE_RESTART_DIR]' + restart_file = '@[CICE_RESTART_FILE]' + pointer_file = './ice.restart_file' + dumpfreq = '@[CICE_DUMPFREQ]' + dumpfreq_n = @[CICE_DUMPFREQ_N] + dump_last = .false. + bfbflag = 'off' + diagfreq = @[CICE_DIAGFREQ] + diag_type = 'file' + diag_file = 'ice_diag.d' + print_global = .true. + print_points = .true. + latpnt(1) = 90. + lonpnt(1) = 0. + latpnt(2) = -65. + lonpnt(2) = -45. + history_format = '@[CICE_HISTORY_FORMAT]' + history_iotasks = @[CICE_HISTORY_IOTASKS] + history_rearranger = '@[CICE_HISTORY_REARR]' + history_root = @[CICE_HISTORY_ROOT] + history_stride = @[CICE_HISTORY_STRIDE] + history_chunksize = @[CICE_HISTORY_CHUNK] + history_deflate = @[CICE_HISTORY_DEFLATE] + history_precision = @[CICE_HISTORY_PREC] + histfreq = 'm','d','h','x','x' + histfreq_n = @[CICE_HISTFREQ_N] + hist_avg = @[CICE_HIST_AVG] + history_dir = '@[CICE_HISTORY_DIR]' + history_file = 'iceh' + write_ic = .true. + incond_dir = '@[CICE_INCOND_DIR]' + incond_file = 'iceh_ic' + version_name = 'CICE_6.0.2' / &grid_nml grid_format = 'nc' grid_type = 'tripole' - grid_file = '@[CICEGRID]' - kmt_file = '@[CICEMASK]' + grid_file = '@[CICE_GRID]' + kmt_file = '@[CICE_MASK]' kcatbound = 0 ncat = 5 nfsd = 1 @@ -57,9 +70,9 @@ nslyr = 1 nblyr = 1 nfsd = 1 - grid_atm = '@[GRIDATM]' - grid_ocn = '@[GRIDOCN]' - grid_ice = '@[GRIDICE]' + grid_atm = '@[CICE_GRIDATM]' + grid_ocn = '@[CICE_GRIDOCN]' + grid_ice = '@[CICE_GRIDICE]' / &tracer_nml @@ -71,8 +84,8 @@ restart_lvl = .false. tr_pond_topo = .false. restart_pond_topo = .false. - tr_pond_lvl = .true. - restart_pond_lvl = .false. + tr_pond_lvl = @[CICE_TR_POND_LVL] + restart_pond_lvl = @[CICE_RESTART_POND_LVL] tr_aero = .false. restart_aero = .false. tr_fsd = .false. @@ -81,7 +94,7 @@ &thermo_nml kitd = 1 - ktherm = @[KTHERM] + ktherm = @[CICE_KTHERM] conduct = 'MU71' a_rapid_mode = 0.5e-3 Rac_rapid_mode = 10.0 @@ -155,18 +168,18 @@ ustar_min = 0.0005 emissivity = 0.95 fbot_xfer_type = 'constant' - update_ocn_f = @[FRAZIL_FWSALT] + update_ocn_f = @[CICE_FRAZIL_FWSALT] l_mpond_fresh = .false. - tfrz_option = '@[TFREEZE_OPTION]' + tfrz_option = '@[CICE_TFREEZE_OPTION]' restart_coszen = .true. / &domain_nml - nprocs = @[NPROC_ICE] + nprocs = @[CICE_NPROC] nx_global = @[NX_GLB] ny_global = @[NY_GLB] - block_size_x = @[BLCKX] - block_size_y = @[BLCKY] + block_size_x = @[CICE_BLCKX] + block_size_y = @[CICE_BLCKY] max_blocks = -1 processor_shape = '@[CICE_DECOMP]' distribution_type = 'cartesian' @@ -182,6 +195,14 @@ / &icefields_nml + f_tlon = .true. + f_tlat = .true. + f_ulon = .true. + f_ulat = .true. + f_nlon = .true. + f_nlat = .true. + f_elon = .true. + f_elat = .true. f_tmask = .true. f_blkmask = .true. f_tarea = .true. @@ -234,10 +255,10 @@ f_alidr_ai = 'x' f_alvdf_ai = 'x' f_alidf_ai = 'x' - f_albice = 'mdhxx' - f_albsno = 'mdhxx' - f_albpnd = 'mdhxx' - f_coszen = 'mdhxx' + f_albice = 'x' + f_albsno = 'x' + f_albpnd = 'x' + f_coszen = 'x' f_flat = 'mdhxx' f_flat_ai = 'x' f_fsens = 'mdhxx' @@ -265,7 +286,7 @@ f_fbot = 'mdhxx' f_fhocn = 'mdhxx' f_fhocn_ai = 'x' - f_fswthru = 'mdhxx' + f_fswthru = 'x' f_fswthru_ai = 'x' f_fsurf_ai = 'x' f_fcondtop_ai = 'x' @@ -283,19 +304,19 @@ f_taubx = 'x' f_tauby = 'x' f_strength = 'x' - f_divu = 'x' - f_shear = 'x' + f_divu = 'mdhxx' + f_shear = 'mdhxx' f_sig1 = 'x' f_sig2 = 'x' f_sigP = 'x' - f_dvidtt = 'x' - f_dvidtd = 'x' - f_daidtt = 'x' - f_daidtd = 'x' + f_dvidtt = 'mdhxx' + f_dvidtd = 'mdhxx' + f_daidtt = 'mdhxx' + f_daidtd = 'mdhxx' f_dagedtt = 'x' f_dagedtd = 'x' - f_mlt_onset = 'x' - f_frz_onset = 'x' + f_mlt_onset = 'mdhxx' + f_frz_onset = 'mdhxx' f_hisnap = 'x' f_aisnap = 'x' f_trsig = 'x' @@ -315,6 +336,9 @@ f_fmelttn_ai = 'x' f_flatn_ai = 'x' f_fsensn_ai = 'x' + f_sitempsnic = 'mdhxx' + f_sitemptop = 'mdhxx' + f_sitempbot = 'mdhxx' / &icefields_mechred_nml @@ -361,3 +385,15 @@ &icefields_bgc_nml / + +&ice_prescribed_nml + prescribed_ice_mode = .@[CICE_PRESCRIBED]. + stream_yearfirst = @[SYEAR] + stream_yearlast = @[SYEAR] + stream_yearalign = @[SYEAR] + stream_varname = "ice_cov" + stream_meshfile = "INPUT/@[MESH_DICE]" + stream_datafiles = "@[stream_files_dice]" + stream_mapalgo = "bilinear" + stream_taxmode = "extend" +/ diff --git a/tests/parm/input.mom6.nml.IN b/tests/parm/input.mom6.nml.IN index f30cec69ad..6a7c6ca9a9 100644 --- a/tests/parm/input.mom6.nml.IN +++ b/tests/parm/input.mom6.nml.IN @@ -5,14 +5,14 @@ stack_size =0 / &MOM_input_nml - output_directory = 'MOM6_OUTPUT/', + output_directory = '@[MOM6_OUTPUT_DIR]', input_filename = '@[MOM6_RESTART_SETTING]' restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', + restart_output_dir = '@[MOM6_RESTART_DIR]', parameter_filename = 'INPUT/MOM_input', 'INPUT/MOM_override' / - + &nam_stochy new_lscale=.true., OCNSPPT=@[OCN_SPPT], diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index 67453fac29..fdc887c8f5 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -10,21 +10,6 @@ prepend_date = .false. / - &mpp_io_nml - header_buffer_val = 16384, - global_field_on_root_pe = .true., - io_clocks_on = .false., - shuffle = 0, - deflate_level = @[DEFLATE_LEVEL], - cf_compliance = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 30000000, @@ -35,6 +20,10 @@ !grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -50,8 +39,9 @@ n_sponge = 24 nudge_qv = .false. nudge_dz = .false. - tau = 5. - rf_cutoff = 30.e2 + tau = @[FV_CORE_TAU] + rf_cutoff = @[RF_CUTOFF] + fast_tau_w_sec = @[FAST_TAU_W_SEC] d2_bg_k1 = 0.16 d2_bg_k2 = 0.05 kord_tm = -9 @@ -93,7 +83,7 @@ hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. - do_sat_adj = .true. + do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. fill = .true. dwind_2d = .false. @@ -157,19 +147,29 @@ &gfs_physics_nml fhzero = 3. ldiag3d = .false. - lradar = .true. avg_max_length = 3600. h2o_phys = .true. fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = 11 + imp_physics = @[IMP_PHYSICS] + iovr = @[IOVR] + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] pdfcld = .false. fhswr = @[FHSWR] fhlwr = @[FHLWR] + progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] ialb = 1 iems = 1 - iaer = 111 + iaer = @[IAER] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -181,37 +181,37 @@ cal_pre = .false. redrag = .true. dspheat = .true. - hybedmf = .false. - hurr_pbl = .true. ! HWRF moninedmf - moninq_fac = -1.0 ! HWRF_moninedmf - satmedmf = .true. - isatmedmf = 1 + hybedmf = @[HYBEDMF] + hurr_pbl = @[HURR_PBL] ! HWRF moninedmf + moninq_fac = @[MONINQ_FAC] ! HWRF_moninedmf + satmedmf = @[SATMEDMF] + isatmedmf = @[ISATMEDMF] rlmx = 300. elmx = 300. sfc_rlm = 1 random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 1.0,1.0,1.0,1.0 + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + cdmbgwd = @[CDMBWD] sfc_z0_type = 6 prslrd0 = 0. ivegsrc = 1 isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] iopt_btr = 1 iopt_run = 1 - iopt_sfc = 1 + iopt_sfc = @[IOPT_SFC] iopt_frz = 1 iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] iopt_snf = 4 iopt_tbot = 2 - iopt_stc = 1 + iopt_stc = @[IOPT_STC] iopt_trs = 2 iopt_diag = 2 debug = .false. @@ -240,14 +240,20 @@ lndp_type = 0 n_var_lndp = 0 gwd_opt = 2 - do_ugwp_v0 = .false. - do_ugwp_v1 = .false. - do_ugwp_v1_w_gsldrag = .false. - do_ugwp_v1_orog_only = .false. - do_gsl_drag_ls_bl = .true. - do_gsl_drag_ss = .true. - do_gsl_drag_tofd = .true. - do_ugwp_v0_orog_only = .false. + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v1_w_gsldrag = @[DO_UGWP_V1_W_GSLDRAG] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] + + do_mynnedmf = @[DO_MYNNEDMF] + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + do_mynnsfclay = @[DO_MYNNSFCLAY] + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] / &gfdl_cloud_microphysics_nml @@ -361,8 +367,19 @@ knob_ugwp_effac = 1,1,1,1 knob_ugwp_doaxyz = 1 knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This one is only for cires_ugwp_module.F90 +@[HIDE_UGWPV0] launch_level = 25 + ! These are only for cires_ugwpv1_module.F90 +@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 +@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 +@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 +@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 +@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' +@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] / diff --git a/tests/parm/input_global_nest.nml.IN b/tests/parm/input_global_nest.nml.IN new file mode 100644 index 0000000000..affbb2af94 --- /dev/null +++ b/tests/parm/input_global_nest.nml.IN @@ -0,0 +1,396 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + ccpp_suite = "@[CCPP_SUITE]" + +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] + +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = @[DOMAINS_STACK_SIZE] + print_memory_usage = .false. + +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + +&fv_core_nml + layout = @[INPES_NEST02],@[JNPES_NEST02] + io_layout = 1,1 + npx = @[NPX_NEST02] + npy = @[NPY_NEST02] + ntiles = 1 + npz = @[NPZ] + dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC_NEST02] + grid_type = 0 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = @[N_SPONGE] + n_zs_filter = @[N_ZS_FILTER_NEST02] + nudge_qv = .false. + nudge_dz = .false. + tau = @[FV_CORE_TAU_NEST02] + rf_cutoff = @[RF_CUTOFF_NEST02] + rf_fast = @[RF_FAST] + sg_cutoff = @[SG_CUTOFF] + upoff = @[UPOFF] + d2_bg_k1 = @[D2_BG_K1_NEST02] + d2_bg_k2 = @[D2_BG_K2_NEST02] + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 4 + n_split = 5 + nwat = @[NWAT] + na_init = @[NA_INIT] + d_ext = @[D_EXT] + dnats = @[DNATS] + fv_sg_adj = @[FV_SG_ADJ] + d2_bg = @[D2_BG_NEST02] + nord = 2 + nord_zs_filter = @[NORD_ZS_FILTER] + dddmp = @[DDDMP] + d4_bg = @[D4_BG_NEST02] + vtdm4 = @[VTDM4] + delt_max = @[DELT_MAX_NEST02] + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = @[D_CON] + hord_mt = @[HORD_MT_NEST02] + hord_vt = @[HORD_VT_NEST02] + hord_tm = @[HORD_TM_NEST02] + hord_dp = @[HORD_DP_NEST02] + hord_tr = @[HORD_TR_NEST02] + adjust_dry_mass = .false. + dry_mass = @[DRY_MASS] + consv_te = @[CONSV_TE_NEST02] + do_sat_adj = @[DO_SAT_ADJ] + fast_tau_w_sec = @[FAST_TAU_W_SEC_NEST02] + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + nested = @[NESTED] + twowaynest = @[TWOWAYNEST02] + nestupdate = 7 +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 128 + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 + +/ + +&surf_map_nml + cd2 = -1 + cd4 = 0.15 + max_slope = 0.15 + n_del2_strong = @[N_DEL2_STRONG] + n_del2_weak = @[N_DEL2_WEAK_NEST02] + n_del4 = @[N_DEL4] + peak_fac = @[PEAK_FAC] + zero_ocean = @[ZERO_OCEAN] +/ + +&gfs_physics_nml + fhzero = @[FHZERO] + h2o_phys = @[H2O_PHYS] + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + lightning_threat = @[LIGHTNING_THREAT] + print_diff_pgr = @[PRINT_DIFF_PGR] + fhcyc = @[FHCYC] + use_ufo = .true. + pre_rad = .false. + imp_physics = @[IMP_PHYSICS] + iovr = @[IOVR] + lcnorm = @[LCNORM] + ltaerosol = .true. + lradar = .true. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = @[OZ_PHYS_NEW] + oz_phys_2015 = @[OZ_PHYS_OLD] + lsoil_lsm = @[LSOIL_LSM] + do_ca = @[DO_CA] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] + bl_mynn_edmf_mom = 1 + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + do_ugwp_v1_w_gsldrag = @[DO_UGWP_V1_W_GSLDRAG] + min_lakeice = @[MIN_LAKEICE] + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] + pdfcld = .false. + fhswr = @[FHSWR] + fhlwr = @[FHLWR] + ialb = @[IALB] + iems = @[IEMS] + iaer = @[IAER] + icliq_sw = @[ICLIQ_SW] + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = @[CNVGWD_NEST02] + shal_cnv = @[SHAL_CNV] + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + isatmedmf = @[ISATMEDMF] + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] + trans_trac = .true. + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV_NEST02] + imfdeepcnv = @[IMFDEEPCNV_NEST02] + do_deep = @[DO_DEEP_NEST02] + ! NOTE: progsigma should be .true. for the global_nest_v1 suite. + ! The code turns it off automatically at low resolutions. + ! This leads to an erronious situation where it is off for the globe, but on for the nest. + ! Hence, we turn it off manually, to avoid advecting a field of 0 from the nest boundary. + ! For practical global resolutions (C384 or higher) it should be turned on. + progsigma = @[PROGSIGMA_NEST02] + betascu = @[BETASCU_NEST02] + betamcu = @[BETAMCU_NEST02] + betadcu = @[BETADCU_NEST02] + ras = @[RAS] + cdmbgwd = @[CDMBWD] + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = @[IOPT_SFC] + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = @[IOPT_STC] + iopt_trs = @[IOPT_TRS] + iopt_diag = @[IOPT_DIAG] + debug = .false. + nstf_name = @[NSTF_NAME] + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = @[LGFDLMPRAD] + effr_in = @[EFFR_IN] + ldiag_ugwp = @[LDIAG_UGWP] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = @[NGASES] + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] + knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP] + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 + + +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' + +/ + +&namsfc + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = @[FNAISC] + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = @[FNTSFA] + FNACNA = @[FNACNA] + FNSNOA = @[FNSNOA] + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG = .false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = @[LANDICE] + FTSFS = @[FTSFS] + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + +/ + +&fv_grid_nml + +/ + +&nam_stochy +/ +&nam_sfcperts +/ diff --git a/tests/parm/merra2_thompson.nml.IN b/tests/parm/input_global_parent.nml.IN similarity index 61% rename from tests/parm/merra2_thompson.nml.IN rename to tests/parm/input_global_parent.nml.IN index fe0a87cd5c..2027367087 100644 --- a/tests/parm/merra2_thompson.nml.IN +++ b/tests/parm/input_global_parent.nml.IN @@ -1,30 +1,26 @@ &atmos_model_nml - blocksize = 32 + blocksize = @[BLOCKSIZE] chksum_debug = .false. dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' + ccpp_suite = "@[CCPP_SUITE]" + / &diag_manager_nml prepend_date = .false. max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 + / &fms_nml clock_grain = 'ROUTINE' domains_stack_size = @[DOMAINS_STACK_SIZE] print_memory_usage = .false. + +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" / &fv_core_nml @@ -32,20 +28,23 @@ deflate_level=1 io_layout = 1,1 npx = @[NPX] npy = @[NPY] - ntiles = 6 + ntiles = @[NTILES] npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 + dz_min = @[DZ_MIN] + grid_type = 0 make_nh = @[MAKE_NH] fv_debug = .false. range_warn = .true. reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. + n_sponge = @[N_SPONGE] + n_zs_filter = @[N_ZS_FILTER] + nudge_qv = .false. nudge_dz = .false. - tau = 10.0 - rf_cutoff = 7.5e2 + tau = @[FV_CORE_TAU] + rf_cutoff = @[RF_CUTOFF] + rf_fast = @[RF_FAST] + sg_cutoff = @[SG_CUTOFF] + upoff = @[UPOFF] d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] kord_tm = -9 @@ -58,19 +57,20 @@ deflate_level=1 beta = 0. a_imp = 1. p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 + k_split = 1 + n_split = 5 + nwat = @[NWAT] na_init = @[NA_INIT] - d_ext = 0. + d_ext = @[D_EXT] dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. + fv_sg_adj = @[FV_SG_ADJ] + d2_bg = @[D2_BG] nord = 2 + nord_zs_filter = @[NORD_ZS_FILTER] dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 + d4_bg = @[D4_BG] + vtdm4 = @[VTDM4] + delt_max = @[DELT_MAX] ke_bg = 0. do_vort_damp = .true. external_ic = @[EXTERNAL_IC] @@ -79,16 +79,17 @@ deflate_level=1 nggps_ic = @[NGGPS_IC] mountain = @[MOUNTAIN] ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 + d_con = @[D_CON] + hord_mt = @[HORD_MT] + hord_vt = @[HORD_VT] + hord_tm = @[HORD_TM] + hord_dp = @[HORD_DP] + hord_tr = @[HORD_TR] adjust_dry_mass = .false. - dry_mass=98320.0 - consv_te = 1. + dry_mass = @[DRY_MASS] + consv_te = @[CONSV_TE] do_sat_adj = @[DO_SAT_ADJ] + fast_tau_w_sec = @[FAST_TAU_W_SEC] consv_am = .false. fill = .true. dwind_2d = .false. @@ -99,78 +100,97 @@ deflate_level=1 agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + do_schmidt = .true. + target_lat = @[TARGET_LAT] + target_lon = @[TARGET_LON] + stretch_fac = 1.0001 / &external_ic_nml filtered_terrain = .true. - levp = @[NPZP] + levp = 128 gfs_dwinds = .true. checker_tr = .false. nt_checker = 0 + +/ + +&surf_map_nml + cd2 = -1 + cd4 = 0.15 + max_slope = 0.15 + n_del2_strong = @[N_DEL2_STRONG] + n_del2_weak = @[N_DEL2_WEAK] + n_del4 = @[N_DEL4] + peak_fac = @[PEAK_FAC] + zero_ocean = @[ZERO_OCEAN] / &gfs_physics_nml fhzero = @[FHZERO] - h2o_phys = .true. + h2o_phys = @[H2O_PHYS] ldiag3d = @[LDIAG3D] qdiag3d = @[QDIAG3D] + lightning_threat = @[LIGHTNING_THREAT] print_diff_pgr = @[PRINT_DIFF_PGR] fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = @[IMP_PHYSICS] - iovr = 3 - ltaerosol = @[LTAEROSOL] - mraerosol = @[MRAEROSOL] - lradar = .false. + imp_physics = @[IMP_PHYSICS] + iovr = @[IOVR] + lcnorm = @[LCNORM] + ltaerosol = .true. + lradar = .true. ttendlim = -999 dt_inner = @[DT_INNER] sedi_semi = @[SEDI_SEMI] decfl = @[DECFL] - oz_phys = .false. - oz_phys_2015 = .true. - lsoil_lsm = 4 - do_mynnedmf = .false. - do_mynnsfclay = .false. + oz_phys = @[OZ_PHYS_NEW] + oz_phys_2015 = @[OZ_PHYS_OLD] + lsoil_lsm = @[LSOIL_LSM] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] icloud_bl = 1 bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] bl_mynn_edmf_mom = 1 - do_ugwp = .false. - do_tofd = .false. + do_ugwp = @[DO_UGWP] + do_tofd = @[DO_TOFD] + do_ca = @[DO_CA] gwd_opt = @[GWD_OPT] do_ugwp_v0 = @[DO_UGWP_V0] do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = .false. + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] do_gsl_drag_ss = @[DO_GSL_DRAG_SS] do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = 0.15 + do_ugwp_v1_w_gsldrag = @[DO_UGWP_V1_W_GSLDRAG] + min_lakeice = @[MIN_LAKEICE] min_seaice = @[MIN_SEAICE] use_cice_alb = @[USE_CICE_ALB] pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. + fhswr = @[FHSWR] + fhlwr = @[FHLWR] ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] - icliq_sw = 2 + icliq_sw = @[ICLIQ_SW] ico2 = 2 isubc_sw = 2 isubc_lw = 2 isol = 2 lwhtr = .true. swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. + cnvgwd = @[CNVGWD] + shal_cnv = @[SHAL_CNV] cal_pre = .false. redrag = .true. dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + isatmedmf = @[ISATMEDMF] lheatstrg = @[LHEATSTRG] lseaspray = @[LSEASPRAY] random_clds = @[RANDOM_CLDS] @@ -178,8 +198,18 @@ deflate_level=1 cnvcld = @[CNVCLD] imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] + do_deep = @[DO_DEEP] + ! NOTE: progsigma should be .true. for the global_nest_v1 suite. + ! The code turns it off automatically at low resolutions. + ! This leads to an erronious situation where it is off for the globe, but on for the nest. + ! Hence, we turn it off manually, to avoid advecting a field of 0 from the nest boundary. + ! For practical resolutions (C384 globe or larger), it would be on. + progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] ras = @[RAS] - cdmbgwd = @[CDMBWD] + cdmbgwd = @[CDMBWD_NEST02] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -190,8 +220,6 @@ deflate_level=1 iopt_btr = 1 iopt_run = 1 iopt_sfc = @[IOPT_SFC] - iopt_trs = @[IOPT_TRS] - iopt_diag = @[IOPT_DIAG] iopt_frz = 1 iopt_inf = 1 iopt_rad = @[IOPT_RAD] @@ -199,21 +227,19 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = @[IOPT_STC] + iopt_trs = @[IOPT_TRS] + iopt_diag = @[IOPT_DIAG] debug = .false. nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = @[LGFDLMPRAD] - effr_in = .true. + effr_in = @[EFFR_IN] ldiag_ugwp = @[LDIAG_UGWP] - fscav_aero = @[FSCAV_AERO] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] do_RRTMGP = @[DO_RRTMGP] active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 + ngases = @[NGASES] lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' @@ -224,27 +250,25 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] - use_med_flux = @[USE_MED_FLUX] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] cplflx = @[CPLFLX] cplice = @[CPLICE] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] +/ + +&fv_nest_nml + grid_pes = @[GRID_PES] + tile_coarse = @[TILE_COARSE] + num_tile_top = @[NUM_TILE_TOP] + p_split = 1 + nest_refine = @[NEST_REFINE] + nest_ioffsets = @[NEST_IOFFSETS] + nest_joffsets = @[NEST_JOFFSETS] / &cires_ugwp_nml @@ -256,10 +280,18 @@ deflate_level=1 knob_ugwp_effac = 1,1,1,1 knob_ugwp_doaxyz = 1 knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] knob_ugwp_version = @[KNOB_UGWP_VERSION] - launch_level = 54 + knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] + knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] + knob_ugwp_lzmax = 15.750e3 + knob_ugwp_lzmin = 0.75e3 + knob_ugwp_lzstar = 2.0e3 + knob_ugwp_taumin = 0.25e-3 + knob_ugwp_tauamp = @[KNOB_UGWP_TAUAMP_NEST02] + knob_ugwp_lhmet = 200.0e3 + knob_ugwp_orosolv = 'pss-1986' / &gfdl_cloud_microphysics_nml @@ -310,21 +342,24 @@ deflate_level=1 icloud_f = 1 mp_time = 150. reiflag = 2 + + / &interpolator_nml interp_method = 'conserve_great_circle' + / &namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' + FNGLAC = @[FNGLAC] + FNMXIC = @[FNMXIC] + FNTSFC = @[FNTSFC] + FNSNOC = @[FNSNOC] + FNZORC = @[FNZORC] FNALBC = @[FNALBC] FNALBC2 = @[FNALBC2] - FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNAISC = @[FNAISC] FNTG3C = @[FNTG3C] FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] @@ -332,55 +367,40 @@ deflate_level=1 FNSOCC = @[FNSOCC] FNSMCC = @[FNSMCC] FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' + FNTSFA = @[FNTSFA] + FNACNA = @[FNACNA] + FNSNOA = @[FNSNOA] FNVMNC = @[FNVMNC] FNVMXC = @[FNVMXC] FNSLPC = @[FNSLPC] FNABSC = @[FNABSC] - LDEBUG =.false. + LDEBUG = .false. FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = @[FSICS] - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 + FTSFS = @[FTSFS] + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 + / &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' + / &nam_stochy / - &nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] / - -&MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 5e99deb2ae..561afaffa9 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -9,12 +9,6 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 3000000, @@ -25,6 +19,10 @@ ! grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES_NEST],@[JNPES_NEST] io_layout = 1,1 diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 4bc2435b4e..3fdf8e7d5e 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -10,21 +10,6 @@ prepend_date = .false. / - &mpp_io_nml - header_buffer_val = 16384, - global_field_on_root_pe = .true., - io_clocks_on = .false., - shuffle = 0, - deflate_level = @[DEFLATE_LEVEL], - cf_compliance = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 30000000, @@ -35,6 +20,10 @@ !grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES_NEST],@[JNPES_NEST] io_layout = 1,1 @@ -50,8 +39,9 @@ n_sponge = 24 nudge_qv = .false. nudge_dz = .false. - tau = 5. - rf_cutoff = 50.e2 + tau = @[FV_CORE_TAU] + rf_cutoff = @[RF_CUTOFF_NEST] + fast_tau_w_sec = @[FAST_TAU_W_SEC] d2_bg_k1 = 0.20 d2_bg_k2 = 0.15 kord_tm = -11 @@ -137,68 +127,72 @@ &gfs_physics_nml fhzero = 3. ldiag3d = .false. - lradar = .true. avg_max_length = 3600. h2o_phys = .true. fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. imp_physics = @[IMP_PHYSICS] - ltaerosol = .false. - lradar = .true. - ttendlim = -999 - dt_inner = @[DT_INNER] - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] + iovr = @[IOVR] + ltaerosol = @[LTAEROSOL] + lradar = @[LRADAR] + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] ext_diag_thompson = .false. pdfcld = .false. fhswr = @[FHSWR] fhlwr = @[FHLWR] + progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] ialb = 1 iems = 1 - iaer = 111 + iaer = @[IAER] ico2 = 2 isubc_sw = 2 isubc_lw = 2 isol = 2 lwhtr = .true. swhtr = .true. - cnvgwd = .false. + cnvgwd = @[CNVGWD] shal_cnv = .true. !Shallow convection cal_pre = .false. redrag = .true. dspheat = .true. - hybedmf = .false. - hurr_pbl = .true. ! HWRF moninedmf - moninq_fac = -1.0 ! HWRF_moninedmf - satmedmf = .true. - isatmedmf = 1 + hybedmf = @[HYBEDMF] + hurr_pbl = @[HURR_PBL] ! HWRF moninedmf + moninq_fac = @[MONINQ_FAC] ! HWRF_moninedmf + satmedmf = @[SATMEDMF] + isatmedmf = @[ISATMEDMF] rlmx = 300. elmx = 300. sfc_rlm = 1 random_clds = .false. trans_trac = .true. cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 1.0,1.0,1.0,1.0 + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + cdmbgwd = @[CDMBWD] sfc_z0_type = 6 prslrd0 = 0. ivegsrc = 1 isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] iopt_btr = 1 iopt_run = 1 - iopt_sfc = 1 + iopt_sfc = @[IOPT_SFC] iopt_frz = 1 iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] iopt_snf = 4 iopt_tbot = 2 - iopt_stc = 1 + iopt_stc = @[IOPT_STC] ! 1 iopt_trs = 2 iopt_diag = 2 debug = .false. @@ -227,14 +221,20 @@ lndp_type = 0 n_var_lndp = 0 gwd_opt = 2 - do_ugwp_v0 = .false. - do_ugwp_v1 = .false. - do_ugwp_v1_w_gsldrag = .false. - do_ugwp_v1_orog_only = .false. - do_gsl_drag_ls_bl = .true. - do_gsl_drag_ss = .true. - do_gsl_drag_tofd = .true. - do_ugwp_v0_orog_only = .false. + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v1_w_gsldrag = @[DO_UGWP_V1_W_GSLDRAG] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v0_orog_only = @[DO_UGWP_V0_OROG_ONLY] + + do_mynnedmf = @[DO_MYNNEDMF] + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + do_mynnsfclay = @[DO_MYNNSFCLAY] + bl_mynn_tkeadvect = @[BL_MYNN_TKEADVECT] / &gfdl_cloud_microphysics_nml @@ -348,8 +348,27 @@ knob_ugwp_effac = 1,1,1,1 knob_ugwp_doaxyz = 1 knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This one is only for cires_ugwp_module.F90 +@[HIDE_UGWPV0] launch_level = 25 + ! These are only for cires_ugwpv1_module.F90 +@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 +@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 +@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 +@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 +@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' +@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] +/ + + &MOM_input_nml + output_directory = 'OUTPUT', + input_filename = 'n' + restart_input_dir = 'INPUT', + restart_output_dir = 'RESTART', + parameter_filename = 'MOM_input' / diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 7680dea358..d88db070ef 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -10,21 +10,6 @@ prepend_date = .false. / - &mpp_io_nml - header_buffer_val = 16384, - global_field_on_root_pe = .true., - io_clocks_on = .false., - shuffle = 0, - deflate_level = @[DEFLATE_LEVEL], - cf_compliance = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 30000000, @@ -35,6 +20,10 @@ grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -377,3 +366,11 @@ knob_ugwp_version = 0 launch_level = 25 / + + &MOM_input_nml + output_directory = 'OUTPUT', + input_filename = 'n' + restart_input_dir = 'INPUT', + restart_output_dir = 'RESTART', + parameter_filename = 'MOM_input' +/ diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index d91b5a8a39..a112bc0a01 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -16,14 +16,17 @@ write_groups: @[WRITE_GROUP] write_tasks_per_group: @[WRTTASK_PER_GROUP] itasks: @[ITASKS] output_history: @[OUTPUT_HISTORY] +history_file_on_native_grid: @[HISTORY_FILE_ON_NATIVE_GRID] write_dopost: @[WRITE_DOPOST] write_nsflip: @[WRITE_NSFLIP] num_files: @[NUM_FILES] filename_base: @[FILENAME_BASE] output_grid: @[OUTPUT_GRID] output_file: @[OUTPUT_FILE] +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] -nbits: @[NBITS] +quantize_mode: 'quantize_bitround' +quantize_nsd: @[QUANTIZE_NSD] ichunk2d: @[ICHUNK2D] jchunk2d: @[JCHUNK2D] ichunk3d: @[ICHUNK3D] diff --git a/tests/parm/model_configure_atmaq.IN b/tests/parm/model_configure_atmaq.IN index b4ce5b3acf..f28f81da55 100644 --- a/tests/parm/model_configure_atmaq.IN +++ b/tests/parm/model_configure_atmaq.IN @@ -9,7 +9,8 @@ dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] write_dopost: @[WRITE_DOPOST] ideflate: @[IDEFLATE] -nbits: @[NBITS] +quantize_mode: 'quantize_bitround' +quantize_nsd: @[QUANTIZE_NSD] quilting: @[QUILTING] write_groups: @[WRITE_GROUP] @@ -18,7 +19,6 @@ num_files: @[NUM_FILES] filename_base: @[FILENAME_BASE] output_file: @[OUTPUT_FILE] output_fh: @[OUTPUT_FH] -nsout: @[NSOUT] output_grid: @[OUTPUT_GRID] cen_lon: @[CEN_LON] diff --git a/tests/parm/model_configure_fhout.IN b/tests/parm/model_configure_fhout.IN deleted file mode 100644 index fe490f2129..0000000000 --- a/tests/parm/model_configure_fhout.IN +++ /dev/null @@ -1,32 +0,0 @@ -start_year: @[SYEAR] -start_month: @[SMONTH] -start_day: @[SDAY] -start_hour: @[SHOUR] -start_minute: 0 -start_second: 0 -nhours_fcst: @[FHMAX] - -dt_atmos: @[DT_ATMOS] -restart_interval: @[RESTART_INTERVAL] -fhrot: @[FHROT] -output_1st_tstep_rst: .false. - -quilting: @[QUILTING] -write_groups: @[WRITE_GROUP] -write_tasks_per_group: @[WRTTASK_PER_GROUP] -output_history: @[OUTPUT_HISTORY] -write_dopost: @[WRITE_DOPOST] -num_files: @[NUM_FILES] -filename_base: @[FILENAME_BASE] -output_grid: @[OUTPUT_GRID] -output_file: @[OUTPUT_FILE] -ideflate: @[IDEFLATE] -nbits: @[NBITS] -imo: @[IMO] -jmo: @[JMO] - -nfhout: @[NFHOUT] -nfhmax_hf: @[NFHMAX_HF] -nfhout_hf: @[NFHOUT_HF] -nsout: -1 -iau_offset: @[IAU_OFFSET] diff --git a/tests/parm/model_configure_gnv1.IN b/tests/parm/model_configure_gnv1.IN new file mode 100644 index 0000000000..55d10df6d2 --- /dev/null +++ b/tests/parm/model_configure_gnv1.IN @@ -0,0 +1,53 @@ +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +fhrot: @[FHROT] + +dt_atmos: @[DT_ATMOS] +restart_interval: @[RESTART_INTERVAL] + +quilting: @[QUILTING] +quilting_restart: @[QUILTING_RESTART] +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +itasks: @[ITASKS] +output_history: @[OUTPUT_HISTORY] +history_file_on_native_grid: @[HISTORY_FILE_ON_NATIVE_GRID] +write_dopost: @[WRITE_DOPOST] +write_nsflip: @[WRITE_NSFLIP] +num_files: @[NUM_FILES] +filename_base: @[FILENAME_BASE] +output_grid: @[OUTPUT_GRID] +output_file: @[OUTPUT_FILE] +zstandard_level: @[ZSTANDARD_LEVEL] +ideflate: @[IDEFLATE] +quantize_mode: 'quantize_bitround' +quantize_nsd: @[QUANTIZE_NSD] +ichunk2d: @[ICHUNK2D] +jchunk2d: @[JCHUNK2D] +ichunk3d: @[ICHUNK3D] +jchunk3d: @[JCHUNK3D] +kchunk3d: @[KCHUNK3D] +imo: @[IMO] +jmo: @[JMO] +output_fh: @[OUTPUT_FH] +iau_offset: @[IAU_OFFSET] + +# Output settings for the nest. + +output_grid: @[OUTPUT_GRID_2] +imo: @[IMO_2] +jmo: @[JMO_2] +cen_lon: @[CEN_LON_2] +cen_lat: @[CEN_LAT_2] +lon1: @[LON1_2] +lat1: @[LAT1_2] +lon2: @[LON2_2] +lat2: @[LAT2_2] +dlon: @[DLON_2] +dlat: @[DLAT_2] + diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 8fddd71f48..5408507b7e 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -7,7 +7,6 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] @@ -23,7 +22,8 @@ ichunk3d: -1 jchunk3d: -1 kchunk3d: -1 ideflate: @[IDEFLATE] -nbits: @[NBITS] +quantize_mode: 'quantize_bitround' +quantize_nsd: @[QUANTIZE_NSD] output_grid: @[OUTPUT_GRID] # gaussian_grid, global_latlon, regional_latlon[_moving], rotated_latlon[_moving], lambert_conformal, cubed_sphere_grid imo: @[IMO] # number of grid points along longitude/latitude direction @@ -139,10 +139,6 @@ dx: @[DX_6] dy: @[DY_6] -nfhout: @[NFHOUT] # Output frequency in hours after forecast hour nfhmax_hf -nfhmax_hf: @[NFHMAX_HF] # Number of forecast hours until output frequency nfhout takes affect -nfhout_hf: @[NFHOUT_HF] # Output frequency in hours until forecast hour nfhmax_hf -nsout: @[NSOUT] # Output frequency in time steps (positive values override nfhout and nfhout_hf) output_fh: @[OUTPUT_FH] # Output forecast hours controlled by output_fh (see notes below) # a) An array of output_fh means to output history files at those forecast time (e.g., "output_fh: 0 1 2 3 12 24 48") # If the first elelment is zero, it means the first time step output diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN index 7099d36c7c..a2180d2eae 100644 --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -21,6 +21,7 @@ filename_base: 'dyn''phy' output_file: @[OUTPUT_FILE] write_nemsioflip: .false. write_fsyncflag: .false. +zstandard_level: @[ZSTANDARD_LEVEL] ideflate: @[IDEFLATE] nbits: 0 ichunk2d: -1 @@ -52,4 +53,3 @@ dy: 3000.0 #dlat: 0.025 output_fh: @[OUTPUT_FH] -nsout: -1 diff --git a/tests/parm/model_configure_regional_rrfs_a.IN b/tests/parm/model_configure_regional_rrfs_a.IN index d553ba6fef..bfe5b89802 100644 --- a/tests/parm/model_configure_regional_rrfs_a.IN +++ b/tests/parm/model_configure_regional_rrfs_a.IN @@ -8,7 +8,6 @@ nhours_fcst: @[FHMAX] dt_atmos: 60 cpl: .false. restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. quilting: @[QUILTING] @@ -21,26 +20,9 @@ num_files: 2 filename_base: 'dyn''phy' output_file: 'netcdf' write_nemsioflip: .false. -# -# Write-component output frequency parameter definitions: -# -# nfhout: -# Output frequency in hours after forecast hour "nfhmax_hf". -# -# nfhmax_hf: -# Number of forecast hours until output frequency "nfhout" takes affect. -# -# nfhout_hf: -# Output frequency in hours until forecast hour "nfhmax_hf". -# -# nsout: -# Output frequency in time steps (positive values override "nfhout" and -# "nfhout_hf"). -# -nfhout: 1 -nfhmax_hf: 60 -nfhout_hf: 1 -nsout: 0 + +output_fh: 1 -1 + # # Coordinate system used by the output grid. # diff --git a/tests/parm/model_configure_regional_stoch.IN b/tests/parm/model_configure_regional_stoch.IN index 77ccf60c3a..64928e436f 100644 --- a/tests/parm/model_configure_regional_stoch.IN +++ b/tests/parm/model_configure_regional_stoch.IN @@ -9,7 +9,6 @@ fhrot: @[FHROT] dt_atmos: 36 restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. quilting: @[QUILTING] write_groups: 1 @@ -32,6 +31,5 @@ lon1: -109.97410429 lat1: 26.31459843 dx: 3000.0 dy: 3000.0 - + output_fh: @[OUTPUT_FH] -nsout: -1 diff --git a/tests/parm/model_configure_rrfs_conus13km.IN b/tests/parm/model_configure_rrfs_conus13km.IN index 6feac2c081..792afa352f 100644 --- a/tests/parm/model_configure_rrfs_conus13km.IN +++ b/tests/parm/model_configure_rrfs_conus13km.IN @@ -9,7 +9,6 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] @@ -21,33 +20,15 @@ num_files: @[NUM_FILES] filename_base: @[FILENAME_BASE] output_file: @[OUTPUT_FILE] ideflate: @[IDEFLATE] -nbits: @[NBITS] +quantize_mode: 'quantize_bitround' +quantize_nsd: @[QUANTIZE_NSD] ichunk3d: @[ICHUNK3D] jchunk3d: @[JCHUNK3D] kchunk3d: @[KCHUNK3D] imo: @[IMO] jmo: @[JMO] -# -# Write-component output frequency parameter definitions: -# -# nfhout: -# Output frequency in hours after forecast hour "nfhmax_hf". -# -# nfhmax_hf: -# Number of forecast hours until output frequency "nfhout" takes affect. -# -# nfhout_hf: -# Output frequency in hours until forecast hour "nfhmax_hf". -# -# nsout: -# Output frequency in time steps (positive values override "nfhout" and -# "nfhout_hf"). -# -nfhout: 1 -nfhmax_hf: 60 -nfhout_hf: 1 -nsout: -1 +output_fh: 1 -1 # # Coordinate system used by the output grid. diff --git a/tests/parm/noahmptable.tbl b/tests/parm/noahmptable.tbl index 3ffd5b5320..44531919ed 100644 --- a/tests/parm/noahmptable.tbl +++ b/tests/parm/noahmptable.tbl @@ -217,7 +217,7 @@ !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, - z0mvt = 1.09, 1.10, 0.85, 0.80, 0.80, 0.20, 0.06, 0.60, 0.50, 0.12, 0.30, 0.15, 1.00, 0.14, 0.00, 0.00, 0.00, 0.30, 0.20, 0.03, + z0mvt = 1.00, 1.50, 0.75, 0.90, 0.85, 0.20, 0.10, 0.90, 0.60, 0.20, 0.30, 0.25, 1.00, 0.25, 0.00, 0.015, 0.00, 0.30, 0.10, 0.05, hvt = 20.0, 20.0, 18.0, 16.0, 16.0, 1.10, 1.10, 13.0, 10.0, 1.00, 5.00, 2.00, 15.0, 1.50, 0.00, 0.00, 0.00, 4.00, 2.00, 0.50, hvb = 8.50, 8.00, 7.00, 11.5, 10.0, 0.10, 0.10, 0.10, 0.10, 0.05, 0.10, 0.10, 1.00, 0.10, 0.00, 0.00, 0.00, 0.30, 0.20, 0.10, z0mhvt= 0.0545, 0.055, 0.047, 0.050, 0.050, 0.182, 0.0545, 0.046, 0.050, 0.120, 0.060, 0.075, 0.067, 0.093, 0.000, 0.000, 0.000, 0.075, 0.100, 0.060, @@ -226,32 +226,34 @@ !mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, ! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo mfsno = 1.00, 1.00, 1.00, 1.00, 1.00, 2.00, 2.00, 2.00, 2.00, 2.00, 3.00, 3.00, 4.00, 4.00, 2.50, 3.00, 3.00, 3.50, 3.50, 3.50, +!mfsno = 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, ! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo ! scffac = 0.008, 0.008, 0.008, 0.008, 0.008, 0.016, 0.016, 0.020, 0.020, 0.020, 0.020, 0.014, 0.042, 0.026, 0.030, 0.016, 0.030, 0.030, 0.030, 0.030, - scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, + scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, +! scffac = 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, ! row 1: vis ! row 2: near ir rhol_vis=0.07, 0.10, 0.07, 0.10, 0.10, 0.07, 0.07, 0.07, 0.10, 0.11, 0.105, 0.11, 0.00, 0.11, 0.00, 0.00, 0.00, 0.10, 0.10, 0.10, - rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.58, 0.515, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, + rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.35, 0.515, 0.35, 0.00, 0.35, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, ! row 1: vis ! row 2: near ir - rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.36, 0.26, 0.36, 0.00, 0.36, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, - rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.58, 0.485, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, + rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.31, 0.26, 0.31, 0.00, 0.31, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, + rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.53, 0.485, 0.53, 0.00, 0.53, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, ! row 1: vis ! row 2: near ir - taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.07, 0.06, 0.07, 0.00, 0.07, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, - taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, + taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.06, 0.05, 0.00, 0.05, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, + taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.34, 0.25, 0.34, 0.00, 0.34, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, ! row 1: vis ! row 2: near ir - taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.220, 0.1105, 0.220, 0.000, 0.220, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.380, 0.1905, 0.380, 0.000, 0.380, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.120, 0.1105, 0.120, 0.000, 0.120, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.250, 0.1905, 0.250, 0.000, 0.250, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - xl = 0.010, 0.010, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, + xl = 0.010, 0.10, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, ! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 ! cwpvt = 0.18, 0.67, 0.18, 0.67, 0.29, 1.0, 2.0, 1.3, 1.0, 5.0, 1.17, 1.67, 1.67, 1.67, 0.18, 0.18, 0.18, 0.67, 1.0, 0.18, cwpvt = 0.09, 0.335, 0.09, 0.335, 0.145, 0.5, 1.0, 0.65, 0.5, 2.5, 0.585, 0.835, 0.835, 0.835, 0.09, 0.09, 0.09, 0.335, 0.5, 0.09, @@ -335,10 +337,10 @@ !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 soil color index for soil albedo !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - albsat_vis = 0.25, 0.23, 0.21, 0.20, 0.19, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.12, 0.11, 0.10, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04 ! saturated soil albedos - albsat_nir = 0.50, 0.46, 0.42, 0.40, 0.38, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.24, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! saturated soil albedos - albdry_vis = 0.36, 0.34, 0.32, 0.31, 0.30, 0.29, 0.28, 0.27, 0.26, 0.25, 0.24, 0.23, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! dry soil albedos - albdry_nir = 0.61, 0.57, 0.53, 0.51, 0.49, 0.48, 0.45, 0.43, 0.41, 0.39, 0.37, 0.35, 0.33, 0.31, 0.29, 0.27, 0.25, 0.23, 0.21, 0.16 ! dry soil albedos + albsat_vis = 0.21, 0.20, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.13, 0.12, 0.11, 0.10, 0.10, 0.09, 0.08, 0.08, 0.08, 0.07, 0.07, 0.06 ! saturated soil albedos + albsat_nir = 0.42, 0.40, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.26, 0.24, 0.22, 0.20, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! saturated soil albedos + albdry_vis = 0.31, 0.30, 0.28, 0.27, 0.26, 0.24, 0.23, 0.22, 0.22, 0.22, 0.20, 0.19, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! dry soil albedos + albdry_nir = 0.52, 0.50, 0.46, 0.44, 0.42, 0.40, 0.38, 0.37, 0.36, 0.34, 0.32, 0.30, 0.30, 0.28, 0.27, 0.27, 0.27, 0.26, 0.25, 0.25 ! dry soil albedos albice = 0.80, 0.55 ! albedo land ice: 1=vis, 2=nir alblak = 0.60, 0.40 ! albedo frozen lakes: 1=vis, 2=nir omegas = 0.8 , 0.4 ! two-stream parameter omega for snow @@ -397,7 +399,7 @@ class_sno_age = 3600.0 ! snow aging e-folding time (s) in class albedo scheme class_alb_new = 0.84 ! fresh snow albedo in class scheme psiwlt = -150.0 !metric potential for wilting point (m) - z0soil = 0.002 ! bare-soil roughness length (m) (i.e., under the canopy) + z0soil = 0.015 ! bare-soil roughness length (m) (i.e., under the canopy) z0lake = 0.01 ! lake surface roughness length (m) / diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index ceb446cce3..8ed7dcfa75 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -10,23 +10,16 @@ max_output_fields = @[MAX_OUTPUT_FIELDS] / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -42,8 +35,9 @@ deflate_level=1 n_sponge = 42 nudge_qv = .true. nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 + tau = @[FV_CORE_TAU] + rf_cutoff = @[RF_CUTOFF] + fast_tau_w_sec = @[FAST_TAU_W_SEC] d2_bg_k1 = 0.20 d2_bg_k2 = 0.0 kord_tm = -9 @@ -116,6 +110,10 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. + progsigma = @[PROGSIGMA] + betascu = @[BETASCU] + betamcu = @[BETAMCU] + betadcu = @[BETADCU] imp_physics = @[IMP_PHYSICS] ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] @@ -380,8 +378,19 @@ deflate_level=1 knob_ugwp_effac = 1,1,1,1 knob_ugwp_doaxyz = 1 knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 54 + knob_ugwp_dokdis = @[KNOB_UGWP_DOKDIS] + knob_ugwp_ndx4lh = @[KNOB_UGWP_NDX4LH] + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This is only for cires_ugwpv_module.F90 +@[HIDE_UGWPV0] launch_level = 54 + ! These are only for cires_ugwpv1_module.F90 +@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 +@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 +@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 +@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 +@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' +@[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] / diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index f1d0675a58..511cbe1e34 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -10,12 +10,6 @@ prepend_date = .false. / - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - &fms_nml clock_grain = 'ROUTINE', domains_stack_size = 3000000, @@ -26,6 +20,10 @@ grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml layout = @[INPES],@[JNPES] io_layout = 1,1 @@ -110,7 +108,7 @@ nrows_blend = 10 / - &external_ic_nml + &external_ic_nml filtered_terrain = .true. levp = 65 gfs_dwinds = .true. @@ -131,7 +129,7 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - imp_physics = 8 + imp_physics = 8 ltaerosol = .F. ttendlim = -999.0 pdfcld = .false. @@ -164,8 +162,8 @@ random_clds = .false. trans_trac = .true. cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = 2 + imfshalcnv = -1 + imfdeepcnv = -1 cdmbgwd = 0.88, 0.04 cnvgwd = .false. do_gsl_drag_ls_bl = .false. diff --git a/tests/parm/regional_atmaq.nml.IN b/tests/parm/regional_atmaq.nml.IN index c99dcc4cae..0a5b3e3812 100644 --- a/tests/parm/regional_atmaq.nml.IN +++ b/tests/parm/regional_atmaq.nml.IN @@ -10,13 +10,6 @@ prepend_date = .false. / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 12000000 @@ -27,6 +20,10 @@ grid_file = 'INPUT/grid_spec.nc' / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. diff --git a/tests/parm/regional_rrfs_a.nml.IN b/tests/parm/regional_rrfs_a.nml.IN index ddaa2438a7..1e1255e81b 100644 --- a/tests/parm/regional_rrfs_a.nml.IN +++ b/tests/parm/regional_rrfs_a.nml.IN @@ -37,12 +37,6 @@ netcdf_default_format = 'netcdf4' / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 @@ -53,6 +47,10 @@ use_io_netcdf = .true. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. diff --git a/tests/parm/regional_stoch.nml.IN b/tests/parm/regional_stoch.nml.IN index 2f5ab5772a..2efe1a5f1f 100644 --- a/tests/parm/regional_stoch.nml.IN +++ b/tests/parm/regional_stoch.nml.IN @@ -41,18 +41,16 @@ nt_checker = 0 / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. @@ -172,7 +170,7 @@ iaer = 5111 ialb = 1 iau_delthrs = 6 - iau_inc_files = @[IAU_INC_FILES] + iau_inc_files = @[IAU_INC_FILES] iaufhrs = 30 icliq_sw = 2 icloud_bl = 1 diff --git a/tests/parm/regional_wofs.nml.IN b/tests/parm/regional_wofs.nml.IN index b7d0b30653..e79f196863 100644 --- a/tests/parm/regional_wofs.nml.IN +++ b/tests/parm/regional_wofs.nml.IN @@ -33,18 +33,16 @@ nt_checker = 0 / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 3000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 1d6ea99ad3..883a508911 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -36,18 +36,16 @@ nt_checker = 0 / -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - &fms_nml clock_grain = 'ROUTINE' domains_stack_size = 5000000 ! Smoke needs a higher value than 3000000 default. print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. @@ -149,13 +147,13 @@ mix_chem = @[RRFS_SMOKE] enh_mix = @[RRFS_SMOKE] dust_opt = 5 - drydep_opt = 1 + drydep_opt = 1 coarsepm_settling = 1 smoke_forecast = @[SMOKE_FORECAST] aero_ind_fdb = .false. aero_dir_fdb = .false. addsmoke_flag = 1 - wetdep_ls_opt = 1 + wetdep_ls_opt = 1 do_plumerise = @[RRFS_SMOKE] plumerisefire_frq = 60 dust_alpha = 0.01 @@ -333,9 +331,9 @@ fntsfa = '' fntsfc = 'RTGSST.1982.2012.monthly.clim.grb' fnvegc = 'C775.vegetation_greenness.tileX.nc' ! should not exist - fnvetc = 'C775.vegetation_type.tileX.nc' ! should not exist - fnvmnc = 'C775.vegetation_greenness.tileX.nc' ! should not exist - fnvmxc = 'C775.vegetation_greenness.tileX.nc' ! should not exist + fnvetc = 'C775.vegetation_type.tileX.nc' ! should not exist + fnvmnc = 'C775.vegetation_greenness.tileX.nc' ! should not exist + fnvmxc = 'C775.vegetation_greenness.tileX.nc' ! should not exist fnzorc = 'igbp' fsicl = 99999 fsics = 99999 diff --git a/tests/parm/stream.config_hycom.IN b/tests/parm/stream.config_hycom.IN new file mode 100644 index 0000000000..f548739bcc --- /dev/null +++ b/tests/parm/stream.config_hycom.IN @@ -0,0 +1,32 @@ +stream_info: stream01 stream02 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: @[INLINE_MESH_OCN] +stream_lev_dimname01: null +stream_data_files01: @[INLINE_STREAM_FILES_OCN] +stream_data_variables01: "TMP_surface So_t" +stream_dst_mask01: 1 + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: linear +readMode02: single +dtlimit02: 1.5 +stream_offset02: @[STREAM_OFFSET] +yearFirst02: @[SYEAR] +yearLast02: @[SYEAR] +yearAlign02: @[SYEAR] +stream_vectors02: null +stream_mesh_file02: @[INLINE_MESH_ATM] +stream_lev_dimname02: null +stream_data_files02: @[INLINE_STREAM_FILES_ATM] +stream_data_variables02: "UFLX_surface Faxa_taux" "VFLX_surface Faxa_tauy" "PRATE_surface Faxa_rain" "NETSW_surface Faxa_swnet" "NETLW_surface Faxa_lwnet" "SHTFL_surface Faxa_sen" "LHTFL_surface Faxa_lat" "PRES_surface Sa_pslv" "UGRD_10maboveground Sa_u10m" "VGRD_10maboveground Sa_v10m" diff --git a/tests/parm/stream.config_mom6.IN b/tests/parm/stream.config_mom6.IN new file mode 100644 index 0000000000..f03563fe3c --- /dev/null +++ b/tests/parm/stream.config_mom6.IN @@ -0,0 +1,32 @@ +stream_info: stream01 stream02 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: @[INLINE_MESH_OCN] +stream_lev_dimname01: null +stream_data_files01: @[INLINE_STREAM_FILES_OCN] +stream_data_variables01: "TMP_surface So_t" +stream_dst_mask01: 1 + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: linear +readMode02: single +dtlimit02: 1.5 +stream_offset02: @[STREAM_OFFSET] +yearFirst02: @[SYEAR] +yearLast02: @[SYEAR] +yearAlign02: @[SYEAR] +stream_vectors02: null +stream_mesh_file02: @[INLINE_MESH_ATM] +stream_lev_dimname02: null +stream_data_files02: @[INLINE_STREAM_FILES_ATM] +stream_data_variables02: "SWVDR_surface Faxa_swvdr" "SWVDF_surface Faxa_swvdf" "SWNDR_surface Faxa_swndr" "SWNDF_surface Faxa_swndf" "NETLW_surface Faxa_lwnet" "SHTFL_surface Faxa_sen" "EVAP_surface Faxa_evap" "PRATE_surface Faxa_rain" "UFLX_surface Faxa_taux" "VFLX_surface Faxa_tauy" "PRES_surface Sa_pslv" "UGRD_10maboveground Sa_u10m" "VGRD_10maboveground Sa_v10m" diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN deleted file mode 100644 index 089b8e54f2..0000000000 --- a/tests/parm/stretched-input.nml.IN +++ /dev/null @@ -1,285 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 30 - nudge_qv = .true. - rf_fast = .false. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .true. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN deleted file mode 100644 index 2f4ae5dabb..0000000000 --- a/tests/parm/stretched-nest-input.nml.IN +++ /dev/null @@ -1,294 +0,0 @@ -&atmos_model_nml - blocksize = 24 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml -! grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 97 - npy = 97 - ntiles = 6, - npz = @[NPZ] -! grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 30 - nudge_qv = .true. - rf_fast = .false. - tau = 5. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.15 - d2_bg_k2 = 0.02 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 1 - n_split = 8 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 600 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - no_dycore = .false. - z_tracer = .true. - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 - -/ -&fv_nest_nml - grid_pes = 48, 48 - tile_coarse = 0, 6 - num_tile_top = 6 - p_split=1 - nest_refine = 0, 3 - nest_ioffsets= 1, 14 - nest_joffsets= 1, 19 -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - nstf_name = @[NSTF_NAME] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 300. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy -/ -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/stretched-nest-quilt-model_configure.IN b/tests/parm/stretched-nest-quilt-model_configure.IN deleted file mode 100644 index 9f1262c4e1..0000000000 --- a/tests/parm/stretched-nest-quilt-model_configure.IN +++ /dev/null @@ -1,53 +0,0 @@ -start_year: 2018 -start_month: 10 -start_day: 15 -start_hour: 00 -start_minute: 0 -start_second: 0 -nhours_fcst: @[FHMAX] - -dt_atmos: 450 -restart_interval: 0 -output_1st_tstep_rst: .false. - -quilting: .true. -write_groups: 3 -write_tasks_per_group: 4 -num_files: 2 -filename_base: 'dyn' 'phy' -output_file: 'netcdf' - -# output_grid: 'regional_latlon' -# lon1: 225.0 -# lon2: 300.0 -# lat1: 10.0 -# lat2: 60.0 -# dlon: 0.2 -# dlat: 0.2 - - output_grid: 'rotated_latlon' - cen_lon: -97.5 # central longitude - cen_lat: 34.0 # central latitude - lon1: -22.0 # longitude of lower-left point in rotated coordinate system (in degrees) - lat1: -17.0 # latitude of lower-left . . . . - lon2: 22.0 # longitude of upper-right . . . . - lat2: 17.0 # latitude of upper-right . . . . - dlon: 0.2 - dlat: 0.2 - -# output_grid: 'lambert_conformal' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.0 # central latitude -# stdlat1: 30.0 -# stdlat2: 60.0 -# nx: 450 # Number of points along x-axis. -# ny: 430 # Number of points along y-axis. -# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) -# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) -# dx: 10000.0 # x-direction grid length -# dy: 10000.0 # y-direction grid length - -nfhout: 3 -nfhmax_hf: 12 -nfhout_hf: 1 -nsout: -1 diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN new file mode 100644 index 0000000000..3b6a305247 --- /dev/null +++ b/tests/parm/ufs.configure.atm.IN @@ -0,0 +1,26 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: false + +# EARTH # +EARTH_component_list: ATM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 +:: + +# Run Sequence # +runSeq:: + ATM +:: diff --git a/tests/parm/nems.configure.atm.IN b/tests/parm/ufs.configure.atm_esmf.IN similarity index 83% rename from tests/parm/nems.configure.atm.IN rename to tests/parm/ufs.configure.atm_esmf.IN index 37e634311d..8eb7b94dc7 100644 --- a/tests/parm/nems.configure.atm.IN +++ b/tests/parm/ufs.configure.atm_esmf.IN @@ -1,9 +1,9 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # diff --git a/tests/parm/nems.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN similarity index 85% rename from tests/parm/nems.configure.atm_lnd.IN rename to tests/parm/ufs.configure.atm_lnd.IN index 3f07f2edb1..de2991fcac 100644 --- a/tests/parm/nems.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -26,10 +26,6 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_lnd = 96 - history_n_lnd_inst = 6 - history_option_lnd_inst = nhours - pio_rearranger = @[pio_rearranger] :: # ATM # @@ -49,7 +45,7 @@ LND_attributes:: Verbosity = 1 Diagnostic = 0 mosaic_file = @[mosaic_file] - input_dir = INPUT/ + input_dir = @[lnd_input_dir] ic_type = @[lnd_ic_type] layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs num_soil_levels = 4 @@ -64,15 +60,17 @@ LND_attributes:: supercooled_soilwater_option = 1 frozen_soil_adjust_option = 1 radiative_transfer_option = 3 - snow_albedo_option = 1 - precip_partition_option = 4 + snow_albedo_option = @[snow_albedo_option] + precip_partition_option = @[precip_partition_option] soil_temp_lower_bdy_option = 2 soil_temp_time_scheme_option = 3 surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 glacier_option = 1 surface_thermal_roughness_option = 2 - output_freq = 10800 + output_freq = 3600 + restart_freq = -1 calc_snet = @[CALC_SNET] + initial_albedo = @[initial_albedo] :: # cold @@ -98,30 +96,28 @@ DRIVER_attributes:: :: ALLCOMP_attributes:: - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 # required for data atmosphere configurations ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld - restart_n = 12 + restart_n = 1 restart_option = nhours restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 2.5e-1 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + read_restart = @[READRESTART] + mediator_present = true orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - read_restart = @[READRESTART] - mediator_present = true :: diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN new file mode 100644 index 0000000000..6c60333e07 --- /dev/null +++ b/tests/parm/ufs.configure.atmaero.IN @@ -0,0 +1,38 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: false + +# EARTH # +EARTH_component_list: ATM CHM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + @ +:: diff --git a/tests/parm/nems.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero_esmf.IN similarity index 89% rename from tests/parm/nems.configure.atmaero.IN rename to tests/parm/ufs.configure.atmaero_esmf.IN index 690a60ede8..0c20f20905 100644 --- a/tests/parm/nems.configure.atmaero.IN +++ b/tests/parm/ufs.configure.atmaero_esmf.IN @@ -1,9 +1,9 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # diff --git a/tests/parm/nems.configure.atmaq.IN b/tests/parm/ufs.configure.atmaq.IN similarity index 92% rename from tests/parm/nems.configure.atmaq.IN rename to tests/parm/ufs.configure.atmaq.IN index 5bb92e1359..7c725ec158 100644 --- a/tests/parm/nems.configure.atmaq.IN +++ b/tests/parm/ufs.configure.atmaq.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -30,7 +30,7 @@ AQM_attributes:: # Run Sequence # runSeq:: - @180 + @@[DT_ATMOS] ATM phase1 ATM -> AQM AQM @@ -38,4 +38,3 @@ runSeq:: ATM phase2 @ :: - diff --git a/tests/parm/nems.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN similarity index 86% rename from tests/parm/nems.configure.atmw.IN rename to tests/parm/ufs.configure.atmw.IN index 53b2718533..bd1c554ecc 100644 --- a/tests/parm/nems.configure.atmw.IN +++ b/tests/parm/ufs.configure.atmw.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -34,10 +34,7 @@ WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false - diro = "." - logfile = wav.log mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] user_sets_restname = true :: @@ -68,27 +65,23 @@ DRIVER_attributes:: MED_attributes:: ATM_model = @[atm_model] WAV_model = @[wav_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.atmw restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 dbug_flag = @[cap_dbug_flag] - use_coldstart = false stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 diff --git a/tests/parm/nems.configure.blocked_atm_wav.IN b/tests/parm/ufs.configure.blocked_atm_wav.IN similarity index 94% rename from tests/parm/nems.configure.blocked_atm_wav.IN rename to tests/parm/ufs.configure.blocked_atm_wav.IN index 37f809e748..b0354b287c 100644 --- a/tests/parm/nems.configure.blocked_atm_wav.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # diff --git a/tests/parm/nems.configure.blocked_atm_wav_2way.IN b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN similarity index 94% rename from tests/parm/nems.configure.blocked_atm_wav_2way.IN rename to tests/parm/ufs.configure.blocked_atm_wav_2way.IN index 24409614fb..d66d77eede 100644 --- a/tests/parm/nems.configure.blocked_atm_wav_2way.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # diff --git a/tests/parm/nems.configure.datm_cdeps.IN b/tests/parm/ufs.configure.datm_cdeps.IN similarity index 89% rename from tests/parm/nems.configure.datm_cdeps.IN rename to tests/parm/ufs.configure.datm_cdeps.IN index 05d22912d6..afaa2f98cf 100644 --- a/tests/parm/nems.configure.datm_cdeps.IN +++ b/tests/parm/ufs.configure.datm_cdeps.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -42,7 +42,9 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # @@ -54,7 +56,8 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -76,6 +79,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_aofluxes_run MED med_phases_prep_ocn_accum @ @@ -99,9 +103,10 @@ MED_attributes:: history_n = 1 history_option = nhours history_ymd = -999 - coupling_mode = nems_orig_data + coupling_mode = ufs.nfrac.aoflux pio_rearranger = @[pio_rearranger] :: + ALLCOMP_attributes:: ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 @@ -109,15 +114,13 @@ ALLCOMP_attributes:: ScalarFieldIdxNextSwCday = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = DATM_@[DATM_SRC] restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] coldair_outbreak_mod = .false. flds_wiso = .false. flux_convergence = @[flux_convergence] diff --git a/tests/parm/nems.configure.hafs_atm.IN b/tests/parm/ufs.configure.hafs_atm.IN similarity index 92% rename from tests/parm/nems.configure.hafs_atm.IN rename to tests/parm/ufs.configure.hafs_atm.IN index d72121d166..2d4ab6996b 100644 --- a/tests/parm/nems.configure.hafs_atm.IN +++ b/tests/parm/ufs.configure.hafs_atm.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # diff --git a/tests/parm/nems.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN similarity index 91% rename from tests/parm/nems.configure.hafs_atm_docn.IN rename to tests/parm/ufs.configure.hafs_atm_docn.IN index de557c6a7b..c5d5304eb6 100644 --- a/tests/parm/nems.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -1,5 +1,5 @@ ############################################## -##### NEMS Run-Time Configuration File ##### +##### UFS Run-Time Configuration File ###### ############################################## # ESMF # @@ -47,7 +47,6 @@ OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 1 Diagnostic = 0 - mesh_ocn = @[ocn_mesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 @@ -81,18 +80,19 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] OCN_model = @[ocn_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 20 - use_coldstart = true + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN similarity index 83% rename from tests/parm/nems.configure.hafs_atm_ocn.IN rename to tests/parm/ufs.configure.hafs_atm_ocn.IN index 8ea8a6ab50..8b16fd5ef7 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -1,5 +1,5 @@ ############################################## -##### NEMS Run-Time Configuration File ##### +##### UFS Run-Time Configuration File ###### ############################################## # ESMF # @@ -38,7 +38,6 @@ ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 1 Diagnostic = 0 - mesh_atm = @[MESH_ATM] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 @@ -64,7 +63,7 @@ OCN_attributes:: hyc_esmf_imp_output = .true. import_diagnostics = .false. import_setting = flexible - hyc_impexp_file = nems.configure + hyc_impexp_file = ufs.configure espc_show_impexp_minmax = .true. ocean_start_dtg = @[OCEAN_START_DTG] start_hour = 0 @@ -110,18 +109,19 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] OCN_model = @[ocn_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 20 - use_coldstart = true + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 @@ -141,12 +141,12 @@ 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' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' + 'taux10' 'inst_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'inst_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'inst_net_sw_flx' 'W_m-2' + 'lwflxd' 'inst_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' + 'sensflx' 'inst_sensi_heat_flx' 'W_m-2' + 'latflx' 'inst_laten_heat_flx' 'W_m-2' :: diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN similarity index 84% rename from tests/parm/nems.configure.hafs_atm_ocn_wav.IN rename to tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index 4a30039a23..c9cc9d0fe2 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -1,5 +1,5 @@ ############################################## -##### NEMS Run-Time Configuration File ##### +##### UFS Run-Time Configuration File ###### ############################################## # ESMF # @@ -65,7 +65,7 @@ OCN_attributes:: hyc_esmf_imp_output = .true. import_diagnostics = .false. import_setting = flexible - hyc_impexp_file = nems.configure + hyc_impexp_file = ufs.configure espc_show_impexp_minmax = .true. ocean_start_dtg = @[OCEAN_START_DTG] start_hour = 0 @@ -86,7 +86,6 @@ WAV_attributes:: OverwriteSlice = false merge_import = .true. mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] user_sets_restname = true :: @@ -123,25 +122,25 @@ ALLCOMP_attributes:: OCN_model = @[ocn_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 6 - use_coldstart = true + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_read_restart = @[USE_COLDSTART] mediator_present = true stop_n = @[FHMAX] stop_option = nhours @@ -155,12 +154,12 @@ 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' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' + 'taux10' 'inst_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'inst_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'inst_net_sw_flx' 'W_m-2' + 'lwflxd' 'inst_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' + 'sensflx' 'inst_sensi_heat_flx' 'W_m-2' + 'latflx' 'inst_laten_heat_flx' 'W_m-2' :: diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN new file mode 100644 index 0000000000..f1b2bd18ca --- /dev/null +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -0,0 +1,169 @@ +############################################## +##### UFS Run-Time Configuration File ###### +############################################## + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 0 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy + pio_rearranger = @[pio_rearranger] + ocn_use_data_first_import = .true. + wav_use_data_first_import = .true. +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + mesh_atm = @[MESH_ATM] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + write_restart_at_endofrun = .true. +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + Diagnostic = 0 + cdf_impexp_freq = 3 + cpl_hour = 0 + cpl_min = 0 + cpl_sec = @[coupling_interval_sec] + base_dtg = @[SYEAR]@[SMONTH]@[SDAY]@[SHOUR] + merge_import = .false. + skip_first_import = .false. + hycom_arche_output = .false. + hyc_esmf_exp_output = .true. + hyc_esmf_imp_output = .true. + import_diagnostics = .false. + import_setting = flexible + hyc_impexp_file = ufs.configure + espc_show_impexp_minmax = .true. + ocean_start_dtg = @[OCEAN_START_DTG] + start_hour = 0 + start_min = 0 + start_sec = 0 + end_hour = @[FHMAX] + end_min = 0 + end_sec = 0 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + Diagnostic = 0 + OverwriteSlice = false + merge_import = .false. + mesh_wav = @[MESH_WAV] + user_sets_restname = true +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + MED med_phases_cdeps_run + MED med_phases_prep_atm + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + OCN + WAV + ATM -> MED :remapMethod=redist + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + ScalarFieldCount = 4 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 6 + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_present = true + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: + +ocn_export_fields:: + 'sst' 'sea_surface_temperature' 'K' + 'mask' 'ocean_mask' '1' + 'cpl_scalars' 'cpl_scalars' '1' +:: + +ocn_import_fields:: + 'taux10' 'inst_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'inst_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'inst_net_sw_flx' 'W_m-2' + 'lwflxd' 'inst_net_lw_flx' 'W_m-2' + 'mslprs' 'inst_pres_height_surface' 'Pa' + 'sensflx' 'inst_sensi_heat_flx' 'W_m-2' + 'latflx' 'inst_laten_heat_flx' 'W_m-2' +:: diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN new file mode 100644 index 0000000000..2a57c59cf3 --- /dev/null +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -0,0 +1,138 @@ +############################################## +##### UFS Run-Time Configuration File ###### +############################################## + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 0 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + history_n = 3 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy + pio_rearranger = @[pio_rearranger] + ocn_use_data_first_import = .true. + wav_use_data_first_import = .true. +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + mesh_atm = @[MESH_ATM] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + write_restart_at_endofrun = .true. +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + Diagnostic = 0 + history_n = 3 + history_option = nhours + merge_import = .false. + skip_first_import = .false. #.true. + use_mommesh = true + eps_imesh = 2.5e-1 + mesh_ocn = @[MESH_OCN] +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + Diagnostic = 0 + OverwriteSlice = false + merge_import = .false. + mesh_wav = @[MESH_WAV] + user_sets_restname = true +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + MED med_phases_cdeps_run + MED med_phases_prep_atm + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + OCN + WAV + ATM -> MED :remapMethod=redist + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 3 + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_present = true + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN similarity index 81% rename from tests/parm/nems.configure.hafs_atm_wav.IN rename to tests/parm/ufs.configure.hafs_atm_wav.IN index 7919cfe719..9adfb9ed85 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -1,5 +1,5 @@ ############################################## -##### NEMS Run-Time Configuration File ##### +##### UFS Run-Time Configuration File ###### ############################################## # ESMF # @@ -55,7 +55,6 @@ WAV_attributes:: OverwriteSlice = false merge_import = .true. mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] user_sets_restname = true :: @@ -85,25 +84,25 @@ ALLCOMP_attributes:: ATM_model = @[atm_model] WAV_model = @[wav_model] MED_model = cmeps - ScalarFieldCount = 3 + ScalarFieldCount = 4 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 + ScalarFieldIdxGridNTile = 3 + ScalarFieldIdxNextSwCday = 4 ScalarFieldName = cpl_scalars start_type = startup case_name = ufs.hafs restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 6 - use_coldstart = true + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] orb_eccen = 1.e36 orb_iyear = 2000 orb_iyear_align = 2000 orb_mode = fixed_year orb_mvelp = 1.e36 orb_obliq = 1.e36 - mediator_read_restart = @[USE_COLDSTART] mediator_present = true stop_n = @[FHMAX] stop_option = nhours @@ -117,12 +116,12 @@ 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' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' + 'taux10' 'inst_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'inst_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'inst_net_sw_flx' 'W_m-2' + 'lwflxd' 'inst_net_lw_flx' 'W_m-2' 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' + 'sensflx' 'inst_sensi_heat_flx' 'W_m-2' + 'latflx' 'inst_laten_heat_flx' 'W_m-2' :: diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN new file mode 100644 index 0000000000..fe33f5da9f --- /dev/null +++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN @@ -0,0 +1,39 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: false + +# EARTH # +EARTH_component_list: ATM WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_attributes:: + Verbosity = 0 +:: + + + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM + ATM -> WAV + WAV + @ +:: diff --git a/tests/parm/nems.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN similarity index 84% rename from tests/parm/nems.configure.leapfrog_atm_wav.IN rename to tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN index d66f4b0700..c4b6055fd1 100644 --- a/tests/parm/nems.configure.leapfrog_atm_wav.IN +++ b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN @@ -1,9 +1,9 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # @@ -18,7 +18,7 @@ ATM_petlist_bounds: @[atm_petlist_bounds] ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] :: # WAV # @@ -35,7 +35,7 @@ WAV_attributes:: runSeq:: @@[coupling_interval_sec] ATM - ATM -> WAV + ATM -> WAV WAV @ :: diff --git a/tests/parm/nems.configure.cpld_noaero_nowave.IN b/tests/parm/ufs.configure.s2s.IN similarity index 74% rename from tests/parm/nems.configure.cpld_noaero_nowave.IN rename to tests/parm/ufs.configure.s2s.IN index dfbf53c042..9ff939a6c7 100644 --- a/tests/parm/nems.configure.cpld_noaero_nowave.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -1,10 +1,10 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -15,16 +15,14 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -32,25 +30,26 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -73,6 +72,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -90,29 +90,32 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/nems.configure.cpld_agrid.IN b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN similarity index 83% rename from tests/parm/nems.configure.cpld_agrid.IN rename to tests/parm/ufs.configure.s2s_aoflux_esmf.IN index f5f8c06c0e..c5c2705e03 100644 --- a/tests/parm/nems.configure.cpld_agrid.IN +++ b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -38,7 +38,9 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # @@ -50,7 +52,8 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -74,12 +77,12 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist MED med_phases_post_ocn MED med_phases_restart_write - MED med_phases_history_write @ :: @@ -92,11 +95,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] aoflux_grid = 'agrid' aoflux_code = 'ccpp' aoflux_ccpp_suite = 'FV3_sfc_ocean' @@ -108,23 +107,31 @@ MED_attributes:: ccpp_ini_layout = @[INPES],@[JNPES] ccpp_ini_read = false pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] eps_imesh = @[eps_imesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN new file mode 100644 index 0000000000..3161e4891f --- /dev/null +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -0,0 +1,129 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] + history_n_ice_inst = @[MED_history_n] + history_option_ice_inst = nhours + history_n_ocn_inst = @[MED_history_n] + history_option_ocn_inst = nhours +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN new file mode 100644 index 0000000000..f49831094c --- /dev/null +++ b/tests/parm/ufs.configure.s2sa.IN @@ -0,0 +1,132 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: false + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN new file mode 100644 index 0000000000..3921f3881b --- /dev/null +++ b/tests/parm/ufs.configure.s2sa_esmf.IN @@ -0,0 +1,137 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/nems.configure.cpld_noaero_outwav.IN b/tests/parm/ufs.configure.s2sw.IN similarity index 76% rename from tests/parm/nems.configure.cpld_noaero_outwav.IN rename to tests/parm/ufs.configure.s2sw.IN index d03e0d9711..1ccf32fe09 100644 --- a/tests/parm/nems.configure.cpld_noaero_outwav.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -1,9 +1,10 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -21,7 +22,7 @@ ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -31,10 +32,12 @@ OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # @@ -42,10 +45,11 @@ ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -57,11 +61,8 @@ WAV_petlist_bounds: @[wav_petlist_bounds] WAV_attributes:: Verbosity = 0 OverwriteSlice = false - diro = "." - logfile = wav.log mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence @@ -84,6 +85,7 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum MED med_phases_prep_wav_accum @ @@ -105,29 +107,32 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] WAV_model = @[wav_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN new file mode 100644 index 0000000000..a9eed48546 --- /dev/null +++ b/tests/parm/ufs.configure.s2sw_esmf.IN @@ -0,0 +1,141 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg + MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist + MED -> OCN :remapMethod=redist + WAV + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum + @ + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN similarity index 78% rename from tests/parm/nems.configure.cpld_noaero.IN rename to tests/parm/ufs.configure.s2sw_fast_esmf.IN index e1d49d0913..3d7df9de69 100644 --- a/tests/parm/nems.configure.cpld_noaero.IN +++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN @@ -1,9 +1,9 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # @@ -24,7 +24,7 @@ ATM_petlist_bounds: @[atm_petlist_bounds] ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -35,10 +35,12 @@ OCN_petlist_bounds: @[ocn_petlist_bounds] OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # @@ -47,10 +49,11 @@ ICE_petlist_bounds: @[ice_petlist_bounds] ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -63,11 +66,8 @@ WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false - diro = "." - logfile = wav.log mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence @@ -93,6 +93,7 @@ runSeq:: MED med_phases_post_ice WAV -> MED :remapMethod=redist MED med_phases_post_wav + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -105,35 +106,36 @@ runSeq:: DRIVER_attributes:: :: - MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] WAV_model = @[wav_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN new file mode 100644 index 0000000000..a1bb9f95a6 --- /dev/null +++ b/tests/parm/ufs.configure.s2swa.IN @@ -0,0 +1,147 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: false + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg + MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist + MED -> OCN :remapMethod=redist + WAV + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum + @ + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN new file mode 100644 index 0000000000..820da8ee0f --- /dev/null +++ b/tests/parm/ufs.configure.s2swa_esmf.IN @@ -0,0 +1,153 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg + MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist + MED -> OCN :remapMethod=redist + WAV + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum + @ + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN similarity index 83% rename from tests/parm/nems.configure.cpld.IN rename to tests/parm/ufs.configure.s2swa_fast_esmf.IN index c864b32bd9..e77f9266bc 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN @@ -1,5 +1,5 @@ ############################################# -#### NEMS Run-Time Configuration File ##### +#### UFS Run-Time Configuration File ###### ############################################# # ESMF # @@ -45,7 +45,9 @@ OCN_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] :: # ICE # @@ -57,7 +59,8 @@ ICE_attributes:: DumpFields = false ProfileMemory = false OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] stop_n = @[RESTART_N] stop_option = nhours stop_ymd = -999 @@ -70,11 +73,8 @@ WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false - diro = "." - logfile = wav.log mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence @@ -104,6 +104,7 @@ runSeq:: MED med_phases_post_ice WAV -> MED :remapMethod=redist MED med_phases_post_wav + MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -122,29 +123,32 @@ MED_attributes:: ICE_model = @[ice_model] OCN_model = @[ocn_model] WAV_model = @[wav_model] - history_n = 1 - history_option = nhours - history_ymd = -999 coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] :: + ALLCOMP_attributes:: - ScalarFieldCount = 2 + ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 ScalarFieldIdxGridNY = 2 + ScalarFieldIdxGridNTile = 3 ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] - restart_dir = RESTART/ + restart_dir = @[CMEPS_RESTART_DIR] case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours restart_ymd = -999 + write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] stop_n = @[FHMAX] stop_option = nhours stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 :: diff --git a/tests/parm/wam.nml.IN b/tests/parm/wam.nml.IN deleted file mode 100644 index 59dcb406af..0000000000 --- a/tests/parm/wam.nml.IN +++ /dev/null @@ -1,333 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - -&fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6, - npz = @[NPZ] - grid_type = -1 - ncnst = 11 - make_nh = @[MAKE_NH] - fv_debug = .false. - molecular_diffusion=.true. - range_warn = .false. - reset_eta = .false. - n_sponge = -1 - nudge_qv = .true. - tau = -5.0e1 - rf_cutoff = 2.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.005 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 1800 - d2_bg = 0. - nord = 1 - dddmp = 0.1 - d4_bg = 0.20 - vtdm4 = 0.07 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 0. - do_sat_adj = .false. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = @[IAER] - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .true. - trans_trac = .false. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - isatmedmf = 1 - cdmbgwd = 3.5,0.25 - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - iopt_diag = 2 - debug = .false. - levr = 90 - h2o_phys = @[H2O_PHYS] - nstf_name = @[NSTF_NAME] - oz_phys = .false. - oz_phys_2015 = .true. - cplflx = @[CPLFLX] - cplwav = @[CPLWAV] - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp", - FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = @[FNABSC] - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ -&nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, - SKEBNORM=1, - SKEB_NPASS=30, - SKEB_VDOF=5, - SKEB=@[SKEB], - SKEB_TAU=2.16E4, - SKEB_LSCALE=1000.E3, - SHUM=@[SHUM], - SHUM_TAU=21600, - SHUM_LSCALE=500000, - SPPT=@[SPPT], - SPPT_TAU=21600, - SPPT_LSCALE=500000, - SPPT_LOGIT=.true., - SPPT_SFCLIMIT=.true., - ISEED_SHUM=1, - ISEED_SKEB=2, - ISEED_SPPT=3, -/ -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, -/ - -&sat_vapor_pres_nml - use_exact_qs = .true. - show_all_bad_values=.false. -/ -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ -&multi_gases_nml - ri= 295.3892, 461.50, 0., 0., 0., 0., 0., 173.2247, 519.674, 259.8370 ,0.,0. - cpi=1031.1083, 1846.00, 0., 0., 0., 0., 0., 820.2391, 1299.185, 918.0969, 0.,0. -/ -&molecular_diffusion_nml - tau_visc = 1.0 - tau_cond = 1.0 - tau_diff = 1.0 - md_layers = 70 - md_tadj_layers = 0 - md_consv_te = 1.0 - md_wait_hr = 0.0 -/ diff --git a/tests/parm/wam_v17.nml.IN b/tests/parm/wam_v17.nml.IN new file mode 100644 index 0000000000..8e5c6cb90d --- /dev/null +++ b/tests/parm/wam_v17.nml.IN @@ -0,0 +1,434 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = @[DOMAINS_STACK_SIZE] + print_memory_usage = .false. +/ + +&fms2_io_nml + netcdf_default_format = "netcdf4" +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + npz = @[NPZ] + dz_min = @[DZ_MIN] + ncnst = 12 + psm_bc = @[PSM_BC] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .false. + reset_eta = .false. + n_sponge = -1 + nudge_qv = @[NUDGE_QV] + tau = @[TAU] + rf_cutoff = 2.e2 + molecular_diffusion=.true. + d2_bg_k1 = @[D2_BG_K1] + d2_bg_k2 = @[D2_BG_K2] + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = @[FV_SG_ADJ] + d2_bg = 0. + nord = 2 + dddmp = @[DDDMP] + d4_bg = @[D4_BG] + vtdm4 = @[VTDM4] + delt_max = @[DELT_MAX] + ke_bg = 0. + do_vort_damp = @[DO_VORT_DAMP] + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = @[D_CON] + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = 6 + hord_tr = 8 + adjust_dry_mass = .false. + consv_te = 0. + do_sat_adj = @[DO_SAT_ADJ] + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = @[Z_TRACER] + inline_q = @[INLINE_Q] + agrid_vel_rst = .false. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = "fv3_increment.nc" +/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = @[FHZERO] + h2o_phys = .true. + ldiag3d = .true. + qdiag3d = .true. + print_diff_pgr= .false. + fhcyc = @[FHCYC] + use_ufo = .true. + pre_rad = .false. + imp_physics = @[IMP_PHYSICS] + iovr = 3 + ltaerosol = .false. + lradar = .false. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = @[DO_TOFD] + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + min_lakeice = 0.15 + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] + ext_diag_thompson = @[EXT_DIAG_THOMPSON] + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 2 + iems = 2 + iaer = @[IAER] + icliq_sw = 2 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = @[SHAL_CNV] + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = @[SATMEDMF] + isatmedmf = 1 + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] + trans_trac = @[TRANS_TRAC] + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] + cdmbgwd = @[CDMBWD] + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = 2 + iopt_dveg = 4 + iopt_crs = 2 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 3 + iopt_trs = 2 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 3 + iopt_alb = 1 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 3 + iopt_diag = 2 + debug = .false. + nstf_name = @[NSTF_NAME] + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = @[LGFDLMPRAD] + effr_in = .true. + ldiag_ugwp = @[LDIAG_UGWP] + fscav_aero = @[FSCAV_AERO] + do_RRTMGP = .false. + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + levr = 89 + iaufhrs = 6 + iau_delthrs = 30 + iau_inc_files= '' + iau_drymassfixer = .false. + use_med_flux = @[USE_MED_FLUX] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + cpllnd = @[CPLLND] + cpllnd2atm = @[CPLLND2ATM] + do_ca = @[DO_CA] + ca_global = @[CA_GLOBAL] + ca_sgs = @[CA_SGS] + nca = @[NCA] + ncells = @[NCELLS] + nlives = @[NLIVES] + nseed = @[NSEED] + nfracseed = @[NFRACSEED] + nthresh = @[NTHRESH] + ca_trigger = @[CA_TRIGGER] + nspinup = @[NSPINUP] + iseed_ca = @[ISEED_CA] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = @[KNOB_UGWP_VERSION] + ! This is only for UGWP v0 +@[HIDE_UGWPV0] launch_level = 25 + ! These are only for UGWP v1 +@[HIDE_UGWPV1] knob_ugwp_palaunch = 275.0e2 +@[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] +@[HIDE_UGWPV1] knob_ugwp_lzmax = 15.750e3 +@[HIDE_UGWPV1] knob_ugwp_lzmin = 0.75e3 +@[HIDE_UGWPV1] knob_ugwp_lzstar = 2.0e3 +@[HIDE_UGWPV1] knob_ugwp_taumin = 0.25e-3 +@[HIDE_UGWPV1] knob_ugwp_tauamp = 3.0e-3 +@[HIDE_UGWPV1] knob_ugwp_lhmet = 200.0e3 +@[HIDE_UGWPV1] knob_ugwp_orosolv = 'pss-1986' +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSOCC = @[FNSOCC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG =.false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = @[LANDICE] + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.true., + SPPT_SFCLIMIT=.true., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, +/ + +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] +/ + +&MOM_input_nml + output_directory = '@[MOM6_OUTPUT_DIR]', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = '@[MOM6_RESTART_DIR]', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override'/ +/ + +&multi_gases_nml + ri=295.3892, 461.50, 0., 0., 0., 0., 0., 173.2247, 519.674, 259.8370 ,0.,0.,0. + cpi=1031.1083, 1846.00, 0., 0., 0., 0., 0., 820.2391, 1299.185, 918.0969, 0.,0.,0. +/ + +&molecular_diffusion_nml + tau_visc = 1.0 + tau_cond = 1.0 + tau_diff = 1.0 + md_layers = 70 + md_tadj_layers = 0 + md_consv_te = 1.0 + md_wait_hr = 0.0 +/ diff --git a/tests/parm/ww3_multi.inp.IN b/tests/parm/ww3_multi.inp.IN index a16fb5d951..2edaebcf11 100644 --- a/tests/parm/ww3_multi.inp.IN +++ b/tests/parm/ww3_multi.inp.IN @@ -13,11 +13,11 @@ $ $ @[FLAGMASKCOMP] @[FLAGMASKOUT] $ - @[OUT_BEG] @[DTFLD] @[OUT_END] @[GOFILETYPE] + @[OUT_BEG] @[WW3_DTFLD] @[OUT_END] @[GOFILETYPE] N - @[OUTPARS_WAV] + @[WW3_OUTPARS] $ - @[OUT_BEG] @[DTPNT] @[OUT_END] @[POFILETYPE] + @[OUT_BEG] @[WW3_DTPNT] @[OUT_END] @[POFILETYPE] $ $ Global output point data file for global wave ensembles $ @@ -322,7 +322,7 @@ $ $ $ Keep next two lines formatting as is to allow proper parsing @[RST_BEG] @[DTRST] @[RST_END] @[RSTTYPE] -@[RST_2_BEG] @[DT_2_RST] @[RST_2_END] +@[RST_2_BEG] @[WW3_DT_2_RST] @[RST_2_END] $ @[OUT_BEG] 0 @[OUT_END] $ diff --git a/tests/parm/ww3_shel.inp.IN b/tests/parm/ww3_shel.inp.IN index cb2cafd0fc..73e53ff801 100644 --- a/tests/parm/ww3_shel.inp.IN +++ b/tests/parm/ww3_shel.inp.IN @@ -25,11 +25,11 @@ $ $ IOSTYP 1 $ - @[RUN_BEG] @[DTFLD] @[RUN_END] @[GOFILETYPE] + @[RUN_BEG] @[WW3_DTFLD] @[RUN_END] @[GOFILETYPE] N - @[OUTPARS_WAV] + @[WW3_OUTPARS] $ - @[RUN_BEG] @[DTPNT] @[RUN_END] @[POFILETYPE] + @[RUN_BEG] @[WW3_DTPNT] @[RUN_END] @[POFILETYPE] $ $ Global output point data file for global wave ensembles $ @@ -344,7 +344,7 @@ $ Flag for extra fields in the restart file (coupling restart) $ $ Keep next two lines formatting as is to allow proper parsing @[RUN_BEG] @[DTRST] @[RUN_END] T -@[RUN_BEG] @[DT_2_RST] @[RUN_END] +@[RUN_BEG] @[WW3_DT_2_RST] @[RUN_END] $ @[RUN_BEG] 0 @[RUN_END] $ diff --git a/tests/parm/ww3_shel.nml.IN b/tests/parm/ww3_shel.nml.IN index 08c694963b..4921a6d9ad 100644 --- a/tests/parm/ww3_shel.nml.IN +++ b/tests/parm/ww3_shel.nml.IN @@ -1,20 +1,20 @@ &input_nml input%forcing%winds = 'C' - input%forcing%currents = '@[WAV_CUR]' - input%forcing%ice_conc = '@[WAV_ICE]' - input%forcing%ice_param1 = '@[WAV_IC1]' - input%forcing%ice_param5 = '@[WAV_IC5]' + input%forcing%currents = '@[WW3_CUR]' + input%forcing%ice_conc = '@[WW3_ICE]' + input%forcing%ice_param1 = '@[WW3_IC1]' + input%forcing%ice_param5 = '@[WW3_IC5]' / &output_type_nml - type%field%list = '@[OUTPARS_WAV]' + type%field%list = '@[WW3_OUTPARS]' type%point%file = 'ww3_points.list' / &output_date_nml date%field%outffile = '1' - date%field%stride = '@[DTFLD]' + date%field%stride = '@[WW3_DTFLD]' date%point%outffile = '1' - date%point%stride = '@[DTPNT]' - date%restart2%stride = '@[DT_2_RST]' + date%point%stride = '@[WW3_DTPNT]' + date%restart2%stride = '@[WW3_DT_2_RST]' / diff --git a/tests/rt.conf b/tests/rt.conf index bd059358fb..36679f99e1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -21,399 +21,416 @@ ### Intel Tests ### ### S2S tests ### -COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8_mixedmode | | baseline | -RUN | cpld_control_gfsv17 | | baseline | +COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | | fv3 | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | + +#GFS +COMPILE | s2swa_32bit_pdlib | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_gfsv17 | - noaacloud | baseline | +RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 +RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 +RUN | cpld_mpi_gfsv17 | - noaacloud | | + +#SFS +COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_sfs | - noaacloud | baseline | + +COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | +RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8 | | baseline | -RUN | cpld_restart_p8 | | | cpld_control_p8 -RUN | cpld_control_qr_p8 | | | -RUN | cpld_restart_qr_p8 | | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | | | -RUN | cpld_decomp_p8 | | | -RUN | cpld_mpi_p8 | | | -#RUN | cpld_multigrid_p8 | | | -RUN | cpld_control_ciceC_p8 | - gaea | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 jet acorn gaea s4 | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn gaea s4 | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet cheyenne acorn | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet cheyenne acorn | | cpld_bmark_p8 - -COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_noaero_p8 | | baseline | -RUN | cpld_control_nowave_noaero_p8 | | baseline | - -COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | -RUN | cpld_debug_p8 | - wcoss2 acorn | baseline | - -COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | -RUN | cpld_debug_noaero_p8 | - wcoss2 acorn | baseline | +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 + +# Aerosol, no Wave +RUN | cpld_s2sa_p8 | - noaacloud | baseline | + +COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_noaero_p8 | | baseline | +RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | + +COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | + +COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | # Waves and aerosol off for computing fluxes in mediator -COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | -RUN | cpld_control_noaero_p8_agrid | | baseline | +COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | +RUN | cpld_control_noaero_p8_agrid | | baseline | -COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c48 | | baseline | -#RUN | cpld_warmstart_c48 | | baseline | -#RUN | cpld_restart_c48 | | | cpld_warmstart_c48 +COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c48 | | baseline | +RUN | cpld_warmstart_c48 | - noaacloud | baseline | +RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - cheyenne | fv3 | -RUN | cpld_control_p8_faster | - cheyenne | baseline | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh -COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera orion cheyenne | fv3 | -RUN | cpld_control_pdlib_p8 | + hera orion cheyenne | baseline | -RUN | cpld_restart_pdlib_p8 | + hera orion cheyenne | | cpld_control_pdlib_p8 -RUN | cpld_mpi_pdlib_p8 | + hera orion cheyenne | | cpld_control_pdlib_p8 +COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | +RUN | cpld_control_pdlib_p8 | - noaacloud | baseline | +RUN | cpld_restart_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | - noaacloud | | cpld_control_pdlib_p8 -COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera orion cheyenne | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera orion cheyenne | baseline | +COMPILE | s2sw_pdlib_debug | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | cpld_debug_pdlib_p8 | - noaacloud | baseline | ### ATM tests ### -COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | -RUN | control_flake | | baseline | -RUN | control_CubedSphereGrid | | baseline | -RUN | control_CubedSphereGrid_parallel | - wcoss2 acorn | baseline | -RUN | control_latlon | | baseline | -RUN | control_wrtGauss_netcdf_parallel | | baseline | -RUN | control_c48 | | baseline | -RUN | control_c192 | | baseline | -RUN | control_c384 | | baseline | -RUN | control_c384gdas | | baseline | -RUN | control_stochy | | baseline | -RUN | control_stochy_restart | | | control_stochy -RUN | control_lndp | | baseline | -RUN | control_iovr4 | | baseline | -RUN | control_iovr5 | | baseline | -RUN | control_p8 | | baseline | -RUN | control_restart_p8 | | | control_p8 -RUN | control_qr_p8 | | | -RUN | control_restart_qr_p8 | | | control_qr_p8 -RUN | control_decomp_p8 | | | -RUN | control_2threads_p8 | | | -RUN | control_p8_lndp | | baseline | -RUN | control_p8_rrtmgp | | baseline | -RUN | control_p8_mynn | | baseline | -RUN | merra2_thompson | | baseline | -RUN | regional_control | | baseline | -RUN | regional_restart | | | regional_control -RUN | regional_control_qr | | | -RUN | regional_restart_qr | | | regional_control_qr -RUN | regional_decomp | | | -RUN | regional_2threads | | | -RUN | regional_noquilt | - jet s4 | baseline | -RUN | regional_netcdf_parallel | - acorn | baseline | -RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | - jet s4 | baseline | +COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | +RUN | control_flake | | baseline | +RUN | control_CubedSphereGrid | | baseline | +RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | +RUN | control_latlon | | baseline | +RUN | control_wrtGauss_netcdf_parallel | | baseline | +RUN | control_c48 | | baseline | +RUN | control_c48.v2.sfc | | baseline | +RUN | control_c192 | - noaacloud | baseline | +RUN | control_c384 | | baseline | +RUN | control_c384gdas | - noaacloud | baseline | +RUN | control_stochy | | baseline | +RUN | control_stochy_restart | - noaacloud | | control_stochy +RUN | control_lndp | | baseline | +RUN | control_iovr4 | | baseline | +RUN | control_iovr5 | | baseline | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_p8.v2.sfc | - noaacloud | baseline | +RUN | control_p8_ugwpv1 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_noqr_p8 | - noaacloud | | +RUN | control_restart_noqr_p8 | - noaacloud | | control_noqr_p8 +RUN | control_decomp_p8 | - noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | +RUN | control_p8_lndp | | baseline | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_mynn | - noaacloud | baseline | +RUN | merra2_thompson | - noaacloud | baseline | +RUN | regional_control | | baseline | +RUN | regional_restart | - noaacloud | | regional_control +RUN | regional_decomp | - noaacloud | | +RUN | regional_2threads | - derecho noaacloud | | +RUN | regional_noquilt | - jet s4 | baseline | +RUN | regional_netcdf_parallel | - acorn | baseline | +RUN | regional_2dwrtdecomp | | | +RUN | regional_wofs | - jet s4 | baseline | COMPILE | ifi | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON | + acorn | fv3 | -RUN | regional_ifi_control | + acorn | baseline | -RUN | regional_ifi_decomp | + acorn | | -RUN | regional_ifi_2threads | + acorn | | +RUN | regional_ifi_control | + acorn | baseline | +RUN | regional_ifi_decomp | + acorn | | +RUN | regional_ifi_2threads | + acorn | | COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | -RUN | rap_control | | baseline | -RUN | regional_spp_sppt_shum_skeb | | baseline | -RUN | rap_decomp | | | -RUN | rap_2threads | | | -RUN | rap_restart | | | rap_control -RUN | rap_sfcdiff | | baseline | -RUN | rap_sfcdiff_decomp | | | -RUN | rap_sfcdiff_restart | | | rap_sfcdiff -RUN | hrrr_control | - wcoss2 | baseline | -RUN | hrrr_control_qr | - wcoss2 | | -RUN | hrrr_control_decomp | - wcoss2 | | -RUN | hrrr_control_2threads | - wcoss2 | | -RUN | hrrr_control_restart | - wcoss2 | | hrrr_control -RUN | hrrr_control_restart_qr | - wcoss2 | | hrrr_control_qr -RUN | rrfs_v1beta | | baseline | -RUN | rrfs_v1nssl | | baseline | -RUN | rrfs_v1nssl_nohailnoccn | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | | | -RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | | | -RUN | rrfs_conus13km_hrrr_warm | | baseline | -RUN | rrfs_smoke_conus13km_radar_tten_warm | | baseline | -# These two should run and not crash, but they do not match their baselines: -#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | -#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm -# Just to make sure restart doesn't crash again: -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | | | rrfs_smoke_conus13km_hrrr_warm_qr - -COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | | fv3 | -RUN | control_csawmg | - gaea.intel | baseline | -RUN | control_csawmgt | | baseline | -RUN | control_ras | | baseline | +RUN | rap_control | | baseline | +RUN | regional_spp_sppt_shum_skeb | | baseline | +RUN | rap_decomp | - noaacloud | | +RUN | rap_2threads | - noaacloud | | +RUN | rap_restart | - noaacloud | | rap_control +RUN | rap_sfcdiff | - noaacloud | baseline | +RUN | rap_sfcdiff_decomp | - noaacloud | | +RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff +RUN | hrrr_control | - noaacloud | baseline | +RUN | hrrr_control_decomp | - noaacloud | | +RUN | hrrr_control_2threads | - noaacloud | | +RUN | hrrr_control_restart | - noaacloud | | hrrr_control +RUN | rrfs_v1beta | | baseline | +RUN | rrfs_v1nssl | | baseline | +RUN | rrfs_v1nssl_nohailnoccn | | baseline | + +COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | +RUN | control_csawmg | - noaacloud | baseline | +RUN | control_ras | - noaacloud | baseline | + +COMPILE | csawmg | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | + hera hercules | fv3 | +RUN | control_csawmg | + hera hercules | baseline | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | -RUN | control_wam | | baseline | +COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | +RUN | control_wam | - noaacloud | baseline | -COMPILE | atm_faster_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | -RUN | control_p8_faster | | baseline | -RUN | regional_control_faster | | baseline | +COMPILE | atm_faster_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | control_p8_faster | - noaacloud | baseline | +RUN | regional_control_faster | | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | -RUN | rrfs_conus13km_hrrr_warm_debug | | baseline | -# This should run and not crash, but does not match its baseline -#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | -RUN | control_CubedSphereGrid_debug | | baseline | -RUN | control_wrtGauss_netcdf_parallel_debug | | baseline | -RUN | control_stochy_debug | | baseline | -RUN | control_lndp_debug | | baseline | -RUN | control_csawmg_debug | | baseline | -RUN | control_csawmgt_debug | | baseline | -RUN | control_ras_debug | | baseline | -RUN | control_diag_debug | | baseline | -RUN | control_debug_p8 | | baseline | -RUN | regional_debug | | baseline | -RUN | rap_control_debug | | baseline | -RUN | hrrr_control_debug | | baseline | -RUN | rap_unified_drag_suite_debug | | | -RUN | rap_diag_debug | | baseline | -RUN | rap_cires_ugwp_debug | | baseline | -RUN | rap_unified_ugwp_debug | | | -RUN | rap_lndp_debug | | baseline | -RUN | rap_progcld_thompson_debug | | baseline | -RUN | rap_noah_debug | | baseline | -RUN | rap_sfcdiff_debug | | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | | baseline | -RUN | rrfs_v1beta_debug | | baseline | -RUN | rap_clm_lake_debug | | baseline | -RUN | rap_flake_debug | | baseline | - -COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | -RUN | control_wam_debug | | baseline | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 | - noaacloud | fv3 | +RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | +RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | +RUN | control_stochy_debug | - noaacloud | baseline | +RUN | control_lndp_debug | - noaacloud | baseline | +RUN | control_csawmg_debug | - noaacloud | baseline | +RUN | control_ras_debug | - noaacloud | baseline | +RUN | control_diag_debug | - noaacloud | baseline | +RUN | control_debug_p8 | - noaacloud | baseline | +RUN | regional_debug | - noaacloud | baseline | +RUN | rap_control_debug | - noaacloud | baseline | +RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | hrrr_gf_debug | - noaacloud | baseline | +RUN | hrrr_c3_debug | - noaacloud | baseline | +RUN | rap_unified_drag_suite_debug | - noaacloud | | +RUN | rap_diag_debug | - noaacloud | baseline | +RUN | rap_cires_ugwp_debug | - noaacloud | baseline | +RUN | rap_unified_ugwp_debug | - noaacloud | | +RUN | rap_lndp_debug | - noaacloud | baseline | +RUN | rap_progcld_thompson_debug | - noaacloud | baseline | +RUN | rap_noah_debug | - noaacloud | baseline | +RUN | rap_sfcdiff_debug | - noaacloud | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | +RUN | rap_clm_lake_debug | - noaacloud | baseline | +RUN | rap_flake_debug | - noaacloud | baseline | +RUN | gnv1_c96_no_nest_debug | - noaacloud | baseline | +### DEBUG ATM tests ### +COMPILE | atm_debug_dyn32 | gnu | -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,FV3_global_nest_v1 | + hera hercules | fv3 | +RUN | control_csawmg_debug | + hera hercules | baseline | + +COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | control_wam_debug | - noaacloud hercules | baseline | ### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | -RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | | baseline | -RUN | rap_control_dyn32_phy32 | | baseline | -RUN | hrrr_control_dyn32_phy32 | | baseline | -RUN | hrrr_control_qr_dyn32_phy32 | | baseline | -RUN | rap_2threads_dyn32_phy32 | | | -RUN | hrrr_control_2threads_dyn32_phy32 | | | -RUN | hrrr_control_decomp_dyn32_phy32 | | | -RUN | rap_restart_dyn32_phy32 | | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | | | hrrr_control_dyn32_phy32 -RUN | hrrr_control_restart_qr_dyn32_phy32 | | | hrrr_control_qr_dyn32_phy32 - -COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DFASTER=ON | | fv3 | -RUN | rrfs_smoke_conus13km_fast_phy32 | | baseline | -RUN | rrfs_smoke_conus13km_fast_phy32_qr | | baseline | -RUN | rrfs_smoke_conus13km_fast_phy32_restart_mismatch | | baseline | rrfs_smoke_conus13km_fast_phy32 -RUN | rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch | | | rrfs_smoke_conus13km_fast_phy32_qr - -COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | -RUN | rap_control_dyn64_phy32 | | baseline | - -COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | -RUN | rap_control_debug_dyn32_phy32 | | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | | baseline | - -COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | -RUN | rap_control_dyn64_phy32_debug | | baseline | +COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | +RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 + +COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | conus13km_control | - noaacloud | baseline | +RUN | conus13km_2threads | - noaacloud | | conus13km_control +RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control + +COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | + +COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_qr | - noaacloud | | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | - noaacloud | | + +COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### -COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm | | baseline | -RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | -RUN | hafs_regional_atm_ocn | | baseline | -RUN | hafs_regional_atm_wav | | baseline | -RUN | hafs_regional_atm_ocn_wav | | baseline | -RUN | hafs_regional_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_telescopic_2nests_atm | - jet s4 | baseline | -RUN | hafs_global_1nest_atm | - jet s4 | baseline | -RUN | hafs_global_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_global_multiple_4nests_atm | - jet s4 | baseline | -RUN | hafs_global_multiple_4nests_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_storm_following_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_storm_following_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 | baseline | -RUN | hafs_global_storm_following_1nest_atm | - jet s4 | baseline | - -COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 | baseline | - -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON | -jet s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 | baseline | - -COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2 | fv3 | -RUN | hafs_regional_docn | - wcoss2 | baseline | -RUN | hafs_regional_docn_oisst | - wcoss2 | baseline | -RUN | hafs_regional_datm_cdeps | - wcoss2 -jet s4 | baseline | +COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm | | baseline | +RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | +RUN | hafs_regional_atm_ocn | | baseline | +RUN | hafs_regional_atm_wav | | baseline | +RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | +RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | + +# This probably works on S4, but I cannot know for certain. I don't have access to the machine. +RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline | + +COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | + +COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | + +COMPILE | hafs_mom6w | intel| -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | + +COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | +RUN | hafs_regional_docn | - noaacloud | baseline | +RUN | hafs_regional_docn_oisst | - noaacloud | baseline | +RUN | hafs_regional_datm_cdeps | - jet s4 noaacloud | baseline | ### CDEPS Data Atmosphere tests ### -COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_restart_cfsr | - wcoss2 | | datm_cdeps_control_cfsr -RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_ciceC_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_bulk_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_bulk_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_mx025_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_mx025_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 | | -RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_gfs | - wcoss2 | baseline | - -COMPILE | datm_cdeps_debug | intel | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn | fv3 | -RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn | baseline | - -COMPILE | datm_cdeps_faster | intel | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | +COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | +RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr +RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | | +RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline | + +COMPILE | datm_cdeps_debug | intel | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 | +RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline | + +COMPILE | datm_cdeps_faster | intel | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | ### CDEPS Data Atmosphere tests with LND ### COMPILE | datm_cdeps_land | intel | -DAPP=LND | - wcoss2 | fv3 | -RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_gswp3_rst | - wcoss2 | | datm_cdeps_lnd_gswp3 +RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 -### ATM-LND tests, -D32BIT=ON has issue and NoahMP reuires r8 libraries ### -COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km | | fv3 | -RUN | control_p8_atmlnd_sbs | | baseline | +### AMIP+ tests ### +COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | atm_ds2s_docn_pcice | - noaacloud | baseline | +COMPILE | atm_ds2s_docn_dice | intel | -DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | +RUN | atm_ds2s_docn_dice | - noaacloud wcoss2 acorn | baseline | cpld_control_nowave_noaero_p8 + +### ATM-LND tests ### +COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | +RUN | control_p8_atmlnd_sbs | - noaacloud wcoss2 | baseline | +RUN | control_p8_atmlnd | - noaacloud wcoss2 | baseline | +RUN | control_restart_p8_atmlnd | - noaacloud wcoss2 | | control_p8_atmlnd + +COMPILE | atml_debug | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DDEBUG=ON | | fv3 | +RUN | control_p8_atmlnd_debug | - noaacloud wcoss2 | baseline | ### ATM-WAV tests ### #mediator (cmeps) -COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | -RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | - -#connectors (wmesmf) -COMPILE | atmwm | intel | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2 | fv3 | -RUN | control_atmwav | - wcoss2 | baseline | -#RUN | control_c384gdas_wav | - jet cheyenne wcoss2 | baseline | +COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | +RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | ### ATM-GOCART tests ### -COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | -RUN | atmaero_control_p8 | | baseline | -RUN | atmaero_control_p8_rad | | baseline | -RUN | atmaero_control_p8_rad_micro | | baseline | +COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | +RUN | atmaero_control_p8 | - noaacloud | baseline | +RUN | atmaero_control_p8_rad | - noaacloud | baseline | +RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | ### ATM-CMAQ tests ### -COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | -RUN | regional_atmaq | - jet s4 | baseline | - -COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet gaea cheyenne s4 | fv3 | -RUN | regional_atmaq_debug | - jet gaea cheyenne s4 | baseline | - -COMPILE | atmaq_faster | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | - jet wcoss2 acorn s4 | fv3 | -RUN | regional_atmaq_faster | - jet wcoss2 acorn s4 | baseline | +#COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | +#RUN | regional_atmaq | - jet s4 | baseline | +COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | +RUN | regional_atmaq_debug | - hera jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### -COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | + hera cheyenne | fv3 | -RUN | control_c48 | + hera cheyenne | baseline | -RUN | control_stochy | + hera cheyenne | baseline | -RUN | control_ras | + hera cheyenne | baseline | -RUN | control_p8 | + hera cheyenne | baseline | -RUN | control_flake | + hera cheyenne | baseline | - -COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control | + hera cheyenne | baseline | -RUN | rap_decomp | + hera cheyenne | | -RUN | rap_2threads | + hera cheyenne | | -RUN | rap_restart | + hera cheyenne | | rap_control -RUN | rap_sfcdiff | + hera cheyenne | baseline | -RUN | rap_sfcdiff_decomp | + hera cheyenne | | -RUN | rap_sfcdiff_restart | + hera cheyenne | | rap_sfcdiff -RUN | hrrr_control | + hera cheyenne | baseline | -RUN | hrrr_control_qr | + hera cheyenne | | -RUN | hrrr_control_2threads | + hera cheyenne | | -RUN | hrrr_control_decomp | + hera cheyenne | | -RUN | hrrr_control_restart | + hera cheyenne | | hrrr_control -RUN | hrrr_control_restart_qr | + hera cheyenne | | hrrr_control_qr -RUN | rrfs_v1beta | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_qr | + hera cheyenne | | -RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | + hera cheyenne | | -RUN | rrfs_smoke_conus13km_radar_tten_warm | + hera cheyenne | baseline | -RUN | rrfs_conus13km_hrrr_warm | + hera cheyenne | baseline | -# These two will run and not crash, but they do not match their baselines: -#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | + hera cheyenne | | -#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | + hera cheyenne | | rrfs_smoke_conus13km_hrrr_warm -# Just to make sure restart doesn't crash again: -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_hrrr_warm -RUN | rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch | + hera cheyenne | | rrfs_smoke_conus13km_hrrr_warm_qr +COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 | + hera hercules | fv3 | +RUN | control_c48 | + hera hercules | baseline | +RUN | control_stochy | + hera hercules | baseline | +RUN | control_ras | + hera hercules | baseline | +RUN | control_p8 | + hera hercules | baseline | +RUN | control_p8_ugwpv1 | + hera hercules | baseline | +RUN | control_flake | + hera hercules | baseline | + +COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera hercules | fv3 | +RUN | rap_control | + hera hercules | baseline | +RUN | rap_decomp | + hera hercules | | +RUN | rap_2threads | + hera hercules | | +RUN | rap_restart | + hera hercules | | rap_control +RUN | rap_sfcdiff | + hera hercules | baseline | +RUN | rap_sfcdiff_decomp | + hera hercules | | +RUN | rap_sfcdiff_restart | + hera hercules | | rap_sfcdiff +RUN | hrrr_control | + hera hercules | baseline | +RUN | hrrr_control_noqr | + hera hercules | | +RUN | hrrr_control_2threads | + hera hercules | | +RUN | hrrr_control_decomp | + hera hercules | | +RUN | hrrr_control_restart | + hera hercules | | hrrr_control +RUN | hrrr_control_restart_noqr | + hera hercules | | hrrr_control_noqr +RUN | rrfs_v1beta | + hera hercules | baseline | ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | control_diag_debug | + hera cheyenne | baseline | -RUN | regional_debug | + hera cheyenne | baseline | -RUN | rap_control_debug | + hera cheyenne | baseline | -RUN | hrrr_control_debug | + hera cheyenne | baseline | -RUN | rap_diag_debug | + hera cheyenne | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera cheyenne | baseline | -RUN | rap_progcld_thompson_debug | + hera cheyenne | baseline | -RUN | rrfs_v1beta_debug | + hera cheyenne | baseline | -RUN | control_ras_debug | + hera cheyenne | baseline | -RUN | control_stochy_debug | + hera cheyenne | baseline | -RUN | control_debug_p8 | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | + hera cheyenne | | -RUN | rrfs_conus13km_hrrr_warm_debug | + hera cheyenne | baseline | -# This will run and not crash, but will not match its baseline: -#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | + hera cheyenne | | -RUN | rap_flake_debug | + hera cheyenne | baseline | -RUN | rap_clm_lake_debug | + hera cheyenne | baseline | - -COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | control_wam_debug | + hera cheyenne | baseline | +COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | +RUN | control_diag_debug | + hera hercules | baseline | +RUN | regional_debug | + hera hercules | baseline | +RUN | rap_control_debug | + hera hercules | baseline | +RUN | hrrr_control_debug | + hera hercules | baseline | +RUN | hrrr_gf_debug | + hera hercules | baseline | +RUN | hrrr_c3_debug | + hera hercules | baseline | +RUN | rap_diag_debug | + hera hercules | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera hercules | baseline | +RUN | rap_progcld_thompson_debug | + hera hercules | baseline | +RUN | rrfs_v1beta_debug | + hera hercules | baseline | +RUN | control_ras_debug | + hera hercules | baseline | +RUN | control_stochy_debug | + hera hercules | baseline | +RUN | control_debug_p8 | + hera hercules | baseline | +RUN | rap_flake_debug | + hera hercules | baseline | +RUN | rap_clm_lake_debug | + hera hercules | baseline | +RUN | gnv1_c96_no_nest_debug | + hera hercules | baseline | + + +COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera hercules | fv3 | +RUN | control_wam_debug | + hercules | baseline | ### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_qr_dyn32_phy32 | + hera cheyenne | baseline | -RUN | rap_2threads_dyn32_phy32 | + hera cheyenne | | -RUN | hrrr_control_2threads_dyn32_phy32 | + hera cheyenne | | -RUN | hrrr_control_decomp_dyn32_phy32 | + hera cheyenne | | -RUN | rap_restart_dyn32_phy32 | + hera cheyenne | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | + hera cheyenne | | hrrr_control_dyn32_phy32 -RUN | hrrr_control_restart_qr_dyn32_phy32 | + hera cheyenne | | hrrr_control_qr_dyn32_phy32 -RUN | rrfs_smoke_conus13km_phy32 | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_phy32_qr | + hera cheyenne | baseline | -RUN | rrfs_smoke_conus13km_phy32_restart_mismatch | + hera cheyenne | baseline | rrfs_smoke_conus13km_phy32 -RUN | rrfs_smoke_conus13km_phy32_restart_qr_mismatch | + hera cheyenne | | rrfs_smoke_conus13km_phy32_qr - -COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn64_phy32 | + hera cheyenne | baseline | - -COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | rap_control_debug_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | + hera cheyenne | baseline | - -COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn64_phy32_debug | + hera cheyenne | baseline | +COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera hercules | fv3 | +RUN | rap_control_dyn32_phy32 | + hera hercules | baseline | +RUN | hrrr_control_dyn32_phy32 | + hera hercules | baseline | +RUN | rap_2threads_dyn32_phy32 | + hera hercules | | +RUN | hrrr_control_2threads_dyn32_phy32 | + hera hercules | | +RUN | hrrr_control_decomp_dyn32_phy32 | + hera hercules | | +RUN | rap_restart_dyn32_phy32 | + hera hercules | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | + hera hercules | | hrrr_control_dyn32_phy32 +RUN | conus13km_control | + hera hercules | baseline | +RUN | conus13km_2threads | + hera hercules | | conus13km_control +RUN | conus13km_restart_mismatch | + hera hercules | baseline | conus13km_control + +# Expected to fail: +# RUN | conus13km_restart | + hera hercules | | conus13km_control +# RUN | conus13km_decomp | + hera hercules | | conus13km_control + +COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera hercules | fv3 | +RUN | rap_control_dyn64_phy32 | + hera hercules | baseline | + +COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | +RUN | rap_control_debug_dyn32_phy32 | + hera hercules | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | + hera hercules | baseline | +RUN | conus13km_debug | + hera hercules | baseline | +RUN | conus13km_debug_qr | + hera hercules | | +RUN | conus13km_debug_2threads | + hera hercules | | +RUN | conus13km_radar_tten_debug | + hera hercules | baseline | + +# Expected to fail: +# RUN | conus13km_debug_decomp | + hera derecho hercules | | + +COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera hercules | fv3 | +RUN | rap_control_dyn64_phy32_debug | + hera hercules | baseline | ### S2S tests ### -COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_control_p8 | + hera cheyenne | baseline | +COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | +#RUN | cpld_control_p8 | + hercules | baseline | -COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_control_nowave_noaero_p8 | + hera cheyenne | baseline | +COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | +RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | -COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_debug_p8 | + hera cheyenne | baseline | +COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | +#RUN | cpld_debug_p8 | + hercules | baseline | # Unstructured WW3 -COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera cheyenne | fv3 | -RUN | cpld_control_pdlib_p8 | + hera cheyenne | baseline | +COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | +RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | -COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera cheyenne | baseline | +COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | +RUN | cpld_debug_pdlib_p8 | + hera hercules | baseline | ### CDEPS Data Atmosphere test ### -COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera cheyenne | fv3 | -RUN | datm_cdeps_control_cfsr | + hera cheyenne | baseline | +COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | +RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 456a33a883..8d2ed7a467 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1,189 +1,638 @@ #!/bin/bash -set -eux - +set -eu +set -o errexit #Lets trap exit info as error for logging +echo "******Regression Testing Script Started******" SECONDS=0 hostname die() { echo "$@" >&2; exit 1; } + usage() { - set +x + set +x #No reason to print out a bunch of echo statements here echo - echo "Usage: $0 -a | -c | -e | -h | -k | -w | -d | -l | -m | -n | -r " + echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -v | -w" echo echo " -a to use on for HPC queue" + echo " -b create new baselines only for tests listed in " echo " -c create new baseline results" + echo " -d delete run direcotries that are not used by other tests" echo " -e use ecFlow workflow manager" echo " -h display this help" echo " -k keep run directory after rt.sh is completed" echo " -l runs test specified in " echo " -m compare against new baseline results" echo " -n run single test " + echo " -o compile only, skip tests" echo " -r use Rocoto workflow manager" + echo " -v verbose output" echo " -w for weekly_test, skip comparing baseline results" - echo " -d delete run direcotries that are not used by other tests" echo - set -x - exit 1 } [[ $# -eq 0 ]] && usage -rt_single() { - rm -f $RT_SINGLE_CONF +update_rtconf() { + echo "rt.sh: Checking & Updating test configuration..." + find_match() { + # This function finds if a test in $TESTS_FILE matches one + # in our list of tests to be run. + THIS_TEST_WITH_COMPILER=$1 + shift + TWC=("$@") + FOUND=false + for i in "${!TWC[@]}"; do + if [[ "${TWC[${i}]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then + FOUND=true + echo "${i}" + return + fi + done + if [[ ${FOUND} == false ]]; then + echo "-1" + fi + } + + # This script will update the rt.conf ($TESTS_FILE) if needed by the + # -b or -n options being called/used. + + # THE USER CHOSE THE -b OPTION + if [[ ${NEW_BASELINES_FILE} != '' ]]; then + [[ -s "${NEW_BASELINES_FILE}" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..." + TEST_WITH_COMPILE=() + readarray -t TEST_WITH_COMPILE < "${NEW_BASELINES_FILE}" + # else USER CHOSE THE -n OPTION + elif [[ ${RUN_SINGLE_TEST} == true ]]; then + TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}") + else + echo "No update needed to rt.conf" + return + fi + + RT_TEMP_CONF="rt_temp.conf" + rm -f "${RT_TEMP_CONF}" && touch "${RT_TEMP_CONF}" local compile_line='' - local run_line='' - while read -r line || [ "$line" ]; do + while read -r line || [[ -n "${line}" ]]; do line="${line#"${line%%[![:space:]]*}"}" + [[ -n "${line}" ]] || continue [[ ${#line} == 0 ]] && continue - [[ $line == \#* ]] && continue + [[ ${line} == \#* ]] && continue - if [[ $line == COMPILE* ]] ; then - MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - if [[ ! $RT_COMPILER_IN == $RT_COMPILER ]]; then - continue - fi + if [[ ${line} =~ COMPILE ]] ; then + MACHINES=$(cut -d'|' -f5 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + RT_COMPILER_IN=$(cut -d'|' -f3 <<< "${line}") + RT_COMPILER_IN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER_IN}") if [[ ${MACHINES} == '' ]]; then - compile_line=$line + compile_line=${line} + COMPILE_LINE_USED=false elif [[ ${MACHINES} == -* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=${line}; COMPILE_LINE_USED=false elif [[ ${MACHINES} == +* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=${line}; COMPILE_LINE_USED=false fi + fi - if [[ $line =~ RUN ]]; then - tmp_test=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - if [[ $SINGLE_NAME == $tmp_test && $compile_line != '' ]]; then - echo $compile_line > $RT_SINGLE_CONF - dep_test=$(echo $line | grep -w $tmp_test | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - if [[ $dep_test != '' ]]; then - dep_line=$(cat rt.conf | grep -w "$dep_test" | grep -v "$tmp_test") - dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - echo $dep_line >> $RT_SINGLE_CONF + if [[ ${line} =~ RUN ]]; then + to_run_test=false + tmp_test=$(cut -d'|' -f2 <<< "${line}") + tmp_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${tmp_test}") + MACHINES=$(cut -d'|' -f3 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + if [[ ${MACHINES} == '' ]]; then + to_run_test=true + elif [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || to_run_test=true + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && to_run_test=true + fi + if [[ ${to_run_test} == true ]]; then + TEST_IDX=$(set -e; find_match "${tmp_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") + + if [[ ${TEST_IDX} != -1 ]]; then + if [[ ${COMPILE_LINE_USED} == false ]]; then + echo -en '\n' >> "${RT_TEMP_CONF}" + echo "${compile_line}" >> "${RT_TEMP_CONF}" + + COMPILE_LINE_USED=true + fi + dep_test=$(grep -w "${tmp_test}" <<< "${line}") + dep_test=$(cut -d'|' -f5 <<< "${dep_test}") + dep_test=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${dep_test}") + + if [[ ${dep_test} != '' ]]; then + find_match_result=$(set -e; find_match "${dep_test} ${RT_COMPILER_IN}" "${TEST_WITH_COMPILE[@]}") + if [[ ${find_match_result} == -1 ]]; then + dep_line=$(grep -w "${dep_test}" rt.conf) + dep_line=$(grep -v "${tmp_test}" <<< "${dep_line}") + dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" + dep_line=$(tr -d '\n' <<< "${dep_line}") + CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "${dep_line}") + CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "${dep_line}") + + if [[ ${RT_COMPILER_IN} == "intel" ]]; then + echo "RUN ${CORRECT_LINE[1]}" >> "${RT_TEMP_CONF}" + elif [[ ${RT_COMPILER_IN} == "gnu" ]]; then + echo "RUN ${CORRECT_LINE[2]}" >> "${RT_TEMP_CONF}" + fi + fi + fi + echo "${line}" >> "${RT_TEMP_CONF}" fi - echo $line >> $RT_SINGLE_CONF - break fi fi - done < $TESTS_FILE + done < "${TESTS_FILE}" - if [[ ! -f $RT_SINGLE_CONF ]]; then - echo "$SINGLE_NAME does not exist or cannot be run on $MACHINE_ID" + if [[ ! -s ${RT_TEMP_CONF} ]]; then + echo "The tests listed/chosen do not exist or cannot be run on ${MACHINE_ID}" exit 1 + else + TESTS_FILE=${RT_TEMP_CONF} fi } +generate_log() { + echo "rt.sh: Generating Regression Testing Log..." + COMPILE_COUNTER=0 + FAILED_COMPILES=() + TEST_COUNTER=0 + FAILED_TESTS=() + SKIPPED_TESTS=() + FAILED_TEST_ID=() + FAILED_COMPILE_LOGS=() + FAILED_TEST_LOGS=() + TEST_CHANGES_LOG="test_changes.list" + TEST_END_TIME="$(date '+%Y%m%d %T')" + GIT_HASHES=$(git rev-parse HEAD) + cat << EOF > "${REGRESSIONTEST_LOG}" +====START OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +${GIT_HASHES} + +Submodule hashes used in testing: +EOF + cd .. + if [[ ${MACHINE_ID} != hera ]]; then + git submodule status --recursive >> "${REGRESSIONTEST_LOG}" + else + git submodule status >> "${REGRESSIONTEST_LOG}" + fi + echo; echo >> "${REGRESSIONTEST_LOG}" + cd tests + + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: ${RTPWD} +COMPARISON DIRECTORY: ${RUNDIR_ROOT} + +RT.SH OPTIONS USED: +EOF + + [[ -n ${ACCNR} ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}" + [[ -n ${NEW_BASELINES_FILE} ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ ${CREATE_BASELINE} == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ ${DEFINE_CONF_FILE} == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ ${RTPWD_NEW_BASELINE} == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ ${RUN_SINGLE_TEST} == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" + [[ ${COMPILE_ONLY} == true ]]&& echo "* (-o) - COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}" + [[ ${delete_rundir} == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ ${skip_check_results} == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" + [[ ${KEEP_RUNDIR} == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ ${ROCOTO} == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}" + [[ ${ECFLOW} == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}" + [[ ${RTVERBOSE} == true ]] && echo "* (-v) - VERBOSE OUTPUT" >> "${REGRESSIONTEST_LOG}" + + + [[ -f "${TEST_CHANGES_LOG}" ]] && rm "${TEST_CHANGES_LOG}" + touch "${TEST_CHANGES_LOG}" + while read -r line; do + line="${line#"${line%%[![:space:]]*}"}" + [[ -n "${line}" ]] || continue + [[ ${#line} == 0 ]] && continue + [[ ${line} == \#* ]] && continue + local valid_compile=false + local valid_test=false + + if [[ ${line} == COMPILE* ]] ; then + + CMACHINES=$(cut -d'|' -f5 <<< "${line}") + CMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${CMACHINES}") + + COMPILER=$(cut -d'|' -f3 <<< "${line}") + COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILER}") + + COMPILE_NAME=$(cut -d'|' -f2 <<< "${line}") + COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}") + + COMPILE_ID=${COMPILE_NAME}_${COMPILER} + + if [[ ${CMACHINES} == '' ]]; then + valid_compile=true + elif [[ ${CMACHINES} == -* ]]; then + [[ ${CMACHINES} =~ ${MACHINE_ID} ]] || valid_compile=true + elif [[ ${CMACHINES} == +* ]]; then + [[ ${CMACHINES} =~ ${MACHINE_ID} ]] && valid_compile=true + fi + + if [[ ${valid_compile} == true ]]; then + COMPILE_COUNTER=$((COMPILE_COUNTER+1)) + FAIL_LOG="" + COMPILE_RESULT="" + TIME_FILE="" + COMPILE_TIME="" + RT_COMPILE_TIME="" + COMPILE_WARNINGS="" + if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then + COMPILE_RESULT="FAILED: UNABLE TO START COMPILE" + FAIL_LOG="N/A" + elif [[ -f fail_compile_${COMPILE_ID} ]]; then + COMPILE_RESULT="FAILED: UNABLE TO FINISH COMPILE" + FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then + COMPILE_RESULT="FAILED: DISK QUOTA ISSUE" + FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + elif grep -q "TIME LIMIT" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err"; then + COMPILE_RESULT="FAILED: COMPILE TIMED OUT" + FAIL_LOG="${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" + fi + else + COMPILE_RESULT="PASS" + if [[ ${COMPILER} == "intel" ]]; then + COMPILE_NUM_WARNINGS=$(grep -c ": warning #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true) + COMPILE_NUM_REMARKS=$(grep -c ": remark #" "${RUNDIR_ROOT}/compile_${COMPILE_ID}/err" || true) + if [[ ${COMPILE_NUM_WARNINGS} -gt 0 || ${COMPILE_NUM_REMARKS} -gt 0 ]]; then + COMPILE_WARNINGS+=" (" + [[ ${COMPILE_NUM_WARNINGS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_WARNINGS} warnings" + [[ ${COMPILE_NUM_REMARKS} -gt 0 ]] && COMPILE_WARNINGS+=" ${COMPILE_NUM_REMARKS} remarks" + COMPILE_WARNINGS+=" )" + fi + fi + TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt" + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [[ -n "${times}" ]]; do + times="${times#"${times%%[![:space:]]*}"}" + + DATE1=$(cut -d ',' -f2 <<< "${times}") + DATE2=$(cut -d ',' -f3 <<< "${times}") + DATE3=$(cut -d ',' -f4 <<< "${times}") + DATE4=$(cut -d ',' -f5 <<< "${times}") + + COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + + done < "${TIME_FILE}" + + fi + fi + echo >> "${REGRESSIONTEST_LOG}" + echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]${COMPILE_WARNINGS}" >> "${REGRESSIONTEST_LOG}" + [[ -n ${FAIL_LOG} ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}") + [[ -n ${FAIL_LOG} ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}") + fi + + elif [[ ${line} =~ RUN ]]; then + + if [[ ${COMPILE_ONLY} == true ]]; then + continue + fi + + RMACHINES=$(cut -d '|' -f3 <<< "${line}") + RMACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RMACHINES}") + TEST_NAME=$(cut -d '|' -f2 <<< "${line}") + TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}") + GEN_BASELINE=$(cut -d '|' -f4 <<< "${line}") + GEN_BASELINE=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${GEN_BASELINE}") + + if [[ ${RMACHINES} == '' ]]; then + valid_test=true + elif [[ ${RMACHINES} == -* ]]; then + [[ ${RMACHINES} =~ ${MACHINE_ID} ]] || valid_test=true + elif [[ ${RMACHINES} == +* ]]; then + [[ ${RMACHINES} =~ ${MACHINE_ID} ]] && valid_test=true + fi + + if [[ ${valid_test} == true ]]; then + TEST_COUNTER=$((TEST_COUNTER+1)) + GETMEMFROMLOG="" + FAIL_LOG="" + TEST_RESULT="" + TIME_FILE="" + TEST_TIME="" + RT_TEST_TIME="" + RT_TEST_MEM="" + if [[ ${CREATE_BASELINE} == true && ${GEN_BASELINE} != "baseline" ]]; then + TEST_RESULT="SKIPPED: TEST DOES NOT GENERATE BASELINE" + SKIPPED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + elif [[ ${COMPILE_RESULT} =~ FAILED ]]; then + TEST_RESULT="SKIPPED: ASSOCIATED COMPILE FAILED" + SKIPPED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then + TEST_RESULT="FAILED: UNABLE TO START TEST" + FAIL_LOG="N/A" + elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then + if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then + if grep -q "FAIL" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="FAILED: UNABLE TO COMPLETE COMPARISON" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + # We need to catch a "PASS" in rt_*.log even if a fail_test_* files exists + # I am not sure why this can happen. + elif grep -q "PASS" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="PASS" + else + TEST_RESULT="FAILED: UNSUCCESSFUL BASELINE COMPARISON" + FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" + fi + else + TEST_RESULT="FAILED: RUN DID NOT COMPLETE" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + fi + if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="FAILED: DISK QUOTA ISSUE" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + elif grep -q "TIME LIMIT" "${RUNDIR_ROOT}/${TEST_NAME}_${COMPILER}/err"; then + TEST_RESULT="FAILED: TEST TIMED OUT" + FAIL_LOG="${RUNDIR_ROOT}/${TEST_NAME}_${COMPILER}/err" + fi + else + TEST_RESULT="PASS" + fi + if [[ ${TEST_RESULT} == "PASS" ]]; then + TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt" + GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log") + RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9') + RT_TEST_MEM=$((RT_TEST_MEM/1000)) + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [[ -n "${times}" ]]; do + times="${times#"${times%%[![:space:]]*}"}" + + DATE1=$(cut -d ',' -f2 <<< "${times}") + DATE2=$(cut -d ',' -f3 <<< "${times}") + DATE3=$(cut -d ',' -f4 <<< "${times}") + DATE4=$(cut -d ',' -f5 <<< "${times}") + + TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + + done < "${TIME_FILE}" + fi + fi + + echo "${TEST_RESULT} -- TEST '${TEST_NAME}_${COMPILER}' [${RT_TEST_TIME}, ${TEST_TIME}](${RT_TEST_MEM} MB)" >> "${REGRESSIONTEST_LOG}" + [[ -n ${FAIL_LOG} ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + [[ -n ${FAIL_LOG} ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}") + [[ -n ${FAIL_LOG} ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}") + fi + fi + done < "${TESTS_FILE}" + + elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) + + cat << EOF >> "${REGRESSIONTEST_LOG}" + +SYNOPSIS: +Starting Date/Time: ${TEST_START_TIME} +Ending Date/Time: ${TEST_END_TIME} +Total Time: ${elapsed_time} +Compiles Completed: $((COMPILE_COUNTER-${#FAILED_COMPILES[@]}))/${COMPILE_COUNTER} +Tests Completed: $((TEST_COUNTER-${#FAILED_TESTS[@]}-${#SKIPPED_TESTS[@]}))/${TEST_COUNTER} +EOF + # PRINT FAILED COMPILES + if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then + echo "Failed Compiles:" >> "${REGRESSIONTEST_LOG}" + for i in "${!FAILED_COMPILES[@]}"; do + echo "* ${FAILED_COMPILES[${i}]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_COMPILE_LOGS[${i}]}" >> "${REGRESSIONTEST_LOG}" + done + fi + + # PRINT FAILED TESTS + if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then + + echo "Failed Tests:" >> "${REGRESSIONTEST_LOG}" + for j in "${!FAILED_TESTS[@]}"; do + echo "* ${FAILED_TESTS[${j}]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_TEST_LOGS[${j}]}" >> "${REGRESSIONTEST_LOG}" + done + + fi + + # WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG + if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then + for item in "${FAILED_TEST_ID[@]}"; do + echo "${item}" >> "${TEST_CHANGES_LOG}" + done + fi + + if [[ "${#FAILED_COMPILES[@]}" -eq "0" && "${#FAILED_TESTS[@]}" -eq "0" ]]; then + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +A file '${TEST_CHANGES_LOG}' was generated but is empty. +If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'. + +Result: SUCCESS + +====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== +EOF + echo "Performing Cleanup..." + rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp + [[ ${KEEP_RUNDIR} == false ]] && rm -rf "${RUNDIR_ROOT}" && rm "${PATHRT}/run_dir" + [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db + [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* + echo "REGRESSION TEST RESULT: SUCCESS" + else + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +A file '${TEST_CHANGES_LOG}' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'. + +Result: FAILURE + +====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== +EOF + echo "REGRESSION TEST RESULT: FAILURE" + fi + +} + +create_or_run_compile_task() { + cat << EOF > "${RUNDIR_ROOT}/compile_${COMPILE_ID}.env" +export COMPILE_ID=${COMPILE_ID} +export MACHINE_ID=${MACHINE_ID} +export RT_COMPILER=${RT_COMPILER} +export PATHRT=${PATHRT} +export PATHTR=${PATHTR} +export SCHEDULER=${SCHEDULER} +export ACCNR=${ACCNR} +export QUEUE=${COMPILE_QUEUE} +export PARTITION=${PARTITION} +export ROCOTO=${ROCOTO} +export ECFLOW=${ECFLOW} +export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} +export LOG_DIR=${LOG_DIR} +export RTVERBOSE=${RTVERBOSE} +EOF + + if [[ ${ROCOTO} == true ]]; then + rocoto_create_compile_task + elif [[ ${ECFLOW} == true ]]; then + ecflow_create_compile_task + else + echo "rt.sh: Running compile ${COMPILE_ID}" + ./run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 + echo "rt.sh: Compile ${COMPILE_ID} completed." + fi + + RT_SUFFIX="" + BL_SUFFIX="" +} + rt_35d() { -if [[ $TEST_NAME =~ '35d' ]] ; then - local sy=$(echo ${DATE_35D} | cut -c 1-4) - local sm=$(echo ${DATE_35D} | cut -c 5-6) + echo "rt.sh: Running 35day Regression Test..." + local sy + local sm +if [[ ${TEST_NAME} =~ '35d' ]] ; then + sy=$(cut -c 1-4 <<< "${DATE_35D}") + sm=$(cut -c 5-6 <<< "${DATE_35D}") local new_test_name="tests/${TEST_NAME}_${DATE_35D}" - rm -f $new_test_name - cp tests/$TEST_NAME $new_test_name + rm -f "${new_test_name}" + cp tests/"${TEST_NAME}" "${new_test_name}" - sed -i -e "s/\(export SYEAR\)/\1=\"$sy\"/" $new_test_name - sed -i -e "s/\(export SMONTH\)/\1=\"$sm\"/" $new_test_name + sed -i -e "s/\(export SYEAR\)/\1=\"${sy}\"/" "${new_test_name}" + sed -i -e "s/\(export SMONTH\)/\1=\"${sm}\"/" "${new_test_name}" TEST_NAME=${new_test_name#tests/} fi } +handle_error() { + echo "rt.sh: Getting error information..." + local exit_code=$1 + local exit_line=$2 + echo "Exited at line ${exit_line} having code ${exit_code}" + rt_trap +} + rt_trap() { + echo "rt.sh: Exited abnormally, killing workflow and cleaning up" + trap "" SIGINT [[ ${ROCOTO:-false} == true ]] && rocoto_kill [[ ${ECFLOW:-false} == true ]] && ecflow_kill cleanup } cleanup() { - [[ $(awk '{print $2}' < "${LOCKDIR}/PID") == $$ ]] && rm -rf ${LOCKDIR} + echo "rt.sh: Cleaning up..." + awk_info=$(awk '{print $2}' < "${LOCKDIR}/PID") + [[ ${awk_info} == "$$" ]] && rm -rf "${LOCKDIR}" [[ ${ECFLOW:-false} == true ]] && ecflow_stop trap 0 + echo "rt.sh: Exiting." exit } trap '{ echo "rt.sh interrupted"; rt_trap ; }' INT trap '{ echo "rt.sh quit"; rt_trap ; }' QUIT trap '{ echo "rt.sh terminated"; rt_trap ; }' TERM -trap '{ echo "rt.sh error on line $LINENO"; cleanup ; }' ERR +trap '{ handle_error $? $LINENO ; }' ERR trap '{ echo "rt.sh finished"; cleanup ; }' EXIT + # PATHRT - Path to regression tests directory -readonly PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )" -cd ${PATHRT} +PATHRT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P )" +readonly PATHRT +cd "${PATHRT}" # PATHTR - Path to nmmb trunk directory -readonly PATHTR=$( cd ${PATHRT}/.. && pwd ) +PATHTR=$( cd "${PATHRT}/.." && pwd ) +readonly PATHTR # make sure only one instance of rt.sh is running readonly LOCKDIR="${PATHRT}"/lock +HOSTNAME_IN=$(hostname) if mkdir "${LOCKDIR}" ; then - echo $(hostname) $$ > "${LOCKDIR}/PID" + echo "${HOSTNAME_IN}" $$ > "${LOCKDIR}/PID" else echo "Only one instance of rt.sh can be running at a time" exit 1 fi -readonly RT_SINGLE_CONF='rt_single.conf' - -source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does. +source detect_machine.sh source rt_utils.sh +# shellcheck disable=SC1091 source module-setup.sh CREATE_BASELINE=false ROCOTO=false ECFLOW=false KEEP_RUNDIR=false -SINGLE_NAME='' TEST_35D=false export skip_check_results=false export delete_rundir=false -SKIP_ORDER=false + +COMPILE_ONLY=false RTPWD_NEW_BASELINE=false TESTS_FILE='rt.conf' +NEW_BASELINES_FILE='' +DEFINE_CONF_FILE=false +RUN_SINGLE_TEST=false +RTVERBOSE=false +export RTVERBOSE +export STOP_ECFLOW_AT_END=false ACCNR=${ACCNR:-""} -while getopts ":a:cl:mn:dwkreh" opt; do - case $opt in +while getopts ":a:b:cl:mn:dwkreovh" opt; do + case ${opt} in a) - ACCNR=$OPTARG + ACCNR=${OPTARG} + ;; + b) + NEW_BASELINES_FILE=${OPTARG} ;; c) CREATE_BASELINE=true ;; l) - TESTS_FILE=$OPTARG - SKIP_ORDER=true + DEFINE_CONF_FILE=true + TESTS_FILE=${OPTARG} + grep -q '[^[:space:]]' < "${TESTS_FILE}" || die "${TESTS_FILE} empty, exiting..." + ;; + o) + COMPILE_ONLY=true ;; m) # redefine RTPWD to point to newly created baseline outputs RTPWD_NEW_BASELINE=true ;; n) - SINGLE_OPTS=("$OPTARG") - until [[ $(eval "echo \${$OPTIND}") =~ ^-.* ]] || [ -z $(eval "echo \${$OPTIND}") ]; do - SINGLE_OPTS+=($(eval "echo \${$OPTIND}")) - OPTIND=$((OPTIND + 1)) - done + RUN_SINGLE_TEST=true + IFS=' ' read -r -a SINGLE_OPTS <<< "${OPTARG}" if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then - echo "The -n option needs AND , i.e. -n control_p8 intel" - exit 1 + die 'The -n option needs [testname] AND [compiler] in quotes, i.e. -n "control_p8 intel"' fi - SINGLE_NAME=${SINGLE_OPTS[0],,} - export RT_COMPILER=${SINGLE_OPTS[1],,} - - if [[ "$RT_COMPILER" == "intel" ]] || [[ "$RT_COMPILER" == "gnu" ]]; then - echo "COMPILER set to ${RT_COMPILER}" - else - echo "Compiler must be either 'intel' or 'gnu'." - exit 1 + + SRT_NAME="${SINGLE_OPTS[0]}" + SRT_COMPILER="${SINGLE_OPTS[1]}" + + if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then + die "COMPILER MUST BE 'intel' OR 'gnu'" fi ;; d) export delete_rundir=true - awk -F "|" '{print $5}' rt.conf | grep "\S" > keep_tests.tmp + AWK_OUT=$(awk -F "|" '{print $5}' rt.conf) + grep "\S" <<< "${AWK_OUT}" > keep_tests.tmp ;; w) export skip_check_results=true @@ -199,359 +648,438 @@ while getopts ":a:cl:mn:dwkreh" opt; do ECFLOW=true ROCOTO=false ;; + v) + RTVERBOSE=true + ;; h) usage + die "" ;; \?) usage - die "Invalid option: -$OPTARG" + die "Invalid option: -${OPTARG}" ;; :) usage - die "Option -$OPTARG requires an argument." + die "Option -${OPTARG} requires an argument." + ;; + *) + usage + die "Arguments are required." ;; esac done -if [[ -z "$ACCNR" ]]; then +#Check to error out if incompatible options are chosen together +[[ ${KEEP_RUNDIR} == true && ${delete_rundir} == true ]] && die "-k and -d options cannot be used at the same time" +[[ ${ECFLOW} == true && ${ROCOTO} == true ]] && die "-r and -e options cannot be used at the same time" +[[ ${CREATE_BASELINE} == true && ${RTPWD_NEW_BASELINE} == true ]] && die "-c and -m options cannot be used at the same time" +#B&N not run together +[[ ${NEW_BASELINES_FILE} != '' && ${RUN_SINGLE_TEST} == true ]] && die "-b and -n options cannot be used at the same time" + +if [[ ${RTVERBOSE} == true ]]; then + set -x +fi + +if [[ -z "${ACCNR}" ]]; then echo "Please use -a to set group account to use on HPC" exit 1 fi # Display the machine and account using the format detect_machine.sh used: -echo "Machine: " $MACHINE_ID " Account: " $ACCNR - -if [[ $MACHINE_ID = wcoss2 ]]; then - - #module use /usrx/local/dev/emc_rocoto/modulefiles - #module load ruby/2.5.1 rocoto/1.3.0rc2 - #ROCOTORUN=$(which rocotorun) - #ROCOTOSTAT=$(which rocotostat) - #ROCOTOCOMPLETE=$(which rocotocomplete) - #ROCOTO_SCHEDULER=lsf - - module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} - export colonifnco=":output" # hack - - DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT - QUEUE=dev - COMPILE_QUEUE=dev - PARTITION= - STMP=/lfs/h2/emc/ptmp - PTMP=/lfs/h2/emc/ptmp - SCHEDULER=pbs - -elif [[ $MACHINE_ID = acorn ]]; then - - module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 - ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh - export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir - export ECF_COMDIR=${PATHRT}/ecf_comdir - rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} - mkdir -p ${ECF_OUTPUTDIR} - mkdir -p ${ECF_COMDIR} - export colonifnco=":output" # hack - - DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT - QUEUE=dev - COMPILE_QUEUE=dev - PARTITION= - STMP=/lfs/h2/emc/ptmp - PTMP=/lfs/h2/emc/ptmp - SCHEDULER=pbs - -elif [[ $MACHINE_ID = gaea ]]; then - - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT - QUEUE=normal - COMPILE_QUEUE=normal - PARTITION=c4 - STMP=/lustre/f2/scratch - PTMP=/lustre/f2/scratch - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = hera ]]; then - - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - - PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 - export PATH=$PYTHONHOME/bin:$PATH - export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages - - module load ecflow - ECFLOW_START=ecflow_start.sh - - QUEUE=batch - COMPILE_QUEUE=batch - - PARTITION= - dprefix=/scratch1/NCEPDEV - DISKNM=$dprefix/nems/emc.nemspara/RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp2 - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = orion ]]; then - - module load git/2.28.0 - - module load gcc/8.3.0 - - module load contrib rocoto/1.3.1 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH - export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - ECFLOW_START=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION=orion - dprefix=/work/noaa/stmp/${USER} - DISKNM=/work/noaa/nems/emc.nemspara/RT - STMP=$dprefix/stmp - PTMP=$dprefix/stmp - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = jet ]]; then - - module load rocoto/1.3.2 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages - module load ecflow - ECFLOW_START=/apps/ecflow/5.5.3/bin/ecflow_start.sh - - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION=xjet - DISKNM=/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT - dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER} - STMP=${STMP:-$dprefix/RT_BASELINE} - PTMP=${PTMP:-$dprefix/RT_RUNDIRS} - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = s4 ]]; then - - module load rocoto/1.3.2 - module load ecflow/5.6.0 - module load miniconda/3.8-s4 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - - ECFLOW_START=/opt/ecflow/5.6.0/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - QUEUE=s4 - COMPILE_QUEUE=s4 - - PARTITION=s4 - dprefix=/data/prod - DISKNM=$dprefix/emc.nemspara/RT - STMP=/scratch/short/users - PTMP=/scratch/users - - SCHEDULER=slurm - -elif [[ $MACHINE_ID = cheyenne ]]; then - - export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - QUEUE=regular - COMPILE_QUEUE=regular - PARTITION= - dprefix=/glade/scratch - DISKNM=/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=pbs - -elif [[ $MACHINE_ID = stampede ]]; then - - export PYTHONPATH= - ECFLOW_START= - QUEUE=skx-normal - COMPILE_QUEUE=skx-dev - PARTITION= - dprefix=$SCRATCH/ufs-weather-model/run - DISKNM=/work2/07736/minsukji/stampede2/ufs-weather-model/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=slurm - MPIEXEC=ibrun - MPIEXECOPTS= - -elif [[ $MACHINE_ID = expanse ]]; then - - export PYTHONPATH= - ECFLOW_START= - QUEUE=compute - COMPILE_QUEUE=shared - PARTITION= - dprefix=/expanse/lustre/scratch/$USER/temp_project/run - DISKNM=/expanse/lustre/scratch/domh/temp_project/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=slurm - - elif [[ $MACHINE_ID = noaacloud.* ]]; then - - module use /apps/modules/modulefiles - module load rocoto/1.3.3 - - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - - QUEUE=batch - COMPILE_QUEUE=batch - PARTITION= - dprefix=/lustre/ - DISKNM=/contrib/ufs-weather-model/RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp2 - SCHEDULER=slurm +echo "Machine: ${MACHINE_ID}" +echo "Account: ${ACCNR}" + +case ${MACHINE_ID} in + wcoss2|acorn) + echo "rt.sh: Setting up WCOSS2/Acorn" + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0.13 + fi + module load intel/19.1.3.304 python/3.8.6 + DISKNM="/lfs/h2/emc/nems/noscrub/emc.nems/RT" + QUEUE="dev" + COMPILE_QUEUE="dev" + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER="pbs" + fi + PARTITION= + STMP="/lfs/h2/emc/ptmp" + PTMP="/lfs/h2/emc/ptmp" + SCHEDULER="pbs" + ;; + gaea) + echo "rt.sh: Setting up gaea..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /ncrc/proj/epic/rocoto/modulefiles + module load rocoto + ROCOTO_SCHEDULER="slurm" + fi -else - die "Unknown machine ID, please edit detect_machine.sh file" -fi + export LD_PRELOAD=/opt/cray/pe/gcc/12.2.0/snos/lib64/libstdc++.so.6 + module load PrgEnv-intel/8.3.3 + module load intel-classic/2023.1.0 + module load cray-mpich/8.1.25 + module load python/3.9.12 + module use /ncrc/proj/epic/spack-stack/modulefiles + module load gcc/12.2.0 + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + + DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c5 + dprefix=${dprefix:-/gpfs/f5/${ACCNR}/scratch/${USER}} + STMP=${STMP:-${dprefix}/RT_BASELINE} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + + SCHEDULER="slurm" + ;; + hera) + echo "rt.sh: Setting up hera..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTO_SCHEDULER=slurm + fi -mkdir -p ${STMP}/${USER} + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + fi + + QUEUE="batch" + COMPILE_QUEUE="batch" + + PARTITION= + dprefix="/scratch1/NCEPDEV" + DISKNM="/scratch2/NAGAPE/epic/UFS-WM_RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" + + SCHEDULER=slurm + ;; + orion) + echo "rt.sh: Setting up orion..." + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib ruby/3.2.3 rocoto/1.3.7 + ROCOTO_SCHEDULER="slurm" + fi + + module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi + + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="orion" + dprefix="/work/noaa/stmp/${USER}" + DISKNM="/work/noaa/epic/UFS-WM_RT" + STMP="${dprefix}/stmp" + PTMP="${dprefix}/stmp" + + SCHEDULER="slurm" + cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN + ;; + hercules) + echo "rt.sh: Setting up hercules..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module load contrib rocoto + ROCOTO_SCHEDULER="slurm" + fi + + module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi + + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="hercules" + dprefix="/work2/noaa/stmp/${USER}" + DISKNM="/work/noaa/epic/hercules/UFS-WM_RT" + STMP="${dprefix}/stmp" + PTMP="${dprefix}/stmp" + + SCHEDULER="slurm" + cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN + ;; + jet) + echo "rt.sh: Setting up jet..." + CurJetOS=$(lsb_release -is) + echo "=======Running on ${CurJetOS}=======" + if [[ ${CurJetOS} == "CentOS" ]]; then + echo "=======Please, move to Rocky8 node fe[5-8]=======" + exit 1 + fi + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto + ROCOTO_SCHEDULER="slurm" + fi + + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.11.4 + fi + + module use /mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-rocky8/install/modulefiles/Core + module load stack-intel/2021.5.0 + module load stack-python/3.10.8 + + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION="xjet" + DISKNM="/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT" + dprefix="${dprefix:-/lfs4/HFIP/${ACCNR}/${USER}}" + STMP="${STMP:-${dprefix}/RT_BASELINE}" + PTMP="${PTMP:-${dprefix}/RT_RUNDIRS}" + + SCHEDULER="slurm" + ;; + s4) + echo "rt.sh: Setting up s4..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.2 + ROCOTO_SCHEDULER=slurm + fi + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.6.0 + fi + module load miniconda/3.8-s4 + + module use /data/prod/jedi/spack-stack/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT="$(( $(id -u) + 1500 ))" + export ECF_PORT ECF_HOST + fi + + QUEUE="s4" + COMPILE_QUEUE="s4" + + PARTITION="s4" + dprefix="/data/prod" + DISKNM="${dprefix}/emc.nemspara/RT" + STMP="/scratch/short/users" + PTMP="/scratch/users" + + SCHEDULER="slurm" + ;; + derecho) + echo "rt.sh: Setting up derecho..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles + module load rocoto + fi + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles + if [[ "${ECFLOW:-false}" == true ]] ; then + module load ecflow/5.8.4 + fi + module unload ncarcompilers + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core + module load stack-intel/2021.10.0 + module load stack-python/3.10.8 + # export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + if [[ "${ECFLOW:-false}" == true ]] ; then + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + + QUEUE="main" + COMPILE_QUEUE="main" + PARTITION= + dprefix="/glade/derecho/scratch" + DISKNM="/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="pbs" + cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN + + + if [[ "${ROCOTO:-false}" == true ]] ; then + ROCOTO_SCHEDULER="pbspro" + fi + ;; + stampede) + echo "rt.sh: Setting up stampede..." + export PYTHONPATH= + if [[ "${ECFLOW:-false}" == true ]] ; then + ECFLOW_START= + fi + QUEUE=skx-normal + COMPILE_QUEUE=skx-dev + PARTITION= + dprefix="${SCRATCH}/ufs-weather-model/run" + DISKNM="/work2/07736/minsukji/stampede2/ufs-weather-model/RT" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="slurm" + export MPIEXEC="ibrun" + export MPIEXECOPTS= + ;; + expanse) + echo "rt.sh: Setting up expanse..." + export PYTHONPATH= + + if [[ "${ECFLOW:-false}" == true ]] ; then + export ECFLOW_START= + fi + QUEUE="compute" + COMPILE_QUEUE="shared" + PARTITION= + dprefix="/expanse/lustre/scratch/${USER}/temp_project/run" + DISKNM="/expanse/lustre/scratch/domh/temp_project/RT" + STMP="${dprefix}" + PTMP="${dprefix}" + SCHEDULER="slurm" + ;; + noaacloud) + echo "rt.sh: Setting up noaacloud..." + export PATH="/contrib/EPIC/bin:${PATH}" + module use /apps/modules/modulefiles + + if [[ "${ROCOTO:-false}" == true ]] ; then + module load rocoto/1.3.3 + ROCOTO_SCHEDULER=slurm + fi + + QUEUE="batch" + COMPILE_QUEUE="batch" + PARTITION= + dprefix="/lustre/" + DISKNM="/contrib/ufs-weather-model/RT" + STMP="${dprefix}/stmp4" + PTMP="${dprefix}/stmp2" + SCHEDULER="slurm" + ;; + *) + die "Unknown machine ID, please edit detect_machine.sh file" + ;; +esac + +mkdir -p "${STMP}/${USER}" NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST # Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$ -mkdir -p ${RUNDIR_ROOT} +mkdir -p "${RUNDIR_ROOT}" +rm -rf "${PATHRT}/run_dir" +echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir" +ln -s "${RUNDIR_ROOT}" "${PATHRT}/run_dir" +echo "Run regression test in: ${RUNDIR_ROOT}" -if [[ $SINGLE_NAME != '' ]]; then - rt_single - TESTS_FILE=$RT_SINGLE_CONF -fi +# BEFORE MOVING ANY FURTHER LETS CHECK THAT DISKNM/STMP/PTMP ALL EXIST +[[ -d ${DISKNM} ]] || die "ERROR: DISKNM: ${DISKNM} -- DOES NOT EXIST" +[[ -d ${STMP} ]] || die "ERROR: STMP: ${STMP} -- DOES NOT EXIST" +[[ -d ${PTMP} ]] || die "ERROR: PTMP: ${PTMP} -- DOES NOT EXIST" -if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then +update_rtconf + +if [[ ${TESTS_FILE} =~ '35d' ]] || [[ ${TESTS_FILE} =~ 'weekly' ]]; then TEST_35D=true fi source bl_date.conf -if [[ "$RTPWD_NEW_BASELINE" == true ]] ; then +if [[ "${RTPWD_NEW_BASELINE}" == true ]] ; then RTPWD=${NEW_BASELINE} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} + RTPWD=${RTPWD:-${DISKNM}/NEMSfv3gfs/develop-${BL_DATE}} fi +if [[ "${CREATE_BASELINE}" == false ]] ; then + EMPTY_CHECK=$(find "${RTPWD}/" -type d -prune -empty) + if [[ ! -d "${RTPWD}" ]] ; then + echo "Baseline directory does not exist:" + echo " ${RTPWD}" + exit 1 + elif [[ -n ${EMPTY_CHECK} ]] ; then + echo "Baseline directory is empty:" + echo " ${RTPWD}" + exit 1 + fi +fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624 -INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-${DISKNM}/NEMSfv3gfs/input-data-20240501} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20240214 +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-${DISKNM}/NEMSfv3gfs/BM_IC-20220207} shift $((OPTIND-1)) -[[ $# -gt 1 ]] && usage +if [[ $# -gt 1 ]]; then + usage + die "" +fi -if [[ $CREATE_BASELINE == true ]]; then - # - # prepare new regression test directory - # +if [[ ${CREATE_BASELINE} == true ]]; then + # PREPARE NEW REGRESSION TEST DIRECTORY + echo "rt.sh: Preparing RT Directory..." rm -rf "${NEW_BASELINE}" mkdir -p "${NEW_BASELINE}" + fi -if [[ $skip_check_results == true ]]; then - REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_$MACHINE_ID.log +if [[ ${skip_check_results} == true ]]; then + REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_weekly_${MACHINE_ID}.log else - REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_$MACHINE_ID.log + REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log fi -date > ${REGRESSIONTEST_LOG} -echo "Start Regression test" >> ${REGRESSIONTEST_LOG} -echo >> ${REGRESSIONTEST_LOG} -echo "Testing UFSWM Hash:" `git rev-parse HEAD` >> ${REGRESSIONTEST_LOG} -echo "Testing With Submodule Hashes:" >> ${REGRESSIONTEST_LOG} -git submodule status >> ${REGRESSIONTEST_LOG} +TEST_START_TIME="$(date '+%Y%m%d %T')" +export TEST_START_TIME source default_vars.sh -JOB_NR=0 -TEST_NR=0 COMPILE_COUNTER=0 rm -f fail_test* fail_compile* -export LOG_DIR=${PATHRT}/logs/log_$MACHINE_ID -rm -rf ${LOG_DIR} -mkdir -p ${LOG_DIR} +LOG_DIR=${PATHRT}/logs/log_${MACHINE_ID} +export LOG_DIR -if [[ $ROCOTO == true ]]; then +rm -rf "${LOG_DIR}" +mkdir -p "${LOG_DIR}" + +if [[ ${ROCOTO} == true ]]; then + + echo "rt.sh: Verifying ROCOTO support..." + + case ${MACHINE_ID} in + wcoss2|acorn|expanse|stampede) + die "Rocoto not supported on this machine, please do not use '-r'." + ;; + *) + ;; + esac + + ROCOTORUN="$(command -v rocotorun)" + ROCOTOSTAT="$(command -v rocotostat)" + ROCOTOCOMPLETE="$(command -v rocotocomplete)" + export ROCOTOCOMPLETE ROCOTOSTAT ROCOTORUN ROCOTO_XML=${PATHRT}/rocoto_workflow.xml ROCOTO_STATE=${PATHRT}/rocoto_workflow.state ROCOTO_DB=${PATHRT}/rocoto_workflow.db - rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db - - if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - QUEUE=dev - COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=pbs - elif [[ $MACHINE_ID = hera ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = orion ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = s4 ]]; then - QUEUE=s4 - COMPILE_QUEUE=s4 - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = noaacloud ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = jet ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - else - die "Rocoto is not supported on this machine $MACHINE_ID" - fi + rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" ./*_lock.db - cat << EOF > $ROCOTO_XML + cat << EOF > "${ROCOTO_XML}" ]> - + 197001010000 197001010000 01:00:00 &LOG;/workflow.log EOF fi -if [[ $ECFLOW == true ]]; then +if [[ ${ECFLOW} == true ]]; then + echo "Verifying ECFLOW support..." + case ${MACHINE_ID} in + expanse|stampede|noaacloud) + die "ECFLOW not supported on this machine, please do not use '-e'." + ;; + *) + ECFLOW_START="$(command -v ecflow_start.sh)" + ;; + esac + export ECFLOW_START + #export ECF_OUTPUTDIR="${PATHRT}/ecf_outputdir" + #export ECF_COMDIR="${PATHRT}/ecf_comdir" + #rm -rf "${ECF_OUTPUTDIR}" "${ECF_COMDIR}" + #mkdir -p "${ECF_OUTPUTDIR}" + #mkdir -p "${ECF_COMDIR}" # Default maximum number of compile and run jobs - MAX_BUILDS=10 - MAX_JOBS=30 + MAX_BUILDS=10 #Max build jobs + MAX_JOBS=30 #Max test/run jobs + ECF_TRIES=2 #Tries before failure - # Default number of tries to run jobs - on wcoss, no error tolerance - ECF_TRIES=2 - if [[ $MACHINE_ID = wcoss ]]; then - ECF_TRIES=1 - fi - - # Reduce maximum number of compile jobs on jet.intel and s4.intel because of licensing issues - if [[ $MACHINE_ID = jet ]]; then + # Reduce maximum number of compile jobs on jet and s4 because of licensing issues + if [[ ${MACHINE_ID} = jet ]]; then MAX_BUILDS=5 - elif [[ $MACHINE_ID = s4 ]]; then + elif [[ ${MACHINE_ID} = s4 ]]; then MAX_BUILDS=1 fi ECFLOW_RUN=${PATHRT}/ecflow_run ECFLOW_SUITE=regtest_$$ - rm -rf ${ECFLOW_RUN} - mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} - cp head.h tail.h ${ECFLOW_RUN} - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + rm -rf "${ECFLOW_RUN}" + mkdir -p "${ECFLOW_RUN}/${ECFLOW_SUITE}" + cp head.h tail.h "${ECFLOW_RUN}" + cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" suite ${ECFLOW_SUITE} edit ECF_HOME '${ECFLOW_RUN}' edit ECF_INCLUDE '${ECFLOW_RUN}' @@ -608,24 +1146,6 @@ suite ${ECFLOW_SUITE} limit max_jobs ${MAX_JOBS} EOF - if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - QUEUE=dev - elif [[ $MACHINE_ID = hera ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = orion ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = jet ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = s4 ]]; then - QUEUE=s4 - elif [[ $MACHINE_ID = gaea ]]; then - QUEUE=normal - elif [[ $MACHINE_ID = cheyenne ]]; then - QUEUE=regular - else - die "ecFlow is not supported on this machine $MACHINE_ID" - fi - fi ## @@ -636,39 +1156,42 @@ fi new_compile=false in_metatask=false -[[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist" - -LAST_COMPILER_NR=-9999 +[[ -f ${TESTS_FILE} ]] || die "${TESTS_FILE} does not exist" declare -A compiles -while read -r line || [ "$line" ]; do +while read -r line || [[ -n "${line}" ]]; do line="${line#"${line%%[![:space:]]*}"}" [[ ${#line} == 0 ]] && continue - [[ $line == \#* ]] && continue + [[ ${line} == \#* ]] && continue + + if [[ ${line} == COMPILE* ]]; then + + COMPILE_NAME=$(cut -d '|' -f2 <<< "${line}") + COMPILE_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${COMPILE_NAME}") - JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) + RT_COMPILER=$(cut -d '|' -f3 <<< "${line}") + RT_COMPILER=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${RT_COMPILER}") - if [[ $line == COMPILE* ]]; then - - COMPILE_NAME=$( echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - RT_COMPILER=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - MAKE_OPT=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') - MACHINES=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f6) - COMPILE_NR=${COMPILE_NAME}_${RT_COMPILER} + MAKE_OPT=$(cut -d '|' -f4 <<< "${line}") + MAKE_OPT=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MAKE_OPT}") + + MACHINES=$(cut -d '|' -f5 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") + + CB=$(cut -d '|' -f6 <<< "${line}") + COMPILE_ID=${COMPILE_NAME}_${RT_COMPILER} set +u - if [[ ! -z ${compiles[$COMPILE_NR]} ]] ; then - echo "Error! Duplicated compilation $COMPILE_NAME for compiler $RT_COMPILER!" + if [[ -n ${compiles[${COMPILE_ID}]} ]] ; then + echo "Error! Duplicated compilation ${COMPILE_NAME} for compiler ${RT_COMPILER}!" exit 1 fi set -u - compiles[$COMPILE_NR]=$COMPILE_NR - echo "COMPILING ${compiles[${COMPILE_NR}]}" + compiles[${COMPILE_ID}]=${COMPILE_ID} - [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue + [[ ${CREATE_BASELINE} == true && ${CB} != *fv3* ]] && continue if [[ ${MACHINES} != '' ]]; then if [[ ${MACHINES} == -* ]]; then @@ -681,50 +1204,35 @@ while read -r line || [ "$line" ]; do fi fi - cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env - export JOB_NR=${JOB_NR} - export COMPILE_NR=${COMPILE_NR} - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${COMPILE_QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} -EOF + create_or_run_compile_task + continue - if [[ $ROCOTO == true ]]; then - rocoto_create_compile_task - elif [[ $ECFLOW == true ]]; then - ecflow_create_compile_task - else - ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_NR} > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 - fi + elif [[ ${line} == RUN* ]]; then - RT_SUFFIX="" - BL_SUFFIX="" + [[ ${COMPILE_ONLY} == true ]] && continue - continue + TEST_NAME=$(cut -d'|' -f2 <<< "${line}") + TEST_NAME=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${TEST_NAME}") - elif [[ $line == RUN* ]] ; then + MACHINES=$(cut -d'|' -f3 <<< "${line}") + MACHINES=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${MACHINES}") - TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - CB=$( echo $line | cut -d'|' -f4) - DEP_RUN=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - DATE_35D=$( echo $line | cut -d'|' -f6 | sed -e 's/^ *//' -e 's/ *$//') + CB=$(cut -d'|' -f4 <<< "${line}") - if [[ $DEP_RUN != '' ]]; then + DEP_RUN=$(cut -d'|' -f5 <<< "${line}") + DEP_RUN=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DEP_RUN}") + + DATE_35D=$(cut -d'|' -f6 <<< "${line}") + DATE_35D=$(sed -e 's/^ *//' -e 's/ *$//' <<< "${DATE_35D}") + + if [[ ${DEP_RUN} != '' ]]; then DEP_RUN=${DEP_RUN}_${RT_COMPILER} fi - [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" - [[ $CREATE_BASELINE == true && $CB != *baseline* ]] && continue + export TEST_ID=${TEST_NAME}_${RT_COMPILER} + + [[ -e "tests/${TEST_NAME}" ]] || die "run test file tests/${TEST_NAME} does not exist" + [[ ${CREATE_BASELINE} == true && ${CB} != *baseline* ]] && continue if [[ ${MACHINES} != '' ]]; then if [[ ${MACHINES} == -* ]]; then @@ -737,25 +1245,25 @@ EOF fi fi + COMPILE_METATASK_NAME=${COMPILE_ID} + # 35 day tests - [[ $TEST_35D == true ]] && rt_35d + [[ ${TEST_35D} == true ]] && rt_35d # Avoid uninitialized RT_SUFFIX/BL_SUFFIX (see definition above) RT_SUFFIX=${RT_SUFFIX:-""} BL_SUFFIX=${BL_SUFFIX:-""} - if [[ $ROCOTO == true && $new_compile == true ]]; then + if [[ ${ROCOTO} == true && ${new_compile} == true ]]; then new_compile=false in_metatask=true - cat << EOF >> $ROCOTO_XML - 0 + cat << EOF >> "${ROCOTO_XML}" + 0 EOF fi - TEST_NR=$( printf '%03d' $(( 10#$TEST_NR + 1 )) ) - ( - source ${PATHRT}/tests/$TEST_NAME + source "${PATHRT}/tests/${TEST_NAME}" compute_petbounds_and_tasks @@ -765,111 +1273,90 @@ EOF NODES=$(( NODES + 1 )) fi - cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env - export JOB_NR=${JOB_NR} - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export RTPWD=${RTPWD} - export INPUTDATA_ROOT=${INPUTDATA_ROOT} - export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} - export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export NEW_BASELINE=${NEW_BASELINE} - export CREATE_BASELINE=${CREATE_BASELINE} - export RT_SUFFIX=${RT_SUFFIX} - export BL_SUFFIX=${BL_SUFFIX} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} - export DEP_RUN=${DEP_RUN} - export skip_check_results=${skip_check_results} - export delete_rundir=${delete_rundir} - export WLCLK=${WLCLK} + PPN=$(( TASKS / NODES )) + if (( TASKS - ( PPN * NODES ) > 0 )); then + PPN=$((PPN + 1)) + fi + + cat << EOF > "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" +export TEST_ID=${TEST_ID} +export MACHINE_ID=${MACHINE_ID} +export RT_COMPILER=${RT_COMPILER} +export RTPWD=${RTPWD} +export INPUTDATA_ROOT=${INPUTDATA_ROOT} +export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} +export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} +export PATHRT=${PATHRT} +export PATHTR=${PATHTR} +export NEW_BASELINE=${NEW_BASELINE} +export CREATE_BASELINE=${CREATE_BASELINE} +export RT_SUFFIX=${RT_SUFFIX} +export BL_SUFFIX=${BL_SUFFIX} +export SCHEDULER=${SCHEDULER} +export ACCNR=${ACCNR} +export QUEUE=${QUEUE} +export PARTITION=${PARTITION} +export ROCOTO=${ROCOTO} +export ECFLOW=${ECFLOW} +export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} +export LOG_DIR=${LOG_DIR} +export DEP_RUN=${DEP_RUN} +export skip_check_results=${skip_check_results} +export RTVERBOSE=${RTVERBOSE} +export delete_rundir=${delete_rundir} +export WLCLK=${WLCLK} EOF - if [[ $MACHINE_ID = jet ]]; then - cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_NR}.env - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + if [[ ${MACHINE_ID} = jet ]]; then + cat << EOF >> "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" +export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:${PATH} +export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages EOF fi - if [[ $ROCOTO == true ]]; then + if [[ ${ROCOTO} == true ]]; then rocoto_create_run_task - elif [[ $ECFLOW == true ]]; then + elif [[ ${ECFLOW} == true ]]; then ecflow_create_run_task else - ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1 + echo "rt.sh: Running test ${TEST_ID} using compile ${COMPILE_ID}" + ./run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 + echo "rt.sh: Run with test ${TEST_ID} completed." fi ) - continue else - die "Unknown command $line" + die "Unknown command ${line}" fi -done < $TESTS_FILE +done < "${TESTS_FILE}" ## ## run regression test workflow (currently Rocoto or ecFlow are supported) ## -if [[ $ROCOTO == true ]]; then - if [[ $in_metatask == true ]]; then - echo " " >> $ROCOTO_XML +if [[ ${ROCOTO} == true ]]; then + if [[ ${in_metatask} == true ]]; then + echo " " >> "${ROCOTO_XML}" fi - echo "" >> $ROCOTO_XML + echo "" >> "${ROCOTO_XML}" # run rocoto workflow until done rocoto_run fi -if [[ $ECFLOW == true ]]; then - echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def +if [[ ${ECFLOW} == true ]]; then + echo "endsuite" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" # run ecflow workflow until done ecflow_run fi -## -## regression test is either failed or successful -## -set +e -cat ${LOG_DIR}/compile_*_time.log >> ${REGRESSIONTEST_LOG} -cat ${LOG_DIR}/rt_*.log >> ${REGRESSIONTEST_LOG} - -FILES="fail_test_* fail_compile_*" -for f in $FILES; do - if [[ -f "$f" ]]; then - cat "$f" >> fail_test - fi -done - -if [[ -e fail_test ]]; then - echo "FAILED TESTS: " - echo "FAILED TESTS: " >> ${REGRESSIONTEST_LOG} - while read -r failed_test_name - do - echo "${failed_test_name}" - echo "${failed_test_name}" >> ${REGRESSIONTEST_LOG} - done < fail_test - echo ; echo REGRESSION TEST FAILED - (echo ; echo REGRESSION TEST FAILED) >> ${REGRESSIONTEST_LOG} -else - echo ; echo REGRESSION TEST WAS SUCCESSFUL - (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG} - - rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp - [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} - [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db - [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* - [[ ${SINGLE_NAME} != '' ]] && rm -f $RT_SINGLE_CONF +# IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE +if [[ ${CREATE_BASELINE} == true && ${NEW_BASELINES_FILE} != '' ]]; then + for dir in "${RTPWD}"/*/; do + dir=${dir%*/} + [[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue + ln -s "${dir%*/}" "${NEW_BASELINE}/" + done fi -date >> ${REGRESSIONTEST_LOG} - -elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) -echo "Elapsed time: ${elapsed_time}. Have a nice day!" >> ${REGRESSIONTEST_LOG} -echo "Elapsed time: ${elapsed_time}. Have a nice day!" +## Lets verify all tests were run and that they passed +generate_log +echo "******Regression Testing Script Completed******" diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 63b58c6f6b..c82ee2d1b8 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -1,3 +1,4 @@ +#!/bin/bash set -eu if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then @@ -5,13 +6,20 @@ if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then exit 1 fi +ECFLOW_RUNNING=false + # Note: this file must only contain subroutines, and variables that # are not dependent on the caller. Most regression test variables # (such as ACCNR) are not set until after rt.sh sources this file. -qsub_id=0 -slurm_id=0 -bsub_id=0 +jobid=0 + +redirect_out_err() { + ( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out ) + # The above shell redirection copies stdout to "out" and stderr to "err" + # while still sending them to stdout and stderr. It ensures the entire + # redirect_out_err command will return non-zero if "$@" or tee return non-zero. +} function compute_petbounds_and_tasks() { @@ -21,11 +29,11 @@ function compute_petbounds_and_tasks() { # ATM is a special case since it is running on the sum of compute and io tasks. # CHM component and mediator are running on ATM compute tasks only. - if [[ $DATM_CDEPS = 'false' ]]; then + if [[ ${DATM_CDEPS} = 'false' ]]; then if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then ATM_compute_tasks=$((INPES * JNPES * NTILES)) fi - if [[ $QUILTING = '.true.' ]]; then + if [[ ${QUILTING} = '.true.' ]]; then ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) fi fi @@ -79,226 +87,174 @@ function compute_petbounds_and_tasks() { UFS_tasks=${n} - echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" - echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" - echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" - echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" - echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" - echo "MED_petlist_bounds: ${med_petlist_bounds:-}" - echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" - echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" - echo "UFS_tasks : ${UFS_tasks:-}" + if [[ ${RTVERBOSE} == true ]]; then + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + fi # TASKS is now set to UFS_TASKS - export TASKS=$UFS_tasks + export TASKS=${UFS_tasks} } interrupt_job() { - set -x - if [[ $SCHEDULER = 'pbs' ]]; then - echo "run_util.sh: interrupt_job qsub_id = ${qsub_id}" - qdel ${qsub_id} - elif [[ $SCHEDULER = 'slurm' ]]; then - echo "run_util.sh: interrupt_job slurm_id = ${slurm_id}" - scancel ${slurm_id} - elif [[ $SCHEDULER = 'lsf' ]]; then - echo "run_util.sh: interrupt_job bsub_id = ${bsub_id}" - bkill ${bsub_id} - else - echo "run_util.sh: interrupt_job unknown SCHEDULER $SCHEDULER" - fi + echo "rt_utils.sh: Job ${jobid} interrupted" + case ${SCHEDULER} in + pbs) + qdel "${jobid}" + ;; + slurm) + scancel "${jobid}" + ;; + *) + echo "Unsupported scheduler, job may have not terminated properly." + ;; + esac } submit_and_wait() { - + echo "rt_utils.sh: Submitting job on scheduler: ${SCHEDULER}" [[ -z $1 ]] && exit 1 - [ -o xtrace ] && set_x='set -x' || set_x='set +x' - set +x - local -r job_card=$1 ROCOTO=${ROCOTO:-false} ECFLOW=${ECFLOW:-false} local test_status='PASS' + case ${SCHEDULER} in + pbs) + qsubout=$( qsub "${job_card}" ) + re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$' + [[ "${qsubout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]} + ;; + slurm) + slurmout=$( sbatch "${job_card}" ) + re='Submitted batch job ([0-9]+)' + [[ "${slurmout}" =~ ${re} ]] && jobid=${BASH_REMATCH[1]} + ;; + *) + echo "Unsupported scheduler: ${SCHEDULER}" + exit 1 + ;; + esac - if [[ $SCHEDULER = 'pbs' ]]; then - qsubout=$( qsub $job_card ) - re='^([0-9]+)(\.[a-zA-Z0-9\.-]+)$' - [[ "${qsubout}" =~ $re ]] && qsub_id=${BASH_REMATCH[1]} - echo "Job id ${qsub_id}" - elif [[ $SCHEDULER = 'slurm' ]]; then - slurmout=$( sbatch $job_card ) - re='Submitted batch job ([0-9]+)' - [[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]} - echo "Job id ${slurm_id}" - elif [[ $SCHEDULER = 'lsf' ]]; then - bsubout=$( bsub < $job_card ) - re='Job <([0-9]+)> is submitted to queue <(.+)>.' - [[ "${bsubout}" =~ $re ]] && bsub_id=${BASH_REMATCH[1]} - echo "Job id ${bsub_id}" - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - + echo "rt_utils.sh: Submitted Job. ID is ${jobid}." + sleep 10 # wait for the job to enter the queue local count=0 - local job_running=0 - until [[ $job_running -eq 1 ]] + local job_running='' + echo "rt_utils.sh: Job is waiting to enter the queue..." + until [[ ${job_running} == 'true' ]] do - echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is waiting to enter the queue" - [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "waiting to enter the queue" - if [[ $SCHEDULER = 'pbs' ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) - elif [[ $SCHEDULER = 'slurm' ]]; then - job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) - elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) + case ${SCHEDULER} in + pbs) + set +e + job_info=$( qstat "${jobid}" ) + set -e + ;; + slurm) + job_info=$( squeue -u "${USER}" -j "${jobid}" ) + ;; + *) + ;; + esac + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + continue else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 + job_running=false fi + sleep 5 (( count=count+1 )) - if [[ $count -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi + if [[ ${count} -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi done - - # find jobid - if [[ $SCHEDULER = 'pbs' ]]; then - jobid=${qsub_id} - elif [[ $SCHEDULER = 'slurm' ]]; then - jobid=${slurm_id} - elif [[ $SCHEDULER = 'lsf' ]]; then - jobid=${bsub_id} - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is submitted " - if [[ ${ECFLOW:-false} == true ]]; then - ecflow_client --label=job_id "${jobid}" - ecflow_client --label=job_status "submitted" - fi + echo "rt_utils.sh Job (${jobid}) is now in the queue." # wait for the job to finish and compare results - job_running=1 local n=1 - until [[ $job_running -eq 0 ]] + until [[ ${job_running} == 'false' ]] do - - if [[ $SCHEDULER = 'pbs' ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) - elif [[ $SCHEDULER = 'slurm' ]]; then - job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) - elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) - else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - fi - - if [[ $SCHEDULER = 'pbs' ]]; then - - status=$( qstat ${qsub_id} | grep ${qsub_id} | awk '{print $5}' ); status=${status:--} - if [[ $status = 'Q' ]]; then - status_label='waiting in a queue' - elif [[ $status = 'H' ]]; then - status_label='held in a queue' - elif [[ $status = 'R' ]]; then - status_label='running' - elif [[ $status = 'E' ]] || [[ $status = 'C' ]] || [[ $status = '-' ]]; then - status_label='finished' - test_status='DONE' - exit_status=$( qstat ${jobid} -x -f | grep Exit_status | awk '{print $3}') - if [[ $exit_status != 0 ]]; then - test_status='FAIL' - fi - else - status_label='finished' - fi - - elif [[ $SCHEDULER = 'slurm' ]]; then - - status=$( squeue -u ${USER} -j ${slurm_id} 2>/dev/null | grep ${slurm_id} | awk '{print $5}' ); status=${status:--} - if [[ $status = 'R' ]]; then - status_label='running' - elif [[ $status = 'PD' ]]; then - status_label='pending' - elif [[ $status = 'F' ]]; then - status_label='failed' - test_status='FAIL' - elif [[ $status = 'C' ]]; then - status_label='finished' - test_status='DONE' - else - echo "Slurm unknown status ${status}. Check sacct ..." - sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 - status_label=$( sacct -n -j ${slurm_id} --format=JobID,state%20,Jobname%20 | grep "^${slurm_id}" | grep ${JBNME} | awk '{print $2}' ) - if [[ $status_label = 'FAILED' ]] || [[ $status_label = 'TIMEOUT' ]] || [[ $status_label = 'CANCELLED' ]] ; then - test_status='FAIL' - fi - fi - - elif [[ $SCHEDULER = 'lsf' ]]; then - - status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} - if [[ $status = 'PEND' ]]; then - status_label='pending' - elif [[ $status = 'RUN' ]]; then - status_label='running' - elif [[ $status = 'DONE' ]]; then - status_label='finished' - test_status='DONE' - elif [[ $status = 'EXIT' ]]; then - status_label='failed' - test_status='FAIL' - else - echo "bsub unknown status ${status}" - status_label='finished' - test_status='DONE' - exit_status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} - if [[ $exit_status = 'EXIT' ]]; then - status_label='failed' - test_status='FAIL' - fi - fi - + case ${SCHEDULER} in + pbs) + set +e + job_info=$( qstat "${jobid}" ) + set -e + ;; + slurm) + job_info=$( squeue -u "${USER}" -j "${jobid}" ) + ;; + *) + ;; + esac + + + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true else - echo "Unknown SCHEDULER $SCHEDULER" - exit 1 - + job_running=false + continue fi - echo "$n min. TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is ${status_label}, status: $status jobid ${jobid}" - [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "$status_label" - - if [[ $test_status = 'FAIL' || $test_status = 'DONE' ]]; then - break - fi + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $5}' <<< "${status}" ) + + case ${status} in + #waiting cases + #pbs: Q + #Slurm: (old: PD, new: PENDING) + Q|PD|PENDING) + status_label='Job waiting to start' + ;; + #running cases + #pbs: R + #slurm: (old: R, new: RUNNING) + R|RUNNING) + status_label='Job running' + ;; + #held cases + #pbs only: H + H) + status_label='Job being held' + echo "rt_utils.sh: *** WARNING ***: Job in a HELD state. Might want to stop manually." + ;; + #fail/completed cases + #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED + F|TO|CA|FAILED|TIMEOUT|CANCELLED) + echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" + job_running=false #Trip the loop to end with these status flags + interrupt_job + exit 1 + ;; + #completed + #pbs only: C-Complete E-Exiting + C|E) + status_label='Completed' + ;; + *) + status_label="Unknown" + echo "rt_utils.sh: *** WARNING ***: Job status unsupported: ${status}" + echo "rt_utils.sh: *** WARNING ***: Status might be non-terminating, please manually stop if needed" + ;; + esac + + echo "${n} min. ${SCHEDULER^} Job ${jobid} Status: ${status_label} (${status})" (( n=n+1 )) sleep 60 & wait $! done - - if [[ $test_status = 'FAIL' ]]; then - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL" >> ${RT_LOG} - echo;echo;echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL" - - if [[ $ROCOTO == true || $ECFLOW == true ]]; then - exit 1 - fi - fi - - eval "$set_x" } check_results() { - - [ -o xtrace ] && set_x='set -x' || set_x='set +x' - set +x + echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" ROCOTO=${ROCOTO:-false} ECFLOW=${ECFLOW:-false} @@ -308,76 +264,71 @@ check_results() { # Give one minute for data to show up on file system #sleep 60 - echo > ${RT_LOG} - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" >> ${RT_LOG} - echo "working dir = ${RUNDIR}" >> ${RT_LOG} - echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...." >> ${RT_LOG} + { echo echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...." + echo "Checking test ${TEST_ID} results ...." + } > "${RT_LOG}" + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." if [[ ${CREATE_BASELINE} = false ]]; then # # --- regression test comparison # for i in ${LIST_FILES} ; do - printf %s " Comparing " $i " ....." >> ${RT_LOG} - printf %s " Comparing " $i " ....." + printf %s " Comparing ${i} ....." >> "${RT_LOG}" + printf %s " Comparing ${i} ....." - if [[ ! -f ${RUNDIR}/$i ]] ; then + if [[ ! -f ${RUNDIR}/${i} ]] ; then - echo ".......MISSING file" >> ${RT_LOG} + echo ".......MISSING file" >> "${RT_LOG}" echo ".......MISSING file" test_status='FAIL' - elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ]] ; then + elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then - echo ".......MISSING baseline" >> ${RT_LOG} + echo ".......MISSING baseline" >> "${RT_LOG}" echo ".......MISSING baseline" test_status='FAIL' else - - cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? - if [[ $d -eq 2 ]]; then - echo "....CMP ERROR" >> ${RT_LOG} - echo "....CMP ERROR" - exit 1 - fi - - if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 || ${MACHINE_ID} =~ noaacloud ]] ; then - printf ".......ALT CHECK.." >> ${RT_LOG} - printf ".......ALT CHECK.." - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then - if [[ $CMP_DATAONLY == false ]]; then - nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + if [[ ${i##*.} == nc* ]] ; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + printf "USING NCCMP.." >> "${RT_LOG}" + printf "USING NCCMP.." + if [[ ${CMP_DATAONLY} == false ]]; then + nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? else - nccmp -d -S -q -f -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? fi - if [[ $d -ne 0 && $d -ne 1 ]]; then - echo "....ERROR" >> ${RT_LOG} - echo "....ERROR" - exit 1 + if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' fi - else - ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? - if [[ $d -eq 1 ]]; then - echo "....ERROR" >> ${RT_LOG} - echo "....ERROR" - exit 1 - fi - fi fi + else + printf "USING CMP.." >> "${RT_LOG}" + printf "USING CMP.." + cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? + if [[ ${d} -eq 2 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + fi - if [[ $d -ne 0 ]]; then - echo "....NOT OK" >> ${RT_LOG} - echo "....NOT OK" + if [[ ${d} -ne 0 ]]; then + echo "....NOT IDENTICAL" >> "${RT_LOG}" + echo "....NOT IDENTICAL" test_status='FAIL' else - echo "....OK" >> ${RT_LOG} + echo "....OK" >> "${RT_LOG}" echo "....OK" fi @@ -389,82 +340,79 @@ check_results() { # # --- create baselines # - echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...." - echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...." >> ${RT_LOG} + echo;echo "Moving baseline ${TEST_ID} files ...." + echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" for i in ${LIST_FILES} ; do - printf %s " Moving " $i " ....." - printf %s " Moving " $i " ....." >> ${RT_LOG} - if [[ -f ${RUNDIR}/$i ]] ; then - mkdir -p ${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname ${i}) - cp ${RUNDIR}/${i} ${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i} - echo "....OK" >>${RT_LOG} + printf %s " Moving ${i} ....." + printf %s " Moving ${i} ....." >> "${RT_LOG}" + if [[ -f ${RUNDIR}/${i} ]] ; then + mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" + cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" + echo "....OK" >> "${RT_LOG}" echo "....OK" else - echo "....NOT OK. Missing " ${RUNDIR}/$i >>${RT_LOG} - echo "....NOT OK. Missing " ${RUNDIR}/$i + echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" + echo "....NOT OK. Missing ${RUNDIR}/${i}" test_status='FAIL' fi done fi - echo >> ${RT_LOG} - grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG} - grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG} - echo >> ${RT_LOG} + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + } >> "${RT_LOG}" TRIES='' - if [[ $ECFLOW == true ]]; then - if [[ $ECF_TRYNO -gt 1 ]]; then - TRIES=" Tries: $ECF_TRYNO" + if [[ ${ECFLOW} == true ]]; then + if [[ ${ECF_TRYNO} -gt 1 ]]; then + TRIES=" Tries: ${ECF_TRYNO}" fi fi - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}" >> ${RT_LOG} - echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}" + echo "Test ${TEST_ID} ${test_status}${TRIES}" >> "${RT_LOG}" + echo >> "${RT_LOG}" + echo "Test ${TEST_ID} ${test_status}${TRIES}" echo - if [[ $test_status = 'FAIL' ]]; then - echo "${TEST_NR} ${TEST_NAME}_${RT_COMPILER} failed in check_result" >> $PATHRT/fail_test_${TEST_NR} - - if [[ $ROCOTO = true || $ECFLOW == true ]]; then - exit 1 - fi + if [[ ${test_status} = 'FAIL' ]]; then + echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" + return 1 + else + return 0 fi - - eval "$set_x" } kill_job() { - + echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..." [[ -z $1 ]] && exit 1 local -r jobid=$1 - if [[ $SCHEDULER = 'pbs' ]]; then - qdel ${jobid} - elif [[ $SCHEDULER = 'slurm' ]]; then - scancel ${jobid} - elif [[ $SCHEDULER = 'lsf' ]]; then - bkill ${jobid} + if [[ ${SCHEDULER} = 'pbs' ]]; then + qdel "${jobid}" + elif [[ ${SCHEDULER} = 'slurm' ]]; then + scancel "${jobid}" fi } rocoto_create_compile_task() { - + echo "rt_utils.sh: ${COMPILE_ID}: Creating ROCOTO compile task." new_compile=true - if [[ $in_metatask == true ]]; then + if [[ ${in_metatask} == true ]]; then in_metatask=false - echo " " >> $ROCOTO_XML + echo " " >> "${ROCOTO_XML}" fi NATIVE="" BUILD_CORES=8 BUILD_WALLTIME="00:30:00" if [[ ${MACHINE_ID} == jet ]]; then - BUILD_WALLTIME="01:00:00" + BUILD_WALLTIME="02:00:00" fi if [[ ${MACHINE_ID} == hera ]]; then BUILD_WALLTIME="01:00:00" @@ -472,52 +420,86 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == orion ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == hercules ]]; then + BUILD_WALLTIME="01:00:00" + fi if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == gaea ]]; then + BUILD_WALLTIME="01:00:00" + fi - cat << EOF >> $ROCOTO_XML - - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR} - compile_${COMPILE_NR} + + cat << EOF >> "${ROCOTO_XML}" + + bash -c 'set -xe -o pipefail ; &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log' + compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} +EOF + + if [[ "${MACHINE_ID}" == gaea ]] ; then + cat << EOF >> "${ROCOTO_XML}" + --clusters=es + eslogin_c5 +EOF + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then + cat << EOF >> "${ROCOTO_XML}" ${PARTITION} +EOF + fi + + cat << EOF >> "${ROCOTO_XML}" ${BUILD_CORES} ${BUILD_WALLTIME} - &RUNDIR_ROOT;/compile_${COMPILE_NR}.log + &RUNDIR_ROOT;/compile_${COMPILE_ID}.log ${NATIVE} EOF } rocoto_create_run_task() { - - if [[ $DEP_RUN != '' ]]; then - DEP_STRING=" " + echo "rt_utils.sh: ${TEST_ID}: Creating ROCOTO run task." + if [[ ${DEP_RUN} != '' ]]; then + DEP_STRING=" " else - DEP_STRING="" + DEP_STRING="" fi - CORES=$(( ${TASKS} * ${THRD} )) + CORES=$((TASKS*THRD)) if (( TPN > CORES )); then - TPN=$CORES + TPN=${CORES} fi NATIVE="" - cat << EOF >> $ROCOTO_XML - - $DEP_STRING - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} - ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX} + cat << EOF >> "${ROCOTO_XML}" + + ${DEP_STRING} + bash -c 'set -xe -o pipefail ; &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log' + ${TEST_ID}${RT_SUFFIX} ${ACCNR} + ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} +EOF + + if [[ "${MACHINE_ID}" == gaea ]] ; then + cat << EOF >> "${ROCOTO_XML}" + --clusters=${PARTITION} + --partition=batch +EOF + + elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then + cat << EOF >> "${ROCOTO_XML}" ${QUEUE} ${PARTITION} +EOF + fi + + cat << EOF >> "${ROCOTO_XML}" ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.out - &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.err + &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.log ${NATIVE} EOF @@ -525,23 +507,31 @@ EOF } rocoto_kill() { - for jobid in $( $ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB | grep 197001010000 | grep -E 'QUEUED|RUNNING' | awk -F" " '{print $3}' ); do - kill_job ${jobid} + echo "rt_utils.sh: Killing ROCOTO Workflow..." + job_id_in=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" ) + job_id_in=$(grep 197001010000 <<< "${job_id_in}" ) + job_id_in=$(grep -E 'QUEUED|RUNNING' <<< "${job_id_in}" ) + job_id_in=$(awk -F" " '{print $3}' <<< "${job_id_in}" ) + for jobid in ${job_id_in}; do + kill_job "${jobid}" done } rocoto_step() { - set -e + echo "rt_utils.sh: Running one iteration of rocotorun and rocotostat..." echo "Unknown" > rocoto_workflow.state # Run one iteration of rocotorun and rocotostat. - $ROCOTORUN -v 10 -w $ROCOTO_XML -d $ROCOTO_DB + ${ROCOTORUN} -v 10 -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" sleep 1 # Is it done? - state=$($ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB -s | grep 197001010000 | awk -F" " '{print $2}') - echo "$state" > $ROCOTO_STATE + state=$( "${ROCOTOSTAT}" -w "${ROCOTO_XML}" -d "${ROCOTO_DB}" -s ) + state=$( grep 197001010000 <<< "${state}" ) + state=$( awk -F" " '{print $2}' <<< "${state}" ) + echo "${state}" > "${ROCOTO_STATE}" } rocoto_run() { + echo "rt_utils.sh: Running ROCOTO workflow" # Run the rocoto workflow until it is complete local naptime=60 local step_attempts=0 @@ -551,150 +541,211 @@ rocoto_run() { local max_time=3600 # seconds to wait for Rocoto to start working again local result=0 state="Active" - while [[ $state != "Done" ]]; do + while [[ ${state} != "Done" ]]; do # Run one iteration of rocotorun and rocotostat. Use an # exponential backoff algorithm to handle temporary system # failures breaking Rocoto. start_time=$( env TZ=UTC date +%s ) - for step_attempts in $( seq 1 "$max_step_attempts" ) ; do + for step_attempts in $( seq 1 "${max_step_attempts}" ) ; do now_time=$( env TZ=UTC date +%s ) set +e ( rocoto_step ) result=$? - state=$( cat $ROCOTO_STATE ) + state=$( cat "${ROCOTO_STATE}" ) set -e if [[ "${state:-Unknown}" == Done ]] ; then - set +x echo "Rocoto workflow has completed." - set -x return 0 - elif [[ $result == 0 ]] ; then + elif [[ ${result} == 0 ]] ; then break # rocoto_step succeeded elif (( now_time-start_time > max_time || step_attempts >= max_step_attempts )) ; then - set +x - echo "Rocoto commands have failed $step_attempts times, for $(( (now_time-start_time+30)/60 )) minutes." - echo "There may be something wrong with the $( hostname ) node or the batch system." + hostnamein=$(hostname) + echo "Rocoto commands have failed ${step_attempts} times, for $(( (now_time-start_time+30)/60 )) minutes." + echo "There may be something wrong with the ${hostnamein} node or the batch system." echo "I'm giving up. Sorry." - set -x return 2 fi sleep $(( naptime * 2**((step_attempts-1)%4) * RANDOM/32767 )) done - sleep $naptime + sleep "${naptime}" done } ecflow_create_compile_task() { + echo "rt_utils.sh: ${COMPILE_ID}: Creating ECFLOW compile task" + export new_compile=true - new_compile=true - - - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_NR}.ecf + cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf" %include -$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 & +${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 & %include EOF - - echo " task compile_${COMPILE_NR}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label build_options '${MAKE_OPT}'" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " inlimit max_builds" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + { + echo " task compile_${COMPILE_ID}" + echo " label build_options '${MAKE_OPT}'" + echo " label job_id ''" + echo " label job_status ''" + echo " inlimit max_builds" + } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" } ecflow_create_run_task() { - - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.ecf + echo "rt_utils.sh: ${TEST_ID}: Creating ECFLOW run task" + cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf" %include -$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1 & +${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 & %include EOF - - echo " task ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - if [[ $DEP_RUN != '' ]]; then - echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + { + echo " task ${TEST_ID}${RT_SUFFIX}" + echo " label job_id ''" + echo " label job_status ''" + echo " inlimit max_jobs" + } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" + if [[ ${DEP_RUN} != '' ]]; then + echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" else - echo " trigger compile_${COMPILE_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " trigger compile_${COMPILE_ID} == complete" >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" fi + } ecflow_run() { - - ECF_HOST="${ECF_HOST:-$HOSTNAME}" - - set +e - ecflow_client --ping --host=${ECF_HOST} --port=${ECF_PORT} - not_running=$? - if [[ $not_running -eq 1 ]]; then - echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" - if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then - if [[ "${HOST::1}" == "a" ]]; then - export ECF_HOST=aecflow01 - elif [[ "${HOST::1}" == "c" ]]; then - export ECF_HOST=cdecflow01 - elif [[ "${HOST::1}" == "d" ]]; then - export ECF_HOST=ddecflow01 - fi - MYCOMM="bash -l -c \"module load ecflow && ecflow_start.sh -p ${ECF_PORT} \"" - ssh $ECF_HOST "${MYCOMM}" - elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then - module load ecflow - echo "On ${MACHINE_ID}, start ecFlow server on dedicated node ${ECF_HOST}" - MYCOMM="bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\"" - ssh $ECF_HOST "${MYCOMM}" - else - ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server + echo "rt_utils.sh: Starting ECFLOW run" + # NOTE: ECFLOW IS NOT SAFE TO RUN WITH set -e, PLEASE AVOID + #ECF_HOST="${ECF_HOST:-${HOSTNAME}}" + + + # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an + # explicit ecflow node + if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then + if [[ "${HOST::1}" == "a" ]]; then + ECF_HOST=aecflow01 + elif [[ "${HOST::1}" == "c" ]]; then + ECF_HOST=cdecflow01 + elif [[ "${HOST::1}" == "d" ]]; then + ECF_HOST=ddecflow01 fi + elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then + module load ecflow + fi + if [[ -z ${ECF_HOST} || -z ${ECF_PORT} ]]; then + echo "ERROR: ECF_HOST or ECF_PORT are not set, and rt.sh cannot continue with ECFLOW" + exit 1 else - echo "ecflow_server is already running on ${ECF_HOST}:${ECF_PORT}" + echo "ECF_HOST: ${ECF_HOST}, ECF_PORT: ${ECF_PORT}" + export ECF_HOST + export ECF_PORT fi + + # Start the ecflow_server + echo "rt_utils.sh: Checking status of the ecflow_server..." + set +e + ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" + not_running=$? set -e - ECFLOW_RUNNING=true + if [[ ${not_running} -eq 1 ]]; then + echo "rt_utils.sh: ecflow_server is not running on ${ECF_HOST}:${ECF_PORT}" + echo "rt_utils.sh: attempting to start ecflow_server..." + + save_traps=$(trap) + trap "" SIGINT # Ignore INT signal during ecflow startup + case ${MACHINE_ID} in + wcoss2|acorn|hera|jet) + #shellcheck disable=SC2029 + ssh "${ECF_HOST}" "bash -l -c \"module load ecflow && ${ECFLOW_START} -p ${ECF_PORT}\"" + ;; + *) + ${ECFLOW_START} -p "${ECF_PORT}" -d "${RUNDIR_ROOT}/ecflow_server" + ;; + esac + + ECFLOW_RUNNING=true + eval "${save_traps}" + # Try pinging ecflow server now, and erroring out if not there. + set +e + ecflow_client --ping --host="${ECF_HOST}" --port="${ECF_PORT}" + not_running=$? + set -e - export ECF_PORT - export ECF_HOST + if [[ ${not_running} -eq 1 ]]; then + echo "rt_utils.sh: ERROR -- Failure to start ecflow. Exiting..." + exit 1 + fi + else + echo "rt_utils.sh: Confirmed: ecflow_server is running on ${ECF_HOST}:${ECF_PORT}" + ECFLOW_RUNNING=true + fi - ecflow_client --load=${ECFLOW_RUN}/${ECFLOW_SUITE}.def - ecflow_client --begin=${ECFLOW_SUITE} - ecflow_client --restart + echo "rt_utils.sh: Starting ECFLOW tasks..." + set +e + ecflow_client --load="${ECFLOW_RUN}/${ECFLOW_SUITE}.def" --host="${ECF_HOST}" --port="${ECF_PORT}" + ecflow_client --begin="${ECFLOW_SUITE}" --host="${ECF_HOST}" --port="${ECF_PORT}" + ecflow_client --restart --host="${ECF_HOST}" --port="${ECF_PORT}" + set -e + sleep 10 active_tasks=1 - while [[ $active_tasks -ne 0 ]] + max_active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" ) + max_active_tasks=$( grep "task " <<< "${max_active_tasks}" ) + max_active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${max_active_tasks}" ) + echo "rt_utils.sh: Total number of tasks processed -- ${max_active_tasks}" + prev_active_tasks=${active_tasks} + while [[ "${active_tasks}" -ne 0 ]] do sleep 10 & wait $! - active_tasks=$( ecflow_client --get_state /${ECFLOW_SUITE} | grep "task " | grep -E 'state:active|state:submitted|state:queued' | wc -l ) - echo "ecflow tasks remaining: ${active_tasks}" - ${PATHRT}/abort_dep_tasks.py + set +e + active_tasks=$( ecflow_client --get_state "/${ECFLOW_SUITE}" ) + active_tasks=$( grep "task " <<< "${active_tasks}" ) + active_tasks=$( grep -cP 'state:active|state:submitted|state:queued' <<< "${active_tasks}" ) + set -e + if [[ ${active_tasks} -ne ${prev_active_tasks} ]]; then + echo + echo -n "ECFLOW Tasks Remaining: ${active_tasks}/${max_active_tasks} " + prev_active_tasks=${active_tasks} + else + echo -n "." + fi + "${PATHRT}/abort_dep_tasks.py" done + sleep 65 # wait one ECF_INTERVAL plus 5 seconds - ecflow_client --delete=yes /${ECFLOW_SUITE} + echo "rt_utils.sh: ECFLOW tasks completed, cleaning up suite" + set +e + ecflow_client --delete=force yes "/${ECFLOW_SUITE}" + set -e sleep 5 } ecflow_kill() { - [[ ${ECFLOW_RUNNING:-false} == true ]] || return - set +e - ecflow_client --suspend /${ECFLOW_SUITE} - ecflow_client --kill /${ECFLOW_SUITE} - sleep 20 - ecflow_client --delete=force yes /${ECFLOW_SUITE} + [[ ${ECFLOW_RUNNING:-false} == true ]] || return + echo "rt_utils.sh: Deleting ECFLOW suite: ${ECFLOW_SUITE}" + set +e + ecflow_client --suspend "/${ECFLOW_SUITE}" + ecflow_client --kill "/${ECFLOW_SUITE}" + sleep 20 + ecflow_client --delete=force yes "/${ECFLOW_SUITE}" + set -e } ecflow_stop() { - [[ ${ECFLOW_RUNNING:-false} == true ]] || return - set +e - SUITES=$( ecflow_client --get | grep "^suite" ) - echo "SUITES=${SUITES}" - if [ -z "${SUITES}" ]; then - ecflow_client --halt=yes - ecflow_client --check_pt - ecflow_client --terminate=yes - fi + [[ ${ECFLOW_RUNNING:-false} == true ]] || return + echo "rt_utils.sh: Checking whether to stop ecflow_server..." + set +e + SUITES=$( ecflow_client --get ) + SUITES=$( grep "^suite" <<< "${SUITES}" ) + if [[ -z "${SUITES}" ]]; then + echo "rt_utils.sh: No other suites running, stopping ecflow_server" + ecflow_client --halt=yes + ecflow_client --check_pt + ecflow_client --terminate=yes + else + echo "rt_utils.sh: Active suites running, NOT stopping ecflow_server..." + echo "SUITES are: ${SUITES}" + fi + set -e } diff --git a/tests/rt_weekly.conf b/tests/rt_weekly.conf index e3ff4bd16b..5d460e6df2 100644 --- a/tests/rt_weekly.conf +++ b/tests/rt_weekly.conf @@ -1,6 +1,6 @@ ### Weekly tests ### -COMPILE | 1 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON | + hera | fv3 | +COMPILE | 1 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | + hera | fv3 | RUN | control_c768 | + hera | baseline | # CPLD Benchmark 35d tests diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1d8d6254f0..1685f89653 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -9,105 +10,93 @@ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM cleanup() { - [[ $ROCOTO = 'false' ]] && interrupt_job + [[ ${ROCOTO} = 'false' ]] && interrupt_job trap 0 exit } write_fail_test() { - echo "compile_${COMPILE_NR} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_NR} + echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}" exit 1 } remove_fail_test() { - echo "Removing test failure flag file for compile_${COMPILE_NR}" - rm -f $PATHRT/fail_compile_${COMPILE_NR} + echo "Removing test failure flag file for ${JBNME}" + rm -f "${PATHRT}/fail_${JBNME}" } if [[ $# != 4 ]]; then - echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_NR" + echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_ID" exit 1 fi export PATHRT=$1 export RUNDIR_ROOT=$2 export MAKE_OPT=$3 -export COMPILE_NR=$4 +export COMPILE_ID=$4 -cd ${PATHRT} +export JBNME="compile_${COMPILE_ID}" + +cd "${PATHRT}" remove_fail_test -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env +[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env" source default_vars.sh -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env - +[[ -e ${RUNDIR_ROOT}/${JBNME}.env ]] && source "${RUNDIR_ROOT}/${JBNME}.env" -export TEST_NAME=compile -export TEST_NR=${COMPILE_NR} -export JBNME="compile_${COMPILE_NR}" -export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR} +export RUNDIR=${RUNDIR_ROOT}/${JBNME} +date_s=$( date +%s ) +echo -n "${JBNME}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt" -echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt - -export RT_LOG=${LOG_DIR}/compile_${TEST_NR}.log +export RT_LOG=${LOG_DIR}/${JBNME}.log source rt_utils.sh source atparse.bash -rm -rf ${RUNDIR} -mkdir -p ${RUNDIR} -cd $RUNDIR +rm -rf "${RUNDIR}" +mkdir -p "${RUNDIR}" +cd "${RUNDIR}" -if [[ $SCHEDULER = 'pbs' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_qsub.IN_${MACHINE_ID} > job_card +if [[ ${SCHEDULER} = 'pbs' ]]; then + if [[ -e ${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/compile_qsub.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/compile_qsub.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'slurm' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_slurm.IN_${MACHINE_ID} > job_card +elif [[ ${SCHEDULER} = 'slurm' ]]; then + if [[ -e ${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/compile_slurm.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/compile_slurm.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'lsf' ]]; then - if [[ -e $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/compile_bsub.IN_${MACHINE_ID} > job_card - else - echo "Looking for fv3_conf/compile_bsub.IN_${MACHINE_ID} but it is not found. Exiting" - exit 1 - fi fi ################################################################################ # Submit compile job ################################################################################ -if [[ $ROCOTO = 'false' ]]; then +if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi +#ls -l "${PATHTR}/tests/fv3_${COMPILE_ID}.exe" -ls -l ${PATHTR}/tests/fv3_${COMPILE_NR}.exe - -cp ${RUNDIR}/compile_*_time.log ${LOG_DIR} -cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +cp "${RUNDIR}/${JBNME}_time.log" "${LOG_DIR}" +cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" remove_fail_test ################################################################################ # End compile job ################################################################################ +date_s=$( date +%s ) +echo " ${date_s}, 1" >> "${LOG_DIR}/${JBNME}_timestamp.txt" -echo " $( date +%s ), 1" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt - -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" +elapsed=${SECONDS} +echo "run_compile.sh: Compile ${COMPILE_ID} Completed." +echo "run_compile.sh: Compile ${COMPILE_ID} Elapsed time ${elapsed} seconds." diff --git a/tests/run_test.sh b/tests/run_test.sh index 70798f6c90..ace4fd0cf1 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -9,48 +10,48 @@ trap 'echo "run_test.sh interrupted PID=$$"; cleanup' INT trap 'echo "run_test.sh terminated PID=$$"; cleanup' TERM cleanup() { - [[ $ROCOTO = 'false' ]] && interrupt_job + [[ ${ROCOTO} = 'false' ]] && interrupt_job trap 0 exit } write_fail_test() { - echo "${TEST_NAME}_${RT_COMPILER} ${TEST_NR} failed in run_test" >> $PATHRT/fail_test_${TEST_NR} + echo "${TEST_ID} failed in run_test" >> "${PATHRT}/fail_test_${TEST_ID}" exit 1 } remove_fail_test() { - echo "Removing test failure flag file for ${TEST_NAME}_${RT_COMPILER} ${TEST_NR}" - rm -f $PATHRT/fail_test_${TEST_NR} + echo "Removing test failure flag file for ${TEST_ID}" + rm -f "${PATHRT}/fail_test_${TEST_ID}" } if [[ $# != 5 ]]; then - echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_NR COMPILE_NR" + echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_ID COMPILE_ID" exit 1 fi export PATHRT=$1 export RUNDIR_ROOT=$2 export TEST_NAME=$3 -export TEST_NR=$4 -export COMPILE_NR=$5 +export TEST_ID=$4 +export COMPILE_ID=$5 echo "PATHRT: ${PATHRT}" echo "RUNDIR_ROOT: ${RUNDIR_ROOT}" echo "TEST_NAME: ${TEST_NAME}" -echo "TEST_NR: ${TEST_NR}" -echo "COMPILE_NR: ${COMPILE_NR}" +echo "TEST_ID: ${TEST_ID}" +echo "COMPILE_ID: ${COMPILE_ID}" -cd ${PATHRT} +cd "${PATHRT}" unset MODEL_CONFIGURE -unset NEMS_CONFIGURE +unset UFS_CONFIGURE -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" source default_vars.sh -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env -source tests/$TEST_NAME +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" +source "tests/${TEST_NAME}" remove_fail_test @@ -60,74 +61,99 @@ remove_fail_test export INPUT_DIR=${CNTL_DIR} # Append RT_SUFFIX to RUNDIR, and BL_SUFFIX to CNTL_DIR -export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX} +export RUNDIR=${RUNDIR_ROOT}/${TEST_ID}${RT_SUFFIX} export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX} -export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} +JBNME="run_${TEST_ID}" +export JBNME +date_s=$( date +%s ) +echo -n "${TEST_ID}, ${date_s}," > "${LOG_DIR}/${JBNME}_timestamp.txt" -echo -n "${TEST_NAME}_${RT_COMPILER}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt - -export RT_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log -echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${TEST_DESCR}" +export RT_LOG=${LOG_DIR}/rt_${TEST_ID}${RT_SUFFIX}.log +echo "Test ${TEST_ID} ${TEST_DESCR}" source rt_utils.sh source atparse.bash -rm -rf ${RUNDIR} -mkdir -p ${RUNDIR} -cd $RUNDIR +rm -rf "${RUNDIR}" +mkdir -p "${RUNDIR}" +cd "${RUNDIR}" ############################################################################### # Make configure and run files ############################################################################### # FV3 executable: -cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe +cp "${PATHRT}/fv3_${COMPILE_ID}.exe" "fv3.exe" # modulefile for FV3 prerequisites: mkdir -p modulefiles -if [[ $MACHINE_ID == linux ]]; then - cp ${PATHRT}/modules.fv3_${COMPILE_NR} ./modulefiles/modules.fv3 +if [[ ${MACHINE_ID} == linux ]]; then + cp "${PATHRT}/modules.fv3_${COMPILE_ID}" "./modulefiles/modules.fv3" else - cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua ./modulefiles/modules.fv3.lua + cp "${PATHRT}/modules.fv3_${COMPILE_ID}.lua" "./modulefiles/modules.fv3.lua" fi -cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. +cp "${PATHTR}/modulefiles/ufs_common.lua" "./modulefiles/." # Get the shell file that loads the "module" command and purges modules: -cp ${PATHRT}/module-setup.sh module-setup.sh - -if [[ $MACHINE_ID == wcoss2 ]] || [[ $MACHINE_ID == acorn ]] ; then - # for compare_ncfile.py - module load gcc/10.3.0 python/3.8.6 -fi - -# load nccmp module -if [[ $MACHINE_ID == hera ]] || [[ $MACHINE_ID == orion ]] || [[ $MACHINE_ID == gaea ]] || [[ $MACHINE_ID == jet ]] || [[ $MACHINE_ID == cheyenne ]]; then - module load nccmp -fi - -SRCD="${PATHTR}" -RUND="${RUNDIR}" +cp "${PATHRT}/module-setup.sh" "module-setup.sh" + +case ${MACHINE_ID} in + wcoss2|acorn) + module load intel/19.1.3.304 netcdf/4.7.4 + module load nccmp + ;; + s4) + module use /data/prod/jedi/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core + module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 + module load miniconda/3.9.12 + module load nccmp/1.9.0.1 + ;; + stampede|expanse|noaacloud) + echo "No special nccmp load necessary" + ;; + gaea) + module use modulefiles + module load modules.fv3 + module load gcc/12.2.0 + ;; + derecho) + module load nccmp + ;; + *) + module use modulefiles + module load modules.fv3 + ;; +esac # FV3_RUN could have multiple entry seperated by space -if [ ! -z "$FV3_RUN" ]; then +if [[ -n "${FV3_RUN}" ]]; then for i in ${FV3_RUN} do - atparse < ${PATHRT}/fv3_conf/${i} >> fv3_run + atparse < "${PATHRT}/fv3_conf/${i}" >> fv3_run done else echo "No FV3_RUN set in test file" exit 1 fi -if [[ $DATM_CDEPS = 'true' ]] || [[ $FV3 = 'true' ]] || [[ $S2S = 'true' ]]; then - if [[ $HAFS = 'false' ]] || [[ $FV3 = 'true' && $HAFS = 'true' ]]; then - atparse < ${PATHRT}/parm/${INPUT_NML:-input.nml.IN} > input.nml +# Magic to handle namelist versions of &cires_ugwp_nml +if [[ ${DO_UGWP_V1:-.false.} == .true. ]] ; then + export HIDE_UGWPV0='!' + export HIDE_UGWPV1=' ' +else + export HIDE_UGWPV0=' ' + export HIDE_UGWPV1='!' +fi + +if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${FV3} = 'true' ]] || [[ ${S2S} = 'true' ]]; then + if [[ ${HAFS} = 'false' ]] || [[ ${FV3} = 'true' && ${HAFS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${INPUT_NML:-input.nml.IN}" > input.nml fi fi if [[ -f ${PATHRT}/parm/${MODEL_CONFIGURE} ]]; then - atparse < ${PATHRT}/parm/${MODEL_CONFIGURE} > model_configure + atparse < "${PATHRT}/parm/${MODEL_CONFIGURE}" > model_configure else echo "Cannot find file ${MODEL_CONFIGURE} set by variable MODEL_CONFIGURE" exit 1 @@ -135,139 +161,169 @@ fi compute_petbounds_and_tasks -if [[ -f ${PATHRT}/parm/${NEMS_CONFIGURE} ]]; then - atparse < ${PATHRT}/parm/${NEMS_CONFIGURE} > nems.configure +if [[ -f ${PATHRT}/parm/${UFS_CONFIGURE} ]]; then + atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure else - echo "Cannot find file ${NEMS_CONFIGURE} set by variable NEMS_CONFIGURE" + echo "Cannot find file ${UFS_CONFIGURE} set by variable UFS_CONFIGURE" exit 1 fi -if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02 - NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02 - K_SPLIT_NEST=$K_SPLIT_NEST02; N_SPLIT_NEST=$N_SPLIT_NEST02 - atparse < ${PATHRT}/parm/${INPUT_NEST02_NML} > input_nest02.nml +if [[ "Q${INPUT_NEST02_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST02:-} + export JNPES_NEST=${JNPES_NEST02:-} + export NPX_NEST=${NPX_NEST02:-} + export NPY_NEST=${NPY_NEST02:-} + export K_SPLIT_NEST=${K_SPLIT_NEST02:-} + export N_SPLIT_NEST=${N_SPLIT_NEST02:-} + atparse < "${PATHRT}/parm/${INPUT_NEST02_NML}" > input_nest02.nml else sed -i -e "//,/<\/output_grid_02>/d" model_configure fi -if [[ "Q${INPUT_NEST03_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST03; JNPES_NEST=$JNPES_NEST03 - NPX_NEST=$NPX_NEST03; NPY_NEST=$NPY_NEST03 - K_SPLIT_NEST=$K_SPLIT_NEST03; N_SPLIT_NEST=$N_SPLIT_NEST03 - atparse < ${PATHRT}/parm/${INPUT_NEST03_NML} > input_nest03.nml +if [[ "Q${INPUT_NEST03_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST03:-} + export JNPES_NEST=${JNPES_NEST03:-} + export NPX_NEST=${NPX_NEST03:-} + export NPY_NEST=${NPY_NEST03:-} + export K_SPLIT_NEST=${K_SPLIT_NEST03:-} + export N_SPLIT_NEST=${N_SPLIT_NEST03:-} + atparse < "${PATHRT}/parm/${INPUT_NEST03_NML}" > input_nest03.nml else sed -i -e "//,/<\/output_grid_03>/d" model_configure fi -if [[ "Q${INPUT_NEST04_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST04; JNPES_NEST=$JNPES_NEST04 - NPX_NEST=$NPX_NEST04; NPY_NEST=$NPY_NEST04 - K_SPLIT_NEST=$K_SPLIT_NEST04; N_SPLIT_NEST=$N_SPLIT_NEST04 - atparse < ${PATHRT}/parm/${INPUT_NEST04_NML} > input_nest04.nml +if [[ "Q${INPUT_NEST04_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST04:-} + export JNPES_NEST=${JNPES_NEST04:-} + export NPX_NEST=${NPX_NEST04:-} + export NPY_NEST=${NPY_NEST04:-} + export K_SPLIT_NEST=${K_SPLIT_NEST04:-} + export N_SPLIT_NEST=${N_SPLIT_NEST04:-} + atparse < "${PATHRT}/parm/${INPUT_NEST04_NML}" > input_nest04.nml else sed -i -e "//,/<\/output_grid_04>/d" model_configure fi -if [[ "Q${INPUT_NEST05_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST05; JNPES_NEST=$JNPES_NEST05 - NPX_NEST=$NPX_NEST05; NPY_NEST=$NPY_NEST05 - K_SPLIT_NEST=$K_SPLIT_NEST05; N_SPLIT_NEST=$N_SPLIT_NEST05 - atparse < ${PATHRT}/parm/${INPUT_NEST05_NML} > input_nest05.nml +if [[ "Q${INPUT_NEST05_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST05:-} + export JNPES_NEST=${JNPES_NEST05:-} + export NPX_NEST=${NPX_NEST05:-} + export NPY_NEST=${NPY_NEST05:-} + export K_SPLIT_NEST=${K_SPLIT_NEST05:-} + export N_SPLIT_NEST=${N_SPLIT_NEST05:-} + atparse < "${PATHRT}/parm/${INPUT_NEST05_NML}" > input_nest05.nml else sed -i -e "//,/<\/output_grid_05>/d" model_configure fi -if [[ "Q${INPUT_NEST06_NML:-}" != Q ]] ; then - INPES_NEST=$INPES_NEST06; JNPES_NEST=$JNPES_NEST06 - NPX_NEST=$NPX_NEST06; NPY_NEST=$NPY_NEST06 - K_SPLIT_NEST=$K_SPLIT_NEST06; N_SPLIT_NEST=$N_SPLIT_NEST06 - atparse < ${PATHRT}/parm/${INPUT_NEST06_NML} > input_nest06.nml +if [[ "Q${INPUT_NEST06_NML:-}" != Q ]]; then + export INPES_NEST=${INPES_NEST06:-} + export JNPES_NEST=${JNPES_NEST06:-} + export NPX_NEST=${NPX_NEST06:-} + export NPY_NEST=${NPY_NEST06:-} + export K_SPLIT_NEST=${K_SPLIT_NEST06:-} + export N_SPLIT_NEST=${N_SPLIT_NEST06:-} + atparse < "${PATHRT}/parm/${INPUT_NEST06_NML}" > input_nest06.nml else sed -i -e "//,/<\/output_grid_06>/d" model_configure fi # diag table -if [[ "Q${DIAG_TABLE:-}" != Q ]] ; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE} > diag_table +if [[ "Q${DIAG_TABLE:-}" != Q ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE}" > diag_table fi # Field table -if [[ "Q${FIELD_TABLE:-}" != Q ]] ; then - cp ${PATHRT}/parm/field_table/${FIELD_TABLE} field_table +if [[ "Q${FIELD_TABLE:-}" != Q ]]; then + cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table fi # fix files -if [[ $FV3 == true ]]; then - cp ${INPUTDATA_ROOT}/FV3_fix/*.txt . - cp ${INPUTDATA_ROOT}/FV3_fix/*.f77 . - cp ${INPUTDATA_ROOT}/FV3_fix/*.dat . - cp ${INPUTDATA_ROOT}/FV3_fix/fix_co2_proj/* . - if [[ $TILEDFIX != .true. ]]; then - cp ${INPUTDATA_ROOT}/FV3_fix/*.grb . +if [[ ${FV3} == true ]]; then + cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt . + cp "${INPUTDATA_ROOT}"/FV3_fix/*.f77 . + cp "${INPUTDATA_ROOT}"/FV3_fix/*.dat . + cp "${INPUTDATA_ROOT}"/FV3_fix/fix_co2_proj/* . + if [[ ${TILEDFIX} != .true. ]]; then + cp "${INPUTDATA_ROOT}"/FV3_fix/*.grb . fi fi # NoahMP table file - cp ${PATHRT}/parm/noahmptable.tbl . + cp "${PATHRT}/parm/noahmptable.tbl" . # AQM -if [[ $AQM == .true. ]]; then - cp ${PATHRT}/parm/aqm/aqm.rc . +if [[ ${AQM} == .true. ]]; then + cp "${PATHRT}/parm/aqm/aqm.rc" . fi # Field Dictionary -cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml +cp "${PATHRT}/parm/fd_ufs.yaml" fd_ufs.yaml # Set up the run directory source ./fv3_run -if [[ $CPLWAV == .true. ]]; then - if [[ $MULTIGRID = 'true' ]]; then - atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp +if [[ ${CPLWAV} == .true. ]]; then + if [[ ${WW3_MULTIGRID} = 'true' ]]; then + atparse < "${PATHRT}/parm/ww3_multi.inp.IN" > ww3_multi.inp else - atparse < ${PATHRT}/parm/ww3_shel.nml.IN > ww3_shel.nml - cp ${PATHRT}/parm/ww3_points.list . + atparse < "${PATHRT}/parm/ww3_shel.nml.IN" > ww3_shel.nml + cp "${PATHRT}/parm/ww3_points.list" . fi fi -if [[ $CPLCHM == .true. ]]; then - cp ${PATHRT}/parm/gocart/*.rc . - atparse < ${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN > AERO_HISTORY.rc +if [[ ${CPLCHM} == .true. ]]; then + cp "${PATHRT}"/parm/gocart/*.rc . + atparse < "${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN" > AERO_HISTORY.rc fi -if [[ $DATM_CDEPS = 'true' ]] || [[ $S2S = 'true' ]]; then - if [[ $HAFS = 'false' ]]; then - atparse < ${PATHRT}/parm/ice_in_template > ice_in - atparse < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table - atparse < ${PATHRT}/parm/data_table_template > data_table +#TODO: this logic needs to be cleaned up for datm applications w/o +#ocean or ice +if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${S2S} = 'true' ]]; then + if [[ ${HAFS} = 'false' ]]; then + atparse < "${PATHRT}/parm/ice_in.IN" > ice_in + atparse < "${PATHRT}/parm/${MOM6_INPUT:-MOM_input_${OCNRES}.IN}" > INPUT/MOM_input + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table + atparse < "${PATHRT}/parm/MOM6_data_table.IN" > data_table fi fi -if [[ $HAFS = 'true' ]] && [[ $DATM_CDEPS = 'false' ]]; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table +if [[ ${HAFS} = 'true' ]] && [[ ${DATM_CDEPS} = 'false' ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table fi -if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]] ; then +if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]]; then # Append diagnostic outputs, to support tests that vary from others # only by adding diagnostics. atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table fi # ATMAERO -if [[ $CPLCHM == .true. ]] && [[ $S2S = 'false' ]]; then - atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table +if [[ ${CPLCHM} == .true. ]] && [[ ${S2S} = 'false' ]]; then + atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template}" > diag_table +fi + +if [[ ${DATM_CDEPS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in.IN}" > datm_in + atparse < "${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN}" > datm.streams +fi + +if [[ ${DOCN_CDEPS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in.IN}" > docn_in + atparse < "${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN}" > docn.streams fi -if [[ $DATM_CDEPS = 'true' ]]; then - atparse < ${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in} > datm_in - atparse < ${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN} > datm.streams +if [[ ${DICE_CDEPS} = 'true' ]]; then + atparse < "${PATHRT}/parm/${DICE_IN_CONFIGURE:-dice_in.IN}" > dice_in + atparse < "${PATHRT}/parm/${DICE_STREAM_CONFIGURE:-dice.streams.IN}" > dice.streams fi -if [[ $DOCN_CDEPS = 'true' ]]; then - atparse < ${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in} > docn_in - atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams +if [[ ${CICE_PRESCRIBED} = 'true' ]]; then + atparse < "${PATHRT}"/parm/ice_in.IN > ice_in +fi + +if [[ ${CDEPS_INLINE} = 'true' ]]; then + atparse < "${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN}" > stream.config fi TPN=$(( TPN / THRD )) @@ -282,75 +338,85 @@ if (( NODES * TPN < TASKS )); then fi export NODES +UFS_TASKS=${TASKS} TASKS=$(( NODES * TPN )) export TASKS -if [[ $SCHEDULER = 'pbs' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_qsub.IN_${MACHINE_ID} > job_card +PPN=$(( UFS_TASKS / NODES )) +if (( UFS_TASKS - ( PPN * NODES ) > 0 )); then + PPN=$((PPN + 1)) +fi +export PPN +export UFS_TASKS + +if [[ ${SCHEDULER} = 'pbs' ]]; then + if [[ -e ${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/fv3_qsub.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'slurm' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_slurm.IN_${MACHINE_ID} > job_card +elif [[ ${SCHEDULER} = 'slurm' ]]; then + if [[ -e ${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID} ]]; then + atparse < "${PATHRT}/fv3_conf/fv3_slurm.IN_${MACHINE_ID}" > job_card else echo "Looking for fv3_conf/fv3_slurm.IN_${MACHINE_ID} but it is not found. Exiting" exit 1 fi -elif [[ $SCHEDULER = 'lsf' ]]; then - if [[ -e $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} ]]; then - atparse < $PATHRT/fv3_conf/fv3_bsub.IN_${MACHINE_ID} > job_card - else - echo "Looking for fv3_conf/fv3_bsub.IN_${MACHINE_ID} but it is not found. Exiting" - exit 1 - fi +fi + +# This "if" block is part of the rt.sh self-tests in error-test.conf. +# It emulates run_test.sh not being able to populate the work directory. +if [[ "${JOB_SHOULD_FAIL:-NO}" == WHEN_COPYING ]] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false fi ################################################################################ # Submit test job ################################################################################ export OMP_ENV=${OMP_ENV:-""} -if [[ $SCHEDULER = 'none' ]]; then - +if [[ ${SCHEDULER} = 'none' ]]; then ulimit -s unlimited - if [[ $CI_TEST = 'true' ]]; then - eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + if [[ ${CI_TEST} = 'true' ]]; then + eval "${OMP_ENV}" redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe else - mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe fi else - if [[ $ROCOTO = 'false' ]]; then + if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi fi - -if [[ $skip_check_results = false ]]; then - check_results +skip_check_results=${skip_check_results:-false} +results_okay=YES +if [[ ${skip_check_results} = false ]]; then + if ( ! check_results ) ; then + results_okay=NO + fi else - echo >> ${RT_LOG} - grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG} - grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG} - echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} RUN_SUCCESS" >> ${RT_LOG} - echo;echo;echo >> ${RT_LOG} + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + echo "Test ${TEST_ID} RUN_SUCCESS" + echo;echo;echo + } >> "${RT_LOG}" fi -if [[ $SCHEDULER != 'none' ]]; then - cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +if [[ ${SCHEDULER} != 'none' ]]; then + cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ $ROCOTO = true ]]; then +if [[ ${results_okay} == YES ]]; then remove_fail_test fi @@ -358,24 +424,27 @@ fi # End test ################################################################################ -echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +date_s=$( date +%s ) +echo " ${date_s}, ${NODES}" >> "${LOG_DIR}/${JBNME}_timestamp.txt" ################################################################################ # Remove RUN_DIRs if they are no longer needed by other tests ################################################################################ +delete_rundir=${delete_rundir:-false} if [[ ${delete_rundir} = true ]]; then keep_run_dir=false while read -r line; do - keep_test=$(echo $line| sed -e 's/^ *//' -e 's/ *$//') - if [[ $TEST_NAME == ${keep_test} ]]; then + keep_test=$(echo "${line}" | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${TEST_NAME} == "${keep_test}" ]]; then keep_run_dir=true fi - done < ${PATHRT}/keep_tests.tmp + done < "${PATHRT}/keep_tests.tmp" if [[ ${keep_run_dir} == false ]]; then - rm -rf ${RUNDIR} + rm -rf "${RUNDIR}" fi fi -elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}_${RT_COMPILER}" +elapsed=${SECONDS} +echo "run_test.sh: Test ${TEST_ID} Completed." +echo "run_test.sh: Test ${TEST_ID} Elapsed time ${elapsed} seconds." diff --git a/tests/test_changes.list b/tests/test_changes.list new file mode 100644 index 0000000000..c413127f2a --- /dev/null +++ b/tests/test_changes.list @@ -0,0 +1,77 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_control_sfs intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +control_p8_atmlnd_debug intel +atmwav_control_noaero_p8 intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_diag_debug gnu +control_debug_p8 gnu +control_wam_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu + diff --git a/tests/tests/atm_ds2s_docn_dice b/tests/tests/atm_ds2s_docn_dice new file mode 100644 index 0000000000..79d81894cf --- /dev/null +++ b/tests/tests/atm_ds2s_docn_dice @@ -0,0 +1,121 @@ +# +# atm_ds2s_docn_dice P8 test +# + +export TEST_DESCR="AMIP+ FV3-CCPP-CDEPS_DOCN-CDEPS_DICE system" + +export CNTL_DIR=atm_ds2s_docn_dice + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +export_fv3 +export_cpl + +#Component settings +export CPLCHM=.false. +export DNATS=0 +export CPLWAV=.false. +export CPLWAV2ATM=.false. + +export FV3=true +export S2S=false +export AQM=false +export DOCN_CDEPS=true +export DICE_CDEPS=true +export CDEPS_INLINE=false +export ocn_model=docn +export ice_model=dice + +#task layout +export INPES=$INPES_cpl_dflt +export JNPES=$JNPES_cpl_dflt +export atm_omp_num_threads=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt + +export WAV_tasks=0 + +#CDEPS settings +export ocn_datamode=cplhist +export DOCN_IN_CONFIGURE=global_docn_in.IN +export DOCN_STREAM_CONFIGURE=global_docn.streams.IN +export ice_datamode=cplhist +export DICE_IN_CONFIGURE=global_dice_in.IN +export DICE_STREAM_CONFIGURE=global_dice.streams.IN +export OCNRES=100 +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export ocn_nx_global=360 +export ocn_ny_global=320 +export ice_nx_global=360 +export ice_ny_global=320 +export stream_files_docn=INPUT/ufs.cpld.cpl.hi.ocn.nc +export stream_files_dice=INPUT/ufs.cpld.cpl.hi.ice.nc +export STREAM_OFFSET=0 + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export DIAG_TABLE=diag_table_gfsv16 +export FIELD_TABLE=field_table_thompson_noaero_tke +export INPUT_NML=global_control.nml.IN +export MODEL_CONFIGURE=model_configure.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export FV3_RUN="cpld_control_run.IN cpld_docn_dice.IN" diff --git a/tests/tests/atm_ds2s_docn_pcice b/tests/tests/atm_ds2s_docn_pcice new file mode 100644 index 0000000000..fef8e3cdf3 --- /dev/null +++ b/tests/tests/atm_ds2s_docn_pcice @@ -0,0 +1,128 @@ +# +# atm_ds2s_docn_pcice P8 test +# + +export TEST_DESCR="AMIP+ FV3-CCPP-CDEPS_DOCN-CICE_icePrescribed system" + +export CNTL_DIR=atm_ds2s_docn_pcice + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +export_fv3 +export_cpl + +#Component settings +export CPLCHM=.false. +export DNATS=0 +export CPLWAV=.false. +export CPLWAV2ATM=.false. + +export FV3=true +export S2S=false +export AQM=false +export DOCN_CDEPS=true +export DICE_CDEPS=false +export CDEPS_INLINE=false +export ocn_model=docn +export ice_model=cice6 + +#task layout +export INPES=$INPES_cpl_dflt +export JNPES=$JNPES_cpl_dflt +export atm_omp_num_threads=$THRD_cpl_dflt +export WRTTASK_PER_GROUP=$WPG_cpl_dflt + +export WAV_tasks=0 + +#CDEPS docn settings +export ocn_datamode=sstdata +#export MESH_OCN=TX025_210327_ESMFmesh_py.nc +#export ocn_data="INPUT/oisst-avhrr-v02r01.202103.nc" +export MESH_OCN=e5.oper.an.mesh.nc +export ocn_data="INPUT/sst_siconc_skt.era5.20210321_20210331.nc" +export ocn_data_var=sst +export ocn_nx_global=1440 +export ocn_ny_global=721 +export DOCN_IN_CONFIGURE=docn_in.IN +export DOCN_STREAM_CONFIGURE=hafs_docn.streams.IN +export STREAM_OFFSET=0 + +#CICE ice prescribed settings - default res +#export OCNRES=100 +#export ICERES=1.00 +#export NX_GLB=360 +#export NY_GLB=320 +export CICE_RUNTYPE=initial +export CICE_ICE_IC=none +export CICE_PRESCRIBED=true +export stream_files_dice=$ocn_data +export MESH_DICE=$MESH_OCN +export eps_imesh=4.0e-1 + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 +export DIAG_TABLE=diag_table_gfsv16 +export FIELD_TABLE=field_table_thompson_noaero_tke +export INPUT_NML=global_control.nml.IN +export MODEL_CONFIGURE=model_configure.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export FV3_RUN="cpld_control_run.IN cpld_docn_pcice.IN" diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 9d7461e491..6d4012d580 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' @@ -79,7 +80,6 @@ export WRTTASK_PER_GROUP=${WPG_atmaero} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -88,19 +88,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -108,7 +105,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -121,7 +118,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -135,7 +132,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -163,8 +159,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone) export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -172,9 +170,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -183,7 +180,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index d38839770a..4eac5a3303 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -65,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' @@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -83,19 +83,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=2011 export NSTF_NAME=2,0,0,0,0 @@ -103,7 +100,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.true. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -116,7 +113,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -130,7 +127,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -158,8 +154,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -167,9 +165,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -178,7 +175,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index 0f14c4ce11..1c4bbe4478 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -51,6 +51,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -65,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.atmaero.IN +export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN export atm_model='fv3' export chm_model='gocart' @@ -74,7 +75,6 @@ export coupling_interval_sec=${DT_ATMOS} # default resources export DOMAINS_STACK_SIZE=8000000 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -83,19 +83,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.false. export LTAEROSOL=.false. export MRAEROSOL=.true. @@ -105,7 +102,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.true. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -118,7 +115,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -132,7 +129,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -161,7 +157,7 @@ export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -170,8 +166,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_aero_tke_GOCART export DIAG_TABLE=diag_table_p8_gocart_micro -# use same namelist for standalone,coupled P7 -export INPUT_NML=merra2_thompson.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -179,6 +174,3 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 index 47fe177cdd..19a8523c93 100644 --- a/tests/tests/atmwav_control_noaero_p8 +++ b/tests/tests/atmwav_control_noaero_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ ufs.atmw.ww3.r.2021-03-22-64800" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -77,15 +78,19 @@ export med_model=cmeps export atm_model=fv3 export wav_model=ww3 -export ATMTILESIZE=`expr $NPX - 1` +export WW3_MULTIGRID=false +export WW3_MODDEF=mod_def.glo_1deg export MESH_WAV=mesh.glo_1deg.nc -# nems.configure +# ufs.configure export coupling_interval_sec=${DT_ATMOS} -export NEMS_CONFIGURE="nems.configure.atmw.IN" +export UFS_CONFIGURE=ufs.configure.atmw.IN +export CPLMODE=ufs.frac +export RUNTYPE=startup +export CMEPS_RESTART_DIR=./RESTART/ +export cap_dbug_flag=0 export pio_rearranger=box -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -95,26 +100,23 @@ export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -127,7 +129,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -141,7 +143,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -167,13 +168,7 @@ export DNATS=0 export DZ_MIN=6 #atm-wav coupling -export MULTIGRID=false export RESTART_N=${FHMAX} -#TODO: what should cplmode be? -export CPLMODE=nems_frac -export cap_dbug_flag=0 -export RUNTYPE=startup - export CPL=.true. export CPLWAV=.true. export CPLWAV2ATM=.true. @@ -181,8 +176,10 @@ export CPLWAV2ATM=.true. #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -191,9 +188,8 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -201,6 +197,3 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 9ec4cac291..00dfea7e15 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export JNPES=$JNPES_thrd export atm_omp_num_threads=2 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,7 +119,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'C96.snowfree_albedo.tileX.nc'" export FNALBC2="'C96.facsf.tileX.nc'" @@ -150,8 +146,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -159,11 +157,10 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_CubedSphereGrid b/tests/tests/control_CubedSphereGrid index 9940a26bd2..772432a196 100644 --- a/tests/tests/control_CubedSphereGrid +++ b/tests/tests/control_CubedSphereGrid @@ -33,6 +33,7 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -49,6 +50,5 @@ export IOVR=3 export WRITE_DOPOST=.false. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN -export MODEL_CONFIGURE=model_configure_fhout.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_debug b/tests/tests/control_CubedSphereGrid_debug index 531b75d1d1..93681bb8a2 100644 --- a/tests/tests/control_CubedSphereGrid_debug +++ b/tests/tests/control_CubedSphereGrid_debug @@ -34,6 +34,7 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf001.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -49,5 +50,5 @@ export IOVR=3 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index f353280a02..45963ad8f5 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -11,8 +11,18 @@ export CNTL_DIR=control_CubedSphereGrid_parallel export LIST_FILES="sfcf000.nc \ sfcf024.nc \ atmf000.nc \ - atmf024.nc" + atmf024.nc \ + cubed_sphere_grid_sfcf000.nc \ + cubed_sphere_grid_sfcf024.nc \ + cubed_sphere_grid_atmf000.nc \ + cubed_sphere_grid_atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24" + export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -21,15 +31,15 @@ export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=0 -export OUTPUT_GRID='cubed_sphere_grid' +export OUTPUT_GRID='gaussian_grid' export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export NSTF_NAME='2,0,0,0,0' export IAER=5111 export IOVR=3 -export WRITE_DOPOST=.false. +export HISTORY_FILE_ON_NATIVE_GRID=.true. +export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN -export MODEL_CONFIGURE=model_configure_fhout.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav deleted file mode 100644 index 96636a01db..0000000000 --- a/tests/tests/control_atmwav +++ /dev/null @@ -1,90 +0,0 @@ -############################################################################### -# -# Global control with 2way atm-wav coupling test -# -############################################################################### - -export TEST_DESCR="Compare global control with 2way atm-wav coupling results with previous trunk version" - -export CNTL_DIR=control_atmwav - -export LIST_FILES="sfcf000.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc \ - 20210322.180000.restart.glo_1deg" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 - -export FHMAX=12 -#wave -export WW3RSTDTHR=3 -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" - -export INPES=$INPES_cpl_atmw -export JNPES=$JNPES_cpl_atmw -export atm_omp_num_threads=$THRD_cpl_atmw -export WRTTASK_PER_GROUP=$WPG_cpl_atmw - -export WAV_tasks=$WAV_tasks_cpl_atmw - -export CPL=.true. -export CPLWAV=.true. -export CPLWAV2ATM=.true. -export atm_model='fv3' -export wav_model='ww3' -export coupling_interval_sec=600 -export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" -export MODDEF_WAV=mod_def.glo_1deg - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_c192 b/tests/tests/control_c192 index 16af34ee94..9ca7c3ace7 100644 --- a/tests/tests/control_c192 +++ b/tests/tests/control_c192 @@ -17,7 +17,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" +export ATMRES=C192 + export_fv3 +export_tiled export INPES=4 export WRTTASK_PER_GROUP=12 export NPZ=127 @@ -39,11 +42,6 @@ export IOVR=3 export IMO=768 export JMO=384 -export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," -export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," - export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 09c15652be..ed42237a87 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -17,12 +17,15 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" +export ATMRES=C384 + export_fv3 +export_tiled export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=48 +export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP_c384:-48} export FHMAX=12 export NPZ=127 export NPZP=128 @@ -44,15 +47,10 @@ export IMO=1536 export JMO=768 export OUTPUT_FH="6 -1" -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN -if [[ $MACHINE_ID = gaea || $MACHINE_ID = cheyenne || $MACHINE_ID = jet ]]; then +if [[ $MACHINE_ID = jet ]]; then TPN=18 fi diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index 11a3ec2838..77ff247551 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -49,12 +49,12 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.060000.sfc_data.tile5.nc \ RESTART/20210322.060000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 export atm_omp_num_threads=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=48 +export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP_c384gdas:-48} export FHMAX=12 export NPZ=127 export NPZP=128 @@ -68,7 +68,6 @@ export SDAY=21 export SHOUR=18 export FHROT=3 export OUTPUT_FH="3 -1" -export NFHMAX_HF=0 export IAU_OFFSET=6 export CDMBWD=${CDMBWD_c384} export OUTPUT_GRID='gaussian_grid' @@ -95,6 +94,6 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control_gdas.nml.IN -if [[ $MACHINE_ID = gaea || $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = jet ]] ; then + TPN=20 fi diff --git a/tests/tests/control_c384gdas_debug b/tests/tests/control_c384gdas_debug index 06aae996e4..fc5dd2d7e5 100644 --- a/tests/tests/control_c384gdas_debug +++ b/tests/tests/control_c384gdas_debug @@ -65,7 +65,6 @@ export SDAY=21 export SHOUR=18 export FHROT=3 export OUTPUT_FH="0 1" -export NFHMAX_HF=7 export IAU_OFFSET=6 export CDMBWD=${CDMBWD_c384} export OUTPUT_GRID='gaussian_grid' diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav deleted file mode 100644 index 08b3165bfd..0000000000 --- a/tests/tests/control_c384gdas_wav +++ /dev/null @@ -1,127 +0,0 @@ -############################################################################### -# -# Global control test: GFSv16 gdas ensemble forecast case -# -############################################################################### - -export TEST_DESCR="Compare global c384gdas_wave results with previous trunk version" - -export CNTL_DIR=control_c384gdas_wav - -export LIST_FILES="sfcf000.nc \ - sfcf003.nc \ - atmf000.nc \ - atmf003.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF03 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF03 \ - RESTART/20210322.030000.coupler.res \ - RESTART/20210322.030000.fv_core.res.nc \ - RESTART/20210322.030000.fv_core.res.tile1.nc \ - RESTART/20210322.030000.fv_core.res.tile2.nc \ - RESTART/20210322.030000.fv_core.res.tile3.nc \ - RESTART/20210322.030000.fv_core.res.tile4.nc \ - RESTART/20210322.030000.fv_core.res.tile5.nc \ - RESTART/20210322.030000.fv_core.res.tile6.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.030000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.030000.fv_tracer.res.tile1.nc \ - RESTART/20210322.030000.fv_tracer.res.tile2.nc \ - RESTART/20210322.030000.fv_tracer.res.tile3.nc \ - RESTART/20210322.030000.fv_tracer.res.tile4.nc \ - RESTART/20210322.030000.fv_tracer.res.tile5.nc \ - RESTART/20210322.030000.fv_tracer.res.tile6.nc \ - RESTART/20210322.030000.phy_data.tile1.nc \ - RESTART/20210322.030000.phy_data.tile2.nc \ - RESTART/20210322.030000.phy_data.tile3.nc \ - RESTART/20210322.030000.phy_data.tile4.nc \ - RESTART/20210322.030000.phy_data.tile5.nc \ - RESTART/20210322.030000.phy_data.tile6.nc \ - RESTART/20210322.030000.sfc_data.tile1.nc \ - RESTART/20210322.030000.sfc_data.tile2.nc \ - RESTART/20210322.030000.sfc_data.tile3.nc \ - RESTART/20210322.030000.sfc_data.tile4.nc \ - RESTART/20210322.030000.sfc_data.tile5.nc \ - RESTART/20210322.030000.sfc_data.tile6.nc \ - 20210322.030000.restart.aoc_9km \ - 20210322.030000.restart.gnh_10m \ - 20210322.030000.restart.gsh_15m" - -export_fv3 - -export FHMAX=9 -export NPZ=127 -export NPZP=128 -export NPX=385 -export NPY=385 -export DT_ATMOS=225 - -export INPES=$INPES_cpl_atmw_gdas -export JNPES=$JNPES_cpl_atmw_gdas -export atm_omp_num_threads=$THRD_cpl_atmw_gdas -export WRTTASK_PER_GROUP=$WPG_cpl_atmw_gdas - -WAV_tasks=${WAV_tasks_atmw_gdas} - -export SYEAR=2021 -export SMONTH=03 -export SDAY=21 -export SHOUR=18 -export FHROT=3 -export OUTPUT_FH="3 -1" -export NFHMAX_HF=0 -export IAU_OFFSET=6 -export CDMBWD=${CDMBWD_c384} -export OUTPUT_GRID='gaussian_grid' -export WRITE_DOPOST=.true. -export IMO=1536 -export JMO=768 - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 -export IAU_INC_FILES="'fv_increment3.nc','fv_increment6.nc','fv_increment9.nc'" -export MODEL_INITIALIZATION=true - -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export CPL=.true. -export CPLWAV=.true. -export NEMS_CONFIGURE="nems.configure.leapfrog_atm_wav.IN" -export atm_model='fv3' -export wav_model='ww3' -export WW3OUTPUTTYPE=' 1' -export coupling_interval_sec=1800.0 #coupling time step, want it to be multiple of 1800 and FV3 time step -#wave -export WW3RSTDTHR=9 -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export NFGRIDS=1 -export NMGRIDS=3 -export CPLILINE="'glo_15mxt' F F T F F F F F F" -export WW3GRIDLINE="'gnh_10m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 1 10 0.00 1.00 F -'gsh_15m' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 2 20 0.00 1.00 F -'aoc_9km' 'no' 'no' 'CPL:glo_15mxt' 'no' 'no' 'no' 'no' 'no' 'no' 3 30 0.00 1.00 F" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export MODEL_INITIALIZATION=true -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control_gdas.nml.IN diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index ab76dd503b..9ffa2ce490 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export INPES=1 export JNPES=1 @@ -70,14 +71,11 @@ export IOVR=3 export IMO=192 export JMO=94 -export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," -export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," -export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," -export FNMSKH_control="'global_slmask.t62.192.94.grb'," - +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_c48.v2.sfc b/tests/tests/control_c48.v2.sfc new file mode 100644 index 0000000000..e2b16a3c25 --- /dev/null +++ b/tests/tests/control_c48.v2.sfc @@ -0,0 +1,84 @@ +############################################################################### +# +# global control v2 surface file test: GFSv16 atmosphere only at C48L127 +# +############################################################################### + +export TEST_DESCR="Compare global control C48L127 v2.sfc results with previous trunk version" + +export CNTL_DIR=control_c48.v2.sfc + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3_v16 + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," +export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," +export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," +export FNMSKH_control="'global_slmask.t62.192.94.grb'," + + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=control.nml.IN +export V2_SFC_FILE=true diff --git a/tests/tests/control_c768 b/tests/tests/control_c768 index 69a760e955..7794c7dfed 100644 --- a/tests/tests/control_c768 +++ b/tests/tests/control_c768 @@ -17,8 +17,10 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF03" -export_fv3 +export ATMRES=C768 +export_fv3 +export_tiled export INPES=${INPES_c768} export JNPES=${JNPES_c768} export atm_omp_num_threads=${THRD_c768} @@ -45,7 +47,7 @@ export IOVR=3 export IMO=3072 export JMO=1536 export IDEFLATE=1 -export NBITS=14 +export QUANTIZE_NSD=14 export ICHUNK3D=${IMO} export JCHUNK3D=${JMO} export KCHUNK3D=1 diff --git a/tests/tests/control_csawmg b/tests/tests/control_csawmg index a5428a2653..af42aac9f6 100644 --- a/tests/tests/control_csawmg +++ b/tests/tests/control_csawmg @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export SYEAR=2021 diff --git a/tests/tests/control_csawmg_debug b/tests/tests/control_csawmg_debug index f2379211d2..26ece68145 100644 --- a/tests/tests/control_csawmg_debug +++ b/tests/tests/control_csawmg_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export SYEAR=2021 diff --git a/tests/tests/control_csawmgt b/tests/tests/control_csawmgt deleted file mode 100644 index 9ee2f25e90..0000000000 --- a/tests/tests/control_csawmgt +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################### -# -# Global control csawmgt test -# -############################################################################### - -export TEST_DESCR="Compare global control csawmgt results with previous trunk version" - -export CNTL_DIR=control_csawmgt - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24" - -export_fv3 -export NPZ=127 -export NPZP=128 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL=0 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. - -export DT_ATMOS=450 -export IAER=111 -export DIAG_TABLE='diag_table_aod' -export FIELD_TABLE='field_table_csawmgshoc' -export USE_MERRA2=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_csawmg -export INPUT_NML=control_csawmg.nml.IN diff --git a/tests/tests/control_csawmgt_debug b/tests/tests/control_csawmgt_debug deleted file mode 100644 index a1f867e000..0000000000 --- a/tests/tests/control_csawmgt_debug +++ /dev/null @@ -1,36 +0,0 @@ -############################################################################### -# -# Global control csawmgt debug test -# -############################################################################### - -export TEST_DESCR="Compare global control csawmgt debug results with previous trunk version" - -export CNTL_DIR=control_csawmgt_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=01 -export OUTPUT_FH="0 1" - -export DT_ATMOS=450 -export IAER=111 -export DIAG_TABLE='diag_table_aod' -export FIELD_TABLE='field_table_csawmgshoc' -export USE_MERRA2=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_csawmg -export INPUT_NML=control_csawmg.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 2c937ffef8..c5f823c4b2 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -25,9 +26,7 @@ export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export FHMAX=1 export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -36,19 +35,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -56,7 +52,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -69,7 +65,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -83,25 +79,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -111,8 +88,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -120,11 +99,10 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. @@ -132,6 +110,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index a220fb34a9..e9f22a92c0 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -50,6 +50,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export OUTPUT_FH='0 21 24' export INPES=6 export JNPES=4 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,22 +119,7 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." export FSICL=0 export FSICS=0 @@ -150,8 +132,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -159,18 +143,13 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_diag_debug b/tests/tests/control_diag_debug index 7d2004bece..13fe68ce35 100644 --- a/tests/tests/control_diag_debug +++ b/tests/tests/control_diag_debug @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -29,8 +30,8 @@ export FHMAX=1 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN export FHZERO=1 export LDIAG3D=.true. diff --git a/tests/tests/control_flake b/tests/tests/control_flake index 7a732aa695..0cba0cedf1 100644 --- a/tests/tests/control_flake +++ b/tests/tests/control_flake @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -33,6 +33,7 @@ export RESTART_INTERVAL=6 export LKM=1 export IOPT_LAKE=1 +export FRAC_ICE=.false. export DO_SPPT=.true. export DO_SHUM=.true. diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug index b5403e8c85..f23f4207a0 100644 --- a/tests/tests/control_flake_debug +++ b/tests/tests/control_flake_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -23,13 +23,14 @@ export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.true. export IAER=5111 export FHMAX=1 export OUTPUT_FH="0 1" export LKM=1 export IOPT_LAKE=1 +export FRAC_ICE=.false. export DO_SPPT=.true. export DO_SHUM=.true. diff --git a/tests/tests/control_iovr4 b/tests/tests/control_iovr4 index 123579d3b7..4cd5b68e4a 100644 --- a/tests/tests/control_iovr4 +++ b/tests/tests/control_iovr4 @@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF21 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_iovr5 b/tests/tests/control_iovr5 index db10f3f451..7c288459a5 100644 --- a/tests/tests/control_iovr5 +++ b/tests/tests/control_iovr5 @@ -21,7 +21,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF21 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_latlon b/tests/tests/control_latlon index d72143dc24..a46b819168 100644 --- a/tests/tests/control_latlon +++ b/tests/tests/control_latlon @@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -36,5 +37,5 @@ export OUTPUT_FH='0 24' export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_lndp b/tests/tests/control_lndp index 51366f41ab..ab1ea0a8ca 100644 --- a/tests/tests/control_lndp +++ b/tests/tests/control_lndp @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_lndp_debug b/tests/tests/control_lndp_debug index b47630da54..609050f57b 100644 --- a/tests/tests/control_lndp_debug +++ b/tests/tests/control_lndp_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_qr_p8 b/tests/tests/control_noqr_p8 similarity index 82% rename from tests/tests/control_qr_p8 rename to tests/tests/control_noqr_p8 index 0168860ffc..dd3cd82113 100644 --- a/tests/tests/control_qr_p8 +++ b/tests/tests/control_noqr_p8 @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -62,13 +63,12 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export QUILTING_RESTART=.true. +export QUILTING_RESTART=.false. export RESTART_INTERVAL="12 -1" export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -77,19 +77,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -97,7 +94,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -110,7 +107,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -124,25 +121,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -152,8 +130,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -161,9 +141,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -172,7 +151,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 5faa830689..d2f7de2060 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -9,6 +9,12 @@ export TEST_DESCR="Compare global control results with previous trunk version" export CNTL_DIR=control_p8 export LIST_FILES="sfcf000.nc \ + sfcf003.nc \ + sfcf006.nc \ + sfcf009.nc \ + sfcf012.nc \ + sfcf015.nc \ + sfcf018.nc \ sfcf021.nc \ sfcf024.nc \ atmf000.nc \ @@ -54,6 +60,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -65,9 +72,8 @@ export SHOUR=06 export RESTART_INTERVAL="12 -1" export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 03 06 09 12 15 18 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +82,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +99,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +112,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +126,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -151,8 +135,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -160,9 +146,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -172,6 +157,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc new file mode 100644 index 0000000000..d08987ae87 --- /dev/null +++ b/tests/tests/control_p8.v2.sfc @@ -0,0 +1,158 @@ +############################################################################### +# +# Global control v2 surface file test: GFSv16 atmosphere only at C96L127, +# P8 configuration. +# +############################################################################### + +export TEST_DESCR="Compare global control v2.sfc results with previous trunk version" + +export CNTL_DIR=control_p8.v2.sfc + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +export DDDMP=0.1 + +# Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +# Following not used for standalone +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. + +if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/control_p8_atmlnd b/tests/tests/control_p8_atmlnd new file mode 100644 index 0000000000..68b65d0e5b --- /dev/null +++ b/tests/tests/control_p8_atmlnd @@ -0,0 +1,249 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc + sfcf000.tile3.nc + sfcf000.tile4.nc + sfcf000.tile5.nc + sfcf000.tile6.nc + sfcf012.tile1.nc \ + sfcf012.tile2.nc \ + sfcf012.tile3.nc \ + sfcf012.tile4.nc \ + sfcf012.tile5.nc \ + sfcf012.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf012.tile1.nc \ + atmf012.tile2.nc \ + atmf012.tile3.nc \ + atmf012.tile4.nc \ + atmf012.tile5.nc \ + atmf012.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.ca_data.tile1.nc \ + RESTART/20210323.060000.ca_data.tile2.nc \ + RESTART/20210323.060000.ca_data.tile3.nc \ + RESTART/20210323.060000.ca_data.tile4.nc \ + RESTART/20210323.060000.ca_data.tile5.nc \ + RESTART/20210323.060000.ca_data.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export_fv3 +export_tiled +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='cubed_sphere_grid' +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 21 24' + +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +export DDDMP=0.1 + +# Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +export TILEDFIX=.true. +export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'INPUT/C96.facsf.tileX.nc'" +export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" +export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" +export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" +export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" +export FNSMCC_control="'global_soilmgldas.statsgo.t1534.3072.1536.grb'" +export FNMSKH_control="'global_slmask.t1534.3072.1536.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" +export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +# Following not used for standalone +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN="control_run.IN noahmp_run.IN" +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. + +export CPLLND=.true. +export CPLLND2ATM=.true. + +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN +export med_model=cmeps +export atm_model=fv3 +export lnd_model=noahmp +export pio_rearranger=box +export CPLMODE=ufs.frac +export RUNTYPE=startup +export READRESTART=.false. +export CMEPS_RESTART_DIR=./RESTART/ +export cap_dbug_flag=0 +export ATM_tasks=144 +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +export OUTPUT_FH="1 -1" +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" +fi +export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_p8_atmlnd_debug b/tests/tests/control_p8_atmlnd_debug new file mode 100644 index 0000000000..1f5d4eb2d7 --- /dev/null +++ b/tests/tests/control_p8_atmlnd_debug @@ -0,0 +1,84 @@ +############################################################################### +# +# Global control debug test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +source tests/control_p8_atmlnd + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd_debug + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc \ + sfcf000.tile3.nc \ + sfcf000.tile4.nc \ + sfcf000.tile5.nc \ + sfcf000.tile6.nc \ + sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.ca_data.tile1.nc \ + RESTART/20210322.090000.ca_data.tile2.nc \ + RESTART/20210322.090000.ca_data.tile3.nc \ + RESTART/20210322.090000.ca_data.tile4.nc \ + RESTART/20210322.090000.ca_data.tile5.nc \ + RESTART/20210322.090000.ca_data.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-32400.tile6.nc" + +export RESTART_INTERVAL="3 -1" +export OUTPUT_FH='0 3' +export FHMAX=3 diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 2bef5c6177..56a3a888f8 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -14,12 +14,12 @@ export LIST_FILES="sfcf000.tile1.nc \ sfcf000.tile4.nc sfcf000.tile5.nc sfcf000.tile6.nc - sfcf021.tile1.nc \ - sfcf021.tile2.nc \ - sfcf021.tile3.nc \ - sfcf021.tile4.nc \ - sfcf021.tile5.nc \ - sfcf021.tile6.nc \ + sfcf012.tile1.nc \ + sfcf012.tile2.nc \ + sfcf012.tile3.nc \ + sfcf012.tile4.nc \ + sfcf012.tile5.nc \ + sfcf012.tile6.nc \ sfcf024.tile1.nc \ sfcf024.tile2.nc \ sfcf024.tile3.nc \ @@ -32,18 +32,24 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf000.tile4.nc \ atmf000.tile5.nc \ atmf000.tile6.nc \ - atmf021.tile1.nc \ - atmf021.tile2.nc \ - atmf021.tile3.nc \ - atmf021.tile4.nc \ - atmf021.tile5.nc \ - atmf021.tile6.nc \ + atmf012.tile1.nc \ + atmf012.tile2.nc \ + atmf012.tile3.nc \ + atmf012.tile4.nc \ + atmf012.tile5.nc \ + atmf012.tile6.nc \ atmf024.tile1.nc \ atmf024.tile2.nc \ atmf024.tile3.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ + RESTART/20210323.060000.ca_data.tile1.nc \ + RESTART/20210323.060000.ca_data.tile2.nc \ + RESTART/20210323.060000.ca_data.tile3.nc \ + RESTART/20210323.060000.ca_data.tile4.nc \ + RESTART/20210323.060000.ca_data.tile5.nc \ + RESTART/20210323.060000.ca_data.tile6.nc \ RESTART/20210323.060000.coupler.res \ RESTART/20210323.060000.fv_core.res.nc \ RESTART/20210323.060000.fv_core.res.tile1.nc \ @@ -76,14 +82,12 @@ export LIST_FILES="sfcf000.tile1.nc \ RESTART/20210323.060000.sfc_data.tile4.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc \ - ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc \ - ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc \ - ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-64800.tile6.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ @@ -92,6 +96,7 @@ export LIST_FILES="sfcf000.tile1.nc \ ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -105,7 +110,6 @@ export OUTPUT_GRID='cubed_sphere_grid' export WRITE_DOPOST=.false. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -114,19 +118,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -134,7 +135,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -147,7 +148,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -161,7 +162,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings export TILEDFIX=.true. export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" export FNALBC2="'INPUT/C96.facsf.tileX.nc'" @@ -189,18 +189,20 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. -export FV3_RUN=control_run.IN +export FV3_RUN="control_run.IN noahmp_run.IN" export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true # RRTMGP export DO_RRTMGP=.false. @@ -210,31 +212,36 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi - export CPLLND=.true. +export CPLLND2ATM=.false. -export NEMS_CONFIGURE=nems.configure.atm_lnd.IN +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN export med_model=cmeps export atm_model=fv3 export lnd_model=noahmp export pio_rearranger=box -export CPLMODE=nems_frac +export CPLMODE=ufs.frac export RUNTYPE=startup export READRESTART=.false. +export CMEPS_RESTART_DIR=./RESTART/ +export cap_dbug_flag=0 export ATM_tasks=144 -export OCN_tasks=0 -export ICE_tasks=0 export LND_tasks=144 export lnd_ic_type=sfc export CALC_SNET=.false. export layout_x=3 export layout_y=8 -export mosaic_file="INPUT/grid_spec.nc" +export LNDRES=C96 export coupling_interval_sec=720 -export TOPOEDITS="" -# need for getting some files from coupled RT to fix land-sea mask inconsistency -# can be removed after fixing files for control_p8 -export OCNRES=100 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +export OUTPUT_FH="1 -1" +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" +fi +export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster index 67e24438df..fd02cbf4e0 100644 --- a/tests/tests/control_p8_faster +++ b/tests/tests/control_p8_faster @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -151,8 +129,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -160,9 +140,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -171,7 +150,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index 1f5d327dca..4f5742b448 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -26,6 +26,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF48" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -40,7 +41,6 @@ export WRITE_DOPOST=.true. export FHMAX=48 export OUTPUT_FH='0 21 24 48' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -49,19 +49,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -69,7 +66,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -82,7 +79,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -96,25 +93,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -124,8 +102,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -133,9 +113,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN export LNDP_TYPE=2 export N_VAR_LNDP=1 export LNDP_VAR_LIST="'vgf'," @@ -149,7 +128,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn index 08e480fc13..593b283f63 100644 --- a/tests/tests/control_p8_mynn +++ b/tests/tests/control_p8_mynn @@ -53,7 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 +export_fv3_v16 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -151,8 +129,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -160,9 +140,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_mynn export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. @@ -174,6 +153,23 @@ export IMFSHALCNV=-1 export SHAL_CNV=.false. export DO_MYNNEDMF=.true. -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IOVR=3 +export ICLIQ_SW=2 diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index bfde5cefb6..01daa2ee7a 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -151,8 +129,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -160,9 +140,8 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.true. @@ -171,7 +150,3 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/control_p8_ugwpv1 b/tests/tests/control_p8_ugwpv1 new file mode 100644 index 0000000000..a62a9c1049 --- /dev/null +++ b/tests/tests/control_p8_ugwpv1 @@ -0,0 +1,156 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# with UGWPv1, i.e., GSL orographic drag + version 1 non-stationary GWD +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_ugwpv1 + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +export DDDMP=0.1 + +# Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +# CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +# Follwoing not used for standalone +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. diff --git a/tests/tests/control_ras b/tests/tests/control_ras index f762518af9..2d730bb52e 100644 --- a/tests/tests/control_ras +++ b/tests/tests/control_ras @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_ras_debug b/tests/tests/control_ras_debug index d34b86b816..14b248269f 100644 --- a/tests/tests/control_ras_debug +++ b/tests/tests/control_ras_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=720 diff --git a/tests/tests/control_restart_qr_p8 b/tests/tests/control_restart_noqr_p8 similarity index 82% rename from tests/tests/control_restart_qr_p8 rename to tests/tests/control_restart_noqr_p8 index 661c85a879..f3baca99f7 100644 --- a/tests/tests/control_restart_qr_p8 +++ b/tests/tests/control_restart_noqr_p8 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -56,7 +57,7 @@ export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. -export QUILTING_RESTART=.true. +export QUILTING_RESTART=.false. export FHROT=12 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" @@ -67,7 +68,6 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -96,7 +93,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -109,7 +106,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -123,25 +120,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -151,8 +129,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -160,11 +140,10 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index b806f6c3e7..50be1ec0dd 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -46,6 +46,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -66,7 +67,6 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -75,19 +75,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 @@ -95,7 +92,7 @@ export NSTF_NAME=2,0,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -108,7 +105,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -122,25 +119,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -150,8 +128,10 @@ export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -159,11 +139,10 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p8_template -# use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control.nml.IN +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN -# P8 RRTMGP +# RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_restart_p8_atmlnd b/tests/tests/control_restart_p8_atmlnd new file mode 100644 index 0000000000..a52c955dbe --- /dev/null +++ b/tests/tests/control_restart_p8_atmlnd @@ -0,0 +1,187 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export_fv3 +export_tiled +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='cubed_sphere_grid' +export WRITE_DOPOST=.false. +export FHROT=12 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+${SHOUR})*3600 )))" + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +export IOPT_SFC=3 +export IOPT_TRS=2 +export IOPT_DIAG=2 + +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +export DDDMP=0.1 + +# Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +export TILEDFIX=.true. +export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'INPUT/C96.facsf.tileX.nc'" +export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" +export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" +export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" +export FNSOCC="'INPUT/C96.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" +export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +# Following not used for standalone +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN="control_run.IN noahmp_run.IN" +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export V2_SFC_FILE=true + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. + +export CPLLND=.true. +export CPLLND2ATM=.true. + +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN +export med_model=cmeps +export atm_model=fv3 +export lnd_model=noahmp +export pio_rearranger=box +export CPLMODE=ufs.frac +export RUNTYPE=continue +export READRESTART=.true. +export CMEPS_RESTART_DIR=./RESTART/ +export cap_dbug_flag=0 +export ATM_tasks=144 +export LND_tasks=144 +export lnd_ic_type=sfc +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export coupling_interval_sec=720 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.2 +export OUTPUT_FH="1 -1" +if [[ "$ATMRES" = "$LNDRES" ]]; then + export lnd_input_dir="INPUT/" + export mosaic_file="INPUT/${LNDRES}_mosaic.nc" +else + export lnd_input_dir="INPUT/${LNDRES}/" + export mosaic_file="INPUT/${LNDRES}/${LNDRES}_mosaic.nc" +fi +export MOM6_TOPOEDITS="" diff --git a/tests/tests/control_stochy b/tests/tests/control_stochy index 1eefdaecff..2c1cbf1ddd 100644 --- a/tests/tests/control_stochy +++ b/tests/tests/control_stochy @@ -17,7 +17,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF12" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_stochy_debug b/tests/tests/control_stochy_debug index 0aafc10685..82f9866232 100644 --- a/tests/tests/control_stochy_debug +++ b/tests/tests/control_stochy_debug @@ -13,7 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_stochy_restart b/tests/tests/control_stochy_restart index 7f8d532776..77be313478 100644 --- a/tests/tests/control_stochy_restart +++ b/tests/tests/control_stochy_restart @@ -13,7 +13,7 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 " -export_fv3 +export_fv3_v16 export NPZ=127 export NPZP=128 export DT_ATMOS=600 diff --git a/tests/tests/control_wam b/tests/tests/control_wam index 06c9477d6b..5018e6208c 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -1,10 +1,10 @@ ############################################################################### # -# Global control multigases test +# Global control test FV3WAM atmosphere only at C96L149, P8 configuration # ############################################################################### -export TEST_DESCR="Compare global control multigases results with previous trunk version" +export TEST_DESCR="fv3 wam test" export CNTL_DIR=control_wam @@ -12,38 +12,100 @@ export LIST_FILES="sfcf024.nc \ atmf024.nc" export_fv3 +export_tiled export NPZ=149 export NPZP=150 -export DT_ATMOS="225" -export SYEAR="2021" -export SMONTH="03" -export SDAY="22" -export SHOUR="06" +export DT_ATMOS=180 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=3 +export SDAY=22 +export SHOUR=6 export FHMAX=24 - -export WARM_START=.true. +export OUTPUT_GRID='gaussian_grid' +export FHROT=0 +export OUTPUT_FH='24 -1' + +#WAM settings +export TAU=1.0 +export D2_BG_K1=0.0 +export D2_BG_K2=0.0 +export D4_BG=0.16 +export PSM_BC=1 +export DDDMP=0.0 export NA_INIT=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. +export NUDGE_QV=.false. +export Z_TRACER=.false. +export INLINE_Q=.false. +export FV_SG_ADJ=-1 +export VTDM4=0.0 +export DELT_MAX=1.0 +export DO_VORT_DAMP=.false. +export D_CON=0.0 export MAKE_NH=.false. -export MOUNTAIN=.true. -export FDIAG=3 -export NSTF_NAME=0,0,1,0,5 -export IAER=5111 +export TRANS_TRAC=.false. +export FHZERO=1.0 +export DNATS=0 + +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +#UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +#CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +#settings +export TILEDFIX=.true. +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export LHEATSTRG=.false. +export LSEASPRAY=.true. +export SATMEDMF=.true. export DO_SAT_ADJ=.false. +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +export USE_CICE_ALB=.false. export FV3_RUN=wam_run.IN -export CCPP_SUITE=FV3_GFS_v16_fv3wam -export INPUT_NML=wam.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_wam_noaer export DIAG_TABLE=diag_table_wam -export FIELD_TABLE=field_table_wam - -export QUILTING=.true. -export OUTPUT_GRID="gaussian_grid" -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export NFHOUT=6 -export NFHMAX=24 -export NFHOUT_HF=6 -export FHROT=18 + +export INPUT_NML=wam_v17.nml.IN + +if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index cd87450c7e..4c1852e2e0 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -1,52 +1,112 @@ ############################################################################### # -# Global control multigases debug test +# Global control debug test FV3WAM atmosphere only at C96L149, P8 configuration # ############################################################################### -export TEST_DESCR="Compare global control multigases debug results with previous trunk version" +export TEST_DESCR="fv3 wam debug test" export CNTL_DIR=control_wam_debug -export LIST_FILES="sfcf019.nc \ - atmf019.nc" +export LIST_FILES="sfcf002.nc \ + atmf002.nc" export_fv3 +export_tiled export NPZ=149 export NPZP=150 -export DT_ATMOS="225" -export SYEAR="2021" -export SMONTH="03" -export SDAY="22" -export SHOUR="06" +export DT_ATMOS=180 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=3 +export SDAY=22 +export SHOUR=6 +export FHMAX=2 +export OUTPUT_GRID='gaussian_grid' +export FHROT=0 +export OUTPUT_FH='1 -1' + +#WAM settings +export TAU=1.0 +export D2_BG_K1=0.0 +export D2_BG_K2=0.0 +export D4_BG=0.16 +export PSM_BC=1 +export DDDMP=0.0 -export FHMAX=19 -export OUTPUT_FH="0 19" -#export WRITE_DOPOST=.true. - -export WARM_START=.true. export NA_INIT=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. +export NUDGE_QV=.false. +export Z_TRACER=.false. +export INLINE_Q=.false. +export FV_SG_ADJ=-1 +export VTDM4=0.0 +export DELT_MAX=1.0 +export DO_VORT_DAMP=.false. +export D_CON=0.0 export MAKE_NH=.false. -export MOUNTAIN=.true. -export FDIAG=3 -export NSTF_NAME=0,0,1,0,5 -export IAER=5111 +export TRANS_TRAC=.false. +export FHZERO=1.0 +export DNATS=0 + +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +#UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +#CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +#settings +export TILEDFIX=.true. +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export LHEATSTRG=.false. +export LSEASPRAY=.true. +export SATMEDMF=.true. export DO_SAT_ADJ=.false. +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +export MOM6_RESTART_SETTING=n +export USE_CICE_ALB=.false. export FV3_RUN=wam_run.IN -export CCPP_SUITE=FV3_GFS_v16_fv3wam -export INPUT_NML=wam.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_wam_noaer export DIAG_TABLE=diag_table_wam -export FIELD_TABLE=field_table_wam - -export QUILTING=.true. -export OUTPUT_GRID="gaussian_grid" -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export NFHOUT=6 -export NFHMAX=24 -export NFHOUT_HF=6 -export FHROT=18 + +export INPUT_NML=wam_v17.nml.IN + +if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/control_wrtGauss_netcdf_parallel b/tests/tests/control_wrtGauss_netcdf_parallel index c7175cb2ba..d90184da4d 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel +++ b/tests/tests/control_wrtGauss_netcdf_parallel @@ -18,6 +18,7 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF24" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -32,8 +33,8 @@ export IAER=5111 export IOVR=3 export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export IDEFLATE=1 -export NBITS=14 +export QUANTIZE_NSD=14 export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/control_wrtGauss_netcdf_parallel_debug b/tests/tests/control_wrtGauss_netcdf_parallel_debug index fba6941ba3..2988ec0782 100644 --- a/tests/tests/control_wrtGauss_netcdf_parallel_debug +++ b/tests/tests/control_wrtGauss_netcdf_parallel_debug @@ -14,6 +14,7 @@ export LIST_FILES="sfcf000.nc \ atmf001.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=720 @@ -28,9 +29,9 @@ export IAER=5111 export IOVR=3 export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export IDEFLATE=1 -export NBITS=14 +export QUANTIZE_NSD=14 export OUTPUT_FH="0 1" export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/conus13km_2threads b/tests/tests/conus13km_2threads new file mode 100644 index 0000000000..9d8620c42a --- /dev/null +++ b/tests/tests/conus13km_2threads @@ -0,0 +1,27 @@ +############################################################################### +# +# HRRR physics on 13km domain, two threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, two threads" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export SMONTH=5 +export RESTART_INTERVAL=1 +export FHMAX=1 +export atm_omp_num_threads=2 +export INPES=12 +export JNPES=12 +export WRTTASK_PER_GROUP=6 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_control b/tests/tests/conus13km_control new file mode 100644 index 0000000000..5b4bcb4f12 --- /dev/null +++ b/tests/tests/conus13km_control @@ -0,0 +1,35 @@ +############################################################################### +# +# HRRR physics on 13km domain, control +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export QUILTING_RESTART=.false. +export USE_MERRA2=.true. + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/conus13km_debug b/tests/tests/conus13km_debug new file mode 100644 index 0000000000..88161c5443 --- /dev/null +++ b/tests/tests/conus13km_debug @@ -0,0 +1,29 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_debug_2threads b/tests/tests/conus13km_debug_2threads new file mode 100644 index 0000000000..9daadc7dd6 --- /dev/null +++ b/tests/tests/conus13km_debug_2threads @@ -0,0 +1,26 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug run with threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug run with threads" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 +export atm_omp_num_threads=2 +export INPES=12 +export JNPES=12 +export WRTTASK_PER_GROUP=6 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_debug_decomp b/tests/tests/conus13km_debug_decomp new file mode 100644 index 0000000000..07f1436d03 --- /dev/null +++ b/tests/tests/conus13km_debug_decomp @@ -0,0 +1,24 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug run with different pes +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug run with different pes" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 +export INPES=16 +export JNPES=9 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_debug_qr b/tests/tests/conus13km_debug_qr new file mode 100644 index 0000000000..918680aacc --- /dev/null +++ b/tests/tests/conus13km_debug_qr @@ -0,0 +1,28 @@ +############################################################################### +# +# HRRR physics on 13km domain, control +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control" + +export CNTL_DIR=conus13km_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FHMAX=1 diff --git a/tests/tests/conus13km_decomp b/tests/tests/conus13km_decomp new file mode 100644 index 0000000000..70ede9c67c --- /dev/null +++ b/tests/tests/conus13km_decomp @@ -0,0 +1,25 @@ +############################################################################### +# +# HRRR physics on 13km domain, different PEs +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, different PEs" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export INPES=16 +export JNPES=9 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_radar_tten_debug b/tests/tests/conus13km_radar_tten_debug new file mode 100644 index 0000000000..323806cd4a --- /dev/null +++ b/tests/tests/conus13km_radar_tten_debug @@ -0,0 +1,23 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug, with radar-derived temperature tendencies +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug, with radar-derived temperature tendencies" + +export CNTL_DIR=conus13km_radar_tten_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr_conus13km +export RESTART_INTERVAL=1 +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' +export FHMAX=1 +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_restart b/tests/tests/conus13km_restart new file mode 100644 index 0000000000..4a966591bf --- /dev/null +++ b/tests/tests/conus13km_restart @@ -0,0 +1,21 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_control + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES +export QUILTING_RESTART=.false. diff --git a/tests/tests/conus13km_restart_mismatch b/tests/tests/conus13km_restart_mismatch new file mode 100644 index 0000000000..b5360c0def --- /dev/null +++ b/tests/tests/conus13km_restart_mismatch @@ -0,0 +1,21 @@ +############################################################################### +# +# HRRR physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, restart run" + +export CNTL_DIR=conus13km_restart_mismatch + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_hrrr_conus13km +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES +export QUILTING_RESTART=.false. diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index c7331015d0..66c0a88240 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - 2 threads" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -78,17 +78,25 @@ export ocn_omp_num_threads=$OCN_thrds_cpl_thrd export ice_omp_num_threads=$ICE_thrds_cpl_thrd export wav_omp_num_threads=$WAV_thrds_cpl_thrd -export NPROC_ICE=${ICE_tasks} -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=${ICE_tasks} +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index c779699e43..14f127024e 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P8 test" -export CNTL_DIR="cpld_bmark_p8" +export CNTL_DIR=cpld_bmark_p8 export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -54,8 +54,6 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld.IN - export SYEAR=2013 export SMONTH=04 export SDAY=01 @@ -95,19 +93,18 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=gwes_30m -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.${WAVDOMAIN} +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export WW3_DOMAIN=gwes_30m +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -115,18 +112,20 @@ export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc export MOM6_RIVER_RUNOFF=True export MOM6_RESTART_SETTING=r @@ -148,3 +147,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index f81b476b31..c4fca78a23 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 OCN/ICE/0.25-degree WAVE/30m - Benchmark P8 test" -export CNTL_DIR="cpld_bmark_p8" +export CNTL_DIR=cpld_bmark_p8 export LIST_FILES="" @@ -49,19 +49,18 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=gwes_30m -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.${WAVDOMAIN} +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export WW3_DOMAIN=gwes_30m +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -70,17 +69,18 @@ export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc export MOM6_RIVER_RUNOFF=True export MOM6_RESTART_SETTING=r @@ -102,3 +102,11 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 04d9e6f44c..41f8d426b4 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C192 MX050 - P8 test" -export CNTL_DIR="cpld_control_c192_p8" +export CNTL_DIR=cpld_control_c192_p8 export LIST_FILES="sfcf030.tile1.nc \ sfcf030.tile2.nc \ @@ -87,19 +87,18 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 export NX_GLB=720 export NY_GLB=576 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=mx${OCNRES} -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.mx${OCNRES} +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export WW3_DOMAIN=mx${OCNRES} +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.mx${OCNRES} # set component and coupling timesteps export DT_ATMOS=600 @@ -107,18 +106,20 @@ export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=1800 export DT_THERM_MOM6=3600 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc export MOM6_RIVER_RUNOFF=True export FNALBC="'C192.snowfree_albedo.tileX.nc'" @@ -137,6 +138,14 @@ export CDMBWD=${CDMBWD_c192} export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 853ad40c6f..0a21f62be7 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500" -export CNTL_DIR="cpld_control_c48" +export CNTL_DIR=cpld_control_c48 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -76,16 +76,15 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 export NX_GLB=72 export NY_GLB=35 -export NPROC_ICE=$ICE_tasks +export CICE_NPROC=$ICE_tasks export CICE_DECOMP=slenderX1 -export BLCKX=`expr $NX_GLB / $NPROC_ICE` -export BLCKY=$NY_GLB +export CICE_BLCKX=`expr $NX_GLB / $CICE_NPROC` +export CICE_BLCKY=$NY_GLB # set component and coupling timesteps export DT_ATMOS=1200 @@ -93,18 +92,20 @@ export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=3600 export DT_THERM_MOM6=3600 -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM='' -export FRUNOFF='' +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM='' +export MOM6_FRUNOFF='' export MOM6_RIVER_RUNOFF=False +export MOM6_DIAG_COORD_DEF_Z_FILE=oceanda_zgrid_25L.nc export MOM6_RESTART_SETTING=r export FNALBC="'C48.snowfree_albedo.tileX.nc'" @@ -134,6 +135,14 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 99214e4221..b99fb22832 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - CICE6 Cgrid" -export CNTL_DIR="cpld_control_ciceC_p8" +export CNTL_DIR=cpld_control_ciceC_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -76,14 +76,18 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 -export GRIDICE=C +export CICE_GRIDICE=C export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index af52e8562f..eb1b30790d 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -1,10 +1,11 @@ # -# cpld_control GFSv17 test +# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag + +# version 1 non-stationary GWD # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - unst WW3" -export CNTL_DIR="cpld_control_gfsv17" +export CNTL_DIR=cpld_control_gfsv17 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -74,23 +75,64 @@ 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' -export TOPOEDITS=ufs.topo_edits_011818.nc +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 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 +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. +export IOPT_DIAG=2 -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then + WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau new file mode 100644 index 0000000000..dbf82fe08c --- /dev/null +++ b/tests/tests/cpld_control_gfsv17_iau @@ -0,0 +1,150 @@ +# +# cpld_control GFSv17 test with IAU +# + +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="sfcf024.nc \ + atmf024.nc \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF24 \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ + RESTART/iced.2021-03-23-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + MOM6_OUTPUT/ocn_2021_03_23_09.nc \ + history/iceh_06h.2021-03-23-43200.nc \ + 20210323.120000.out_pnt.ww3 \ + 20210323.120000.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=30 +export RESTART_N=3 +export RESTART_INTERVAL="${RESTART_N} -1" +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 CICE_RUNTYPE=continue +export RUNTYPE=continue +export CICE_USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=2 + +#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 = hera ]] && [[ $RT_COMPILER = gnu ]]; then + WLCLK=40 +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 640148fe15..f191cc8dd5 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100" -export CNTL_DIR="cpld_control_noaero_p8" +export CNTL_DIR=cpld_control_noaero_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -77,16 +77,20 @@ export OUTPUT_FH='0 21 24' export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 532f52f863..5036092ba4 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" -export CNTL_DIR="cpld_control_noaero_p8_agrid" +export CNTL_DIR=cpld_control_noaero_p8_agrid export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -84,19 +84,23 @@ export CPLCHM=.false. export DNATS=0 export CPLWAV=.false. export CPLWAV2ATM=.false. -export CPLMODE=nems_frac_aoflux +export CPLMODE=ufs.frac.aoflux export CCPP_SUITE="FV3_GFS_v17_coupled_p8_sfcocn" export USE_MED_FLUX=.true. export MOM6_USE_WAVES=False -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export NEMS_CONFIGURE=nems.configure.cpld_agrid.IN +export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index dcf9457515..34bcd8d921 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" -export CNTL_DIR="cpld_control_c96_noaero_p8" +export CNTL_DIR=cpld_control_c96_noaero_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -74,6 +74,7 @@ export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' +export MED_history_n=1 export INPES=$INPES_cpl_dflt export JNPES=$JNPES_cpl_dflt @@ -84,10 +85,10 @@ OCN_tasks=$OCN_tasks_cpl_dflt ICE_tasks=$ICE_tasks_cpl_dflt export WAV_tasks=0 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` export CPLWAV=.false. export CPLWAV2ATM=.false. @@ -96,14 +97,18 @@ export eps_imesh=2.5e-1 export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export DIAG_TABLE=diag_table_template -export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 470aa18109..67243979f3 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -76,16 +76,20 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc new file mode 100644 index 0000000000..30ed1593fb --- /dev/null +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -0,0 +1,96 @@ +# +# cpld_control P8 v2 surface file test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 with v2 sfc file" + +export CNTL_DIR=cpld_control_p8.v2.sfc + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN +export V2_SFC_FILE=true + +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index 516b690be8..fcf93cd106 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" -export CNTL_DIR="cpld_control_p8_faster" +export CNTL_DIR=cpld_control_p8_faster export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -76,12 +76,16 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 24a56b829a..b01765abdf 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -4,7 +4,7 @@ export TEST_DESCR="FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system with mixedmode fms - C96MX100" -export CNTL_DIR="cpld_control_p8_mixedmode" +export CNTL_DIR=cpld_control_p8_mixedmode export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -76,12 +76,16 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 4ec3c801a3..252481a48a 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" -export CNTL_DIR="cpld_control_pdlib_p8" +export CNTL_DIR=cpld_control_pdlib_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -88,24 +88,28 @@ export med_omp_num_threads=$atm_omp_num_threads export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 -export WAVDOMAIN=global_270k -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi - if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index ae33580e6c..9618a05e6b 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 using quilting restart in atm" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -77,12 +77,16 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs new file mode 100644 index 0000000000..362e5a112d --- /dev/null +++ b/tests/tests/cpld_control_sfs @@ -0,0 +1,97 @@ +# +# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag + +# version 1 non-stationary GWD, hydrostatic +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system hydrostatic version - C96MX100 - unst WW3" + +export CNTL_DIR=cpld_control_sfs + +export LIST_FILES="sfcf021.nc \ + sfcf024.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24" + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 +export MAKE_NH=.false. +export DDDMP=0 +export DO_VORT_DAMP=.false. +export HYDROSTATIC=.true. +export HORD_XX=10 +export HORD_DP=10 +export KORD_XX=12 +export KORD_TM=-12 +export D_CON=0 + +export RESTART_N=3 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' +export OUTPUT_GRID="'gaussian_grid'" +export WRITE_DOPOST=.true. + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld_sfs.IN +export INPUT_NML=global_control.nml.IN + +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=2 + +if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then + WLCLK=40 +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 new file mode 100644 index 0000000000..37220564ac --- /dev/null +++ b/tests/tests/cpld_debug_gfsv17 @@ -0,0 +1,130 @@ +# +# cpld_debug unstrWW3 PDLIB GFSv17 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system -C96MX100 unstr WW3 PDLIB - GFSv17 debug" + +export CNTL_DIR=cpld_debug_gfsv17 + +export LIST_FILES="sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + 20210322.090000.out_pnt.ww3 \ + 20210322.090000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHMAX=3 +export DAYS=0.125 + +export RESTART_N=${FHMAX} +export OUTPUT_FH="3 -1" + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr +# bump resources for debug test +WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` + +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=2 + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then + WLCLK=40 +fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index bcac79d4a9..ec5114a81d 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - P8 debug" -export CNTL_DIR="cpld_debug_noaero_p8" +export CNTL_DIR=cpld_debug_noaero_p8 export LIST_FILES="sfcf003.tile1.nc \ sfcf003.tile2.nc \ @@ -67,16 +67,21 @@ export OUTPUT_FH="3 -1" export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index f634a28538..ed304b3b3d 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 P8 debug" -export CNTL_DIR="cpld_debug_p8" +export CNTL_DIR=cpld_debug_p8 export LIST_FILES="sfcf003.tile1.nc \ sfcf003.tile2.nc \ @@ -66,16 +66,21 @@ export RESTART_N=${FHMAX} export OUTPUT_FH="3 -1" export AOD_FRQ=030000 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi - if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e2d1f0c3bf..e0a2383ce5 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system -C96MX100 unstr WW3 PDLIB - P8 debug" -export CNTL_DIR="cpld_debug_pdlib_p8" +export CNTL_DIR=cpld_debug_pdlib_p8 export LIST_FILES="sfcf003.tile1.nc \ sfcf003.tile2.nc \ @@ -80,24 +80,29 @@ export med_omp_num_threads=$atm_omp_num_threads export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -export WAVDOMAIN=global_270k -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = hera && $RT_COMPILER = gnu ]] || [[ $MACHINE_ID = jet ]]; then + WLCLK=50 fi -if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then - WLCLK=40 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 27a793c2fd..6c44601b3f 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - decomp test" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -72,17 +72,25 @@ OCN_tasks=$OCN_tasks_cpl_dcmp ICE_tasks=$ICE_tasks_cpl_dcmp WAV_tasks=$WAV_tasks_cpl_dcmp -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 new file mode 100644 index 0000000000..6fc53f2686 --- /dev/null +++ b/tests/tests/cpld_mpi_gfsv17 @@ -0,0 +1,141 @@ +# +# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag + +# version 1 non-stationary GWD +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - unst WW3" + +export CNTL_DIR=cpld_control_gfsv17 + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 + +export RESTART_N=3 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + + +export INPES=$INPES_cpl_unstr_mpi +export JNPES=$JNPES_cpl_unstr_mpi +export atm_omp_num_threads=$THRD_cpl_unstr_mpi +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr_mpi * THRD_cpl_unstr_mpi )) + +OCN_tasks=$OCN_tasks_cpl_unstr_mpi +ICE_tasks=$ICE_tasks_cpl_unstr_mpi +WAV_tasks=$WAV_tasks_cpl_unstr_mpi + +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=2 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 2a74f287ca..84756f04d6 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 MPI-task test" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -72,17 +72,25 @@ OCN_tasks=$OCN_tasks_cpl_mpi ICE_tasks=$ICE_tasks_cpl_mpi WAV_tasks=$WAV_tasks_cpl_mpi -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index e6e95abc45..cd536948d2 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" -export CNTL_DIR="cpld_control_pdlib_p8" +export CNTL_DIR=cpld_control_pdlib_p8 export LIST_FILES="sfcf021.tile1.nc \ sfcf021.tile2.nc \ @@ -84,27 +84,31 @@ OCN_tasks=$OCN_tasks_cpl_unstr_mpi ICE_tasks=$ICE_tasks_cpl_unstr_mpi WAV_tasks=$WAV_tasks_cpl_unstr_mpi -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 -export WAVDOMAIN=global_270k -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 1d1ffdff60..d6a3b39d2d 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - restart test " -export CNTL_DIR="cpld_bmark_p8" +export CNTL_DIR=cpld_bmark_p8 export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -54,8 +54,6 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld.IN - export SYEAR=2013 export SMONTH=04 export SDAY=01 @@ -99,19 +97,18 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=gwes_30m -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.${WAVDOMAIN} +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export WW3_DOMAIN=gwes_30m +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.${WW3_DOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -119,18 +116,20 @@ export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc export MOM6_RIVER_RUNOFF=True export MOM6_RESTART_SETTING=r @@ -157,11 +156,19 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index d286e3a3a8..dce8254328 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C192 MX050 - P8 test" -export CNTL_DIR="cpld_control_c192_p8" +export CNTL_DIR=cpld_control_c192_p8 export LIST_FILES="sfcf030.tile1.nc \ sfcf030.tile2.nc \ @@ -89,19 +89,18 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 export NX_GLB=720 export NY_GLB=576 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` -export WAVDOMAIN=mx${OCNRES} -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.mx${OCNRES} +export CICE_NPROC=$ICE_tasks +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export WW3_DOMAIN=mx${OCNRES} +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.mx${OCNRES} # set component and coupling timesteps export DT_ATMOS=600 @@ -109,18 +108,20 @@ export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=1800 export DT_THERM_MOM6=3600 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc export MOM6_RIVER_RUNOFF=True export FNALBC="'C192.snowfree_albedo.tileX.nc'" @@ -146,15 +147,19 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index 7e837808f8..bafb92a4b5 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500 restart test" -export CNTL_DIR="cpld_warmstart_c48" +export CNTL_DIR=cpld_warmstart_c48 export LIST_FILES="sfcf006.tile1.nc \ sfcf006.tile2.nc \ @@ -91,35 +91,37 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 export NX_GLB=72 export NY_GLB=35 -export NPROC_ICE=$ICE_tasks +export CICE_NPROC=$ICE_tasks export CICE_DECOMP=slenderX1 -export BLCKX=`expr $NX_GLB / $NPROC_ICE` -export BLCKY=$NY_GLB +export CICE_BLCKX=`expr $NX_GLB / $CICE_NPROC` +export CICE_BLCKY=$NY_GLB # set component and coupling timesteps export DT_ATMOS=1200 export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=3600 export DT_THERM_MOM6=3600 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM='' -export FRUNOFF='' +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM='' +export MOM6_FRUNOFF='' export MOM6_RIVER_RUNOFF=False +export MOM6_DIAG_COORD_DEF_Z_FILE=oceanda_zgrid_25L.nc export FNALBC="'C48.snowfree_albedo.tileX.nc'" export FNALBC2="'C48.facsf.tileX.nc'" @@ -148,9 +150,9 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r @@ -164,6 +166,14 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 new file mode 100644 index 0000000000..924c60a9b7 --- /dev/null +++ b/tests/tests/cpld_restart_gfsv17 @@ -0,0 +1,143 @@ +# +# cpld_control GFSv17 with UGWPv1 test, i.e., GSL orographic drag + +# version 1 non-stationary GWD +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - unst WW3 - Restart " + +export CNTL_DIR=cpld_control_gfsv17 + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 + +export FHROT=12 +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 CICE_RUNTYPE=continue +export RUNTYPE=continue +export CICE_USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +# UGWP1 +export GWD_OPT=2 +export CDMBWD=20.0,2.5,1.0,1.0 +export DO_UGWP_V1=.true. +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` + +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} + +export FV3_RUN=cpld_control_run.IN +export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_cpld.IN +export INPUT_NML=global_control.nml.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN + +#GFSv17 settings +export PROGSIGMA=.true. +export IOPT_DIAG=2 + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 6b3f26ecf2..edbba45c3e 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -75,19 +75,28 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 fi + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 62ba1064c7..e9e8a9d510 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" -export CNTL_DIR="cpld_control_pdlib_p8" +export CNTL_DIR=cpld_control_pdlib_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -74,9 +74,9 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r @@ -94,20 +94,25 @@ export med_omp_num_threads=$atm_omp_num_threads export CPLCHM=.false. export DNATS=0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -export WAVDOMAIN=global_270k -export MESH_WAV=mesh.${WAVDOMAIN}.nc -export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} +export WW3_DOMAIN=global_270k +export MESH_WAV=mesh.${WW3_DOMAIN}.nc +export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index c8fbf00964..79ebaaf10e 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -4,7 +4,7 @@ export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 using quilting restart in atm" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR=cpld_control_p8 export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -76,19 +76,24 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_multigrid_p8 b/tests/tests/cpld_s2sa_p8 similarity index 78% rename from tests/tests/cpld_multigrid_p8 rename to tests/tests/cpld_s2sa_p8 index 1c79c8522a..fb827e0b83 100644 --- a/tests/tests/cpld_multigrid_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -1,10 +1,10 @@ # -# cpld_multigrid P8 test +# S2SA companion to cpld_control_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 multigrid test" +export TEST_DESCR="Coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100" -export CNTL_DIR="cpld_control_p8" +export CNTL_DIR="cpld_s2sa_p8" export LIST_FILES="sfcf024.tile1.nc \ sfcf024.tile2.nc \ @@ -53,16 +53,34 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/20210323.060000.sfc_data.tile6.nc \ RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - 20210323.060000.out_grd.ww3 " + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" export_fv3 export_cpl -export MULTIGRID=true +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 24' -export TOPOEDITS=ufs.topo_edits_011818.nc +export WAV_tasks=0 +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False +export CPLCHM=.true. +export DNATS=0 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export DIAG_TABLE=diag_table_template +export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN + export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index f12b297a70..3c2c18e6b1 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -3,7 +3,7 @@ # export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500 start from model initialization" -export CNTL_DIR="cpld_warmstart_c48" +export CNTL_DIR=cpld_warmstart_c48 export LIST_FILES="sfcf006.tile1.nc \ sfcf006.tile2.nc \ @@ -88,35 +88,37 @@ export NPX=49 export NPY=49 export IMO=192 export JMO=94 -export ATMTILESIZE=`expr $NPX - 1` export OCNRES=500 export ICERES=5.00 export NX_GLB=72 export NY_GLB=35 -export NPROC_ICE=$ICE_tasks +export CICE_NPROC=$ICE_tasks export CICE_DECOMP=slenderX1 -export BLCKX=`expr $NX_GLB / $NPROC_ICE` -export BLCKY=$NY_GLB +export CICE_BLCKX=`expr $NX_GLB / $CICE_NPROC` +export CICE_BLCKY=$NY_GLB # set component and coupling timesteps export DT_ATMOS=1200 export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=3600 export DT_THERM_MOM6=3600 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` -# nems.configure +# ufs.configure export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} # resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM='' -export FRUNOFF='' +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM='' +export MOM6_FRUNOFF='' export MOM6_RIVER_RUNOFF=False +export MOM6_DIAG_COORD_DEF_Z_FILE=oceanda_zgrid_25L.nc export FNALBC="'C48.snowfree_albedo.tileX.nc'" export FNALBC2="'C48.facsf.tileX.nc'" @@ -145,9 +147,9 @@ export NGGPS_IC=.false. export MOUNTAIN=.true. # ICE warm start -export CICERUNTYPE=continue +export CICE_RUNTYPE=continue export RUNTYPE=continue -export USE_RESTART_TIME=.true. +export CICE_USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r @@ -161,6 +163,14 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN + +# HR4 GFSv17 GWD update +export DO_UGWP_V0=.false. +export DO_UGWP_V1=.true. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GWD_OPT_PSL=.true. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 4c8a6667fe..9c61d01096 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -4,28 +4,27 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR_3072x1536 - control " -export CNTL_DIR="datm_cdeps_3072x1536_cfsr" +export CNTL_DIR=datm_cdeps_3072x1536_cfsr export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR3072x1536" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR3072x1536 +export FILENAME_BASE=cfsr. export WLCLK=15 export IATM=3072 export JATM=1536 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES=3072x1536 -export mesh_file=gfs_mesh.nc -export MESH_ATM=DATM_INPUT/${mesh_file} +export ATMRES=${IATM}x${JATM} +export MESH_ATM=gfs_mesh.nc export atm_datamode=GFS export RESTART_N=12 -export stream_files="DATM_INPUT/cfsr.2011100100_3072x1536.nc DATM_INPUT/cfsr.2011100106_3072x1536.nc DATM_INPUT/cfsr.2011100112_3072x1536.nc DATM_INPUT/cfsr.2011100118_3072x1536.nc DATM_INPUT/cfsr.2011100200_3072x1536.nc DATM_INPUT/cfsr.2011100206_3072x1536.nc" -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export stream_files="INPUT/cfsr.2011100100_3072x1536.nc INPUT/cfsr.2011100106_3072x1536.nc INPUT/cfsr.2011100112_3072x1536.nc INPUT/cfsr.2011100118_3072x1536.nc INPUT/cfsr.2011100200_3072x1536.nc INPUT/cfsr.2011100206_3072x1536.nc" +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index efb7784978..37f967809f 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -4,21 +4,21 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - bulk flux test" -export CNTL_DIR="datm_cdeps_bulk_cfsr" +export CNTL_DIR=datm_cdeps_bulk_cfsr export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export RESTART_N=12 -export flux_scheme='-1' -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export flux_scheme=-1 +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 1739555391..902df12859 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -4,31 +4,30 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - bulk flux test" -export CNTL_DIR="datm_cdeps_bulk_gefs" +export CNTL_DIR=datm_cdeps_bulk_gefs export LIST_FILES="RESTART/20111002.000000.MOM.res.nc\ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export atm_datamode="GEFS" +export atm_datamode=GEFS # atm configure export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES='1536x768' -export DATM_SRC="GEFS_NEW" -export FILENAME_BASE='gefs.' -export mesh_file="gefs_mesh.nc" -export MESH_ATM="DATM_INPUT/${mesh_file}" -export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export ATMRES=${IATM}x${JATM} +export DATM_SRC=GEFS_NEW +export FILENAME_BASE=gefs. +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc +export stream_files="INPUT/${FILENAME_BASE}201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 -export flux_scheme='-1' -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export flux_scheme=-1 +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr index 43f76ef2ed..a7cc6b9cee 100644 --- a/tests/tests/datm_cdeps_ciceC_cfsr +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -4,21 +4,21 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - CICE-C-grid" -export CNTL_DIR="datm_cdeps_ciceC_cfsr" +export CNTL_DIR=datm_cdeps_ciceC_cfsr export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export RESTART_N=12 -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True -export GRIDICE=C +export CICE_GRIDICE=C export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index b326a959c0..dc8ae8fd2d 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -4,20 +4,20 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - control " -export CNTL_DIR="datm_cdeps_control_cfsr" +export CNTL_DIR=datm_cdeps_control_cfsr export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export RESTART_N=12 -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_cfsr_faster b/tests/tests/datm_cdeps_control_cfsr_faster index 1fe446d960..0852da48e4 100644 --- a/tests/tests/datm_cdeps_control_cfsr_faster +++ b/tests/tests/datm_cdeps_control_cfsr_faster @@ -4,20 +4,20 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - control " -export CNTL_DIR="datm_cdeps_control_cfsr_faster" +export CNTL_DIR=datm_cdeps_control_cfsr_faster export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export RESTART_N=12 -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index abd28c0277..324c6f2f4d 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -4,29 +4,28 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - control" -export CNTL_DIR="datm_cdeps_control_gefs" +export CNTL_DIR=datm_cdeps_control_gefs export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export atm_datamode="GEFS" +export atm_datamode=GEFS # atm configure export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES='1536x768' -export DATM_SRC="GEFS_NEW" -export FILENAME_BASE='gefs.' -export mesh_file="gefs_mesh.nc" -export MESH_ATM="DATM_INPUT/${mesh_file}" -export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export ATMRES=${IATM}x${JATM} +export DATM_SRC=GEFS_NEW +export FILENAME_BASE=gefs. +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc +export stream_files="INPUT/${FILENAME_BASE}201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index fb8b01a13e..618552ed96 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -4,21 +4,22 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - debug test" -export CNTL_DIR="datm_cdeps_debug_cfsr" +export CNTL_DIR=datm_cdeps_debug_cfsr export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ RESTART/iced.2011-10-01-21600.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 -export DAYS="0.25" +export DAYS=0.25 export FHMAX=6 export RESTART_N=${FHMAX} -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index 6014d99472..2147c3d41c 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -4,15 +4,15 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GFS - control " -export CNTL_DIR="datm_cdeps_gfs" +export CNTL_DIR=datm_cdeps_gfs export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc" export_datm_cdeps -export DATM_SRC="GFS" -export FILENAME_BASE='gfs.' +export DATM_SRC=GFS +export FILENAME_BASE=gfs. export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -22,16 +22,15 @@ export IATM=3072 export JATM=1536 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES=3072x1536 -export mesh_file=gfs_mesh.nc -export MESH_ATM=DATM_INPUT/${mesh_file} +export ATMRES=${IATM}x${JATM} +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc export atm_datamode=GFS -export KTHERM=2 -export TFREEZE_OPTION=mushy +export CICE_KTHERM=2 +export CICE_TFREEZE_OPTION=mushy export RESTART_N=12 -export stream_files="DATM_INPUT/gfs.202103.nc" -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export stream_files="INPUT/gfs.202103.nc" +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps_gfs.IN diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index 4b8e99370e..d28c4bd35c 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -4,31 +4,31 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - iau" -export CNTL_DIR="datm_cdeps_iau_gefs" +export CNTL_DIR=datm_cdeps_iau_gefs export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export atm_datamode="GEFS" +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 export ATM_NY_GLB=$JATM -export ATMRES='1536x768' -export DATM_SRC="GEFS_NEW" -export FILENAME_BASE='gefs.' -export mesh_file="gefs_mesh.nc" -export MESH_ATM="DATM_INPUT/${mesh_file}" -export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export ATMRES=${IATM}x${JATM} +export DATM_SRC=GEFS_NEW +export FILENAME_BASE=gefs. +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc +export stream_files="INPUT/${FILENAME_BASE}201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_lnd_era5 b/tests/tests/datm_cdeps_lnd_era5 new file mode 100644 index 0000000000..5e889fff1f --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_era5 @@ -0,0 +1,58 @@ +# +# DATM_CDEPS_NOAHMP_ERA5 test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_ERA5 - control " + +export CNTL_DIR=datm_cdeps_lnd_era5 + +export LIST_FILES="ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc" + +export_datm_cdeps + +export SYEAR=2011 +export SMONTH=01 +export SDAY=01 +export SHOUR=00 +export FHMAX=12 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=ERA5_mesh.nc +export atm_datamode=ERA5 +export ATM_NX_GLB=1440 +export ATM_NY_GLB=721 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.era5.IN +export MESH_ATM_DATA=ERA5_mesh.nc +export SDATE=2010 +export EDATE=2011 +export DATA_ATM01="\"INPUT/ERA5_forcing_2010-12-31_fix.nc\" \"INPUT/ERA5_forcing_2011-01-01_fix.nc\" \"INPUT/ERA5_forcing_2011-01-02_fix.nc\"" + +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN +export med_model=cmeps +export atm_model=datm +export lnd_model=noahmp +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE=startup +export READRESTART=.false. +export TASKS=288 +export ATM_compute_tasks=144 +export LND_tasks=144 +export lnd_ic_type='custom' +export lnd_input_dir='INPUT/' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export mosaic_file="INPUT/${LNDRES}_mosaic.nc" +export coupling_interval_sec=3600 +export snow_albedo_option=2 +export precip_partition_option=1 +export initial_albedo=0.25 +export FV3_RUN="lnd_datm_cdeps_era5.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_lnd_era5_rst b/tests/tests/datm_cdeps_lnd_era5_rst new file mode 100644 index 0000000000..70e6c4c5e3 --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_era5_rst @@ -0,0 +1,62 @@ +# +# DATM_CDEPS_NOAHMP_ERA5 test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_ERA5_RST - control restart" + +export CNTL_DIR=datm_cdeps_lnd_era5 + +export LIST_FILES="ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc \ + ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc" + +export_datm_cdeps + +export SYEAR=2011 +export SMONTH=01 +export SDAY=01 +export SHOUR=06 +export FHMAX=06 +export FHROT=0 + +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=ERA5_mesh.nc +export atm_datamode=ERA5 +export ATM_NX_GLB=1440 +export ATM_NY_GLB=721 +export EXPORT_ALL=.true. + +export DATM_STREAM_CONFIGURE=datm.streams.era5.IN +export MESH_ATM_DATA=ERA5_mesh.nc +export SDATE=2010 +export EDATE=2011 +export DATA_ATM01="\"INPUT/ERA5_forcing_2010-12-31_fix.nc\" \"INPUT/ERA5_forcing_2011-01-01_fix.nc\" \"INPUT/ERA5_forcing_2011-01-02_fix.nc\"" + +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN +export med_model=cmeps +export atm_model=datm +export lnd_model=noahmp +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE=continue +export READRESTART=.false. +export TASKS=288 +export ATM_compute_tasks=144 +export LND_tasks=144 +export lnd_ic_type='custom' +export lnd_input_dir='INPUT/' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export LNDRES=C96 +export mosaic_file="INPUT/${LNDRES}_mosaic.nc" +export coupling_interval_sec=3600 +export snow_albedo_option=2 +export precip_partition_option=1 +export initial_albedo=0.25 +export WARM_START=.true. + +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+${SHOUR})*3600 )))" +export FV3_RUN="lnd_datm_cdeps_era5.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 index ec7e5a853c..5905ef145a 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3 +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -4,7 +4,7 @@ export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3 - control " -export CNTL_DIR="datm_cdeps_lnd_gswp3" +export CNTL_DIR=datm_cdeps_lnd_gswp3 export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ @@ -20,42 +20,45 @@ export SMONTH=01 export SDAY=01 export SHOUR=00 -export DATM_IN_CONFIGURE=datm_in -export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" -export atm_datamode="CLMNCEP" +export DATM_IN_CONFIGURE=datm_in.IN +export MESH_ATM=fv1.9x2.5_141008_ESMFmesh.nc +export atm_datamode=CLMNCEP export ATM_NX_GLB=144 export ATM_NY_GLB=96 +export EXPORT_ALL=.true. export DATM_STREAM_CONFIGURE=datm.streams.multi.IN -export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" -export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_DATA="INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" export SDATE=1999 export EDATE=2000 -export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" -export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" -export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" -export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" - -export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" -export med_model="cmeps" -export atm_model="datm" -export lnd_model="noahmp" -export CPLMODE="nems_orig_data" -export RUNTYPE="startup" +export DATA_ATM01="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export UFS_CONFIGURE=ufs.configure.atm_lnd.IN +export med_model=cmeps +export atm_model=datm +export lnd_model=noahmp +export CPLMODE=ufs.nfrac.aoflux +export RUNTYPE=startup export READRESTART=.false. export ATM_compute_tasks=144 export OCN_tasks=0 export ICE_tasks=0 export LND_tasks=144 export lnd_ic_type='custom' +export lnd_input_dir='INPUT/' export CALC_SNET=.true. export layout_x=3 export layout_y=8 -export mosaic_file="INPUT/C96_mosaic.nc" +export LNDRES=C96 +export mosaic_file="INPUT/${LNDRES}_mosaic.nc" export coupling_interval_sec=3600 +export snow_albedo_option=1 +export precip_partition_option=4 +export initial_albedo=0.25 export TOPOEDITS="" export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/datm_cdeps_lnd_gswp3_rst b/tests/tests/datm_cdeps_lnd_gswp3_rst deleted file mode 100644 index 8c91f1e2aa..0000000000 --- a/tests/tests/datm_cdeps_lnd_gswp3_rst +++ /dev/null @@ -1,62 +0,0 @@ -# -# DATM_CDEPS_NOAHMP_GSWP test -# - -export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3_RST - control restart" - -export CNTL_DIR="datm_cdeps_lnd_gswp3" - -export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ - ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ - ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc \ - ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc \ - ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc \ - ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc" - -export_datm_cdeps - -export SYEAR=2000 -export SMONTH=01 -export SDAY=01 -export SHOUR=12 -export FHMAX=12 -export FHROT=0 - -export DATM_IN_CONFIGURE=datm_in -export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" -export atm_datamode="CLMNCEP" -export ATM_NX_GLB=144 -export ATM_NY_GLB=96 - -export DATM_STREAM_CONFIGURE=datm.streams.multi.IN -export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" -export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" -export SDATE=1999 -export EDATE=2000 -export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" -export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" -export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" -export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" - -export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" -export med_model="cmeps" -export atm_model="datm" -export lnd_model="noahmp" -export CPLMODE="nems_orig_data" -export RUNTYPE="continue" -export READRESTART=.false. -export ATM_compute_tasks=144 -export OCN_tasks=0 -export ICE_tasks=0 -export LND_tasks=144 -export lnd_ic_type='custom' -export CALC_SNET=.true. -export layout_x=3 -export layout_y=8 -export mosaic_file="INPUT/C96_mosaic.nc" -export coupling_interval_sec=3600 -export TOPOEDITS="" -export WARM_START=.true. - -export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index afeb10ef40..86b8eb6032 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -4,18 +4,18 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - multiple input files " -export CNTL_DIR="datm_cdeps_control_cfsr" +export CNTL_DIR=datm_cdeps_control_cfsr export LIST_FILES="RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export RESTART_N=12 -export stream_files="DATM_INPUT/cfsr.2011100100.nc DATM_INPUT/cfsr.2011100106.nc DATM_INPUT/cfsr.2011100112.nc DATM_INPUT/cfsr.2011100118.nc DATM_INPUT/cfsr.2011100200.nc DATM_INPUT/cfsr.2011100206.nc" -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export stream_files="INPUT/cfsr.2011100100.nc INPUT/cfsr.2011100106.nc INPUT/cfsr.2011100112.nc INPUT/cfsr.2011100118.nc INPUT/cfsr.2011100200.nc INPUT/cfsr.2011100206.nc" +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index 9241869609..b41cef9d56 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -4,7 +4,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice" -export CNTL_DIR="datm_cdeps_mx025_cfsr" +export CNTL_DIR=datm_cdeps_mx025_cfsr export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ RESTART/20111001.120000.MOM.res_1.nc \ @@ -14,38 +14,40 @@ export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 -export DAYS="0.5" +export DAYS=0.5 export FHMAX=12 export RESTART_N=${FHMAX} -export DT_DYNAM_MOM6='900' -export DT_THERM_MOM6='1800' +export DT_DYNAM_MOM6=900 +export DT_THERM_MOM6=1800 ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} OCN_tasks=${OCN_tasks_cdeps_025} ICE_tasks=${ICE_tasks_cdeps_025} # ocn/ice resolution -export OCNRES='025' -export ICERES='0.25' +export OCNRES=025 +export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE='48' -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=48 +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` # resolution dependent files -export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHOCN_ICE="mesh.mx${OCNRES}.nc" -export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" -export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" -export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' -export MOM6_RIVER_RUNOFF='True' -export FRUNOFF="runoff.daitren.clim.1440x1080.v20180328.nc" -export MOM6_RESTART_SETTING='r' +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' +export MOM6_RIVER_RUNOFF=True +export MOM6_FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc +export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 9c587a4094..0d3e43875a 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -4,7 +4,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice" -export CNTL_DIR="datm_cdeps_mx025_gefs" +export CNTL_DIR=datm_cdeps_mx025_gefs export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ RESTART/20111001.120000.MOM.res_1.nc \ @@ -14,23 +14,22 @@ export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc" export_datm_cdeps -export atm_datamode="GEFS" -export DAYS="0.5" +export atm_datamode=GEFS +export DAYS=0.5 export FHMAX=12 export RESTART_N=${FHMAX} -export DT_DYNAM_MOM6='900' -export DT_THERM_MOM6='1800' +export DT_DYNAM_MOM6=900 +export DT_THERM_MOM6=1800 export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES='1536x768' -export DATM_SRC="GEFS_NEW" -export FILENAME_BASE='gefs.' -export mesh_file="gefs_mesh.nc" -export MESH_ATM="DATM_INPUT/${mesh_file}" -export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export ATMRES=${IATM}x${JATM} +export DATM_SRC=GEFS_NEW +export FILENAME_BASE=gefs. +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc +export stream_files="INPUT/${FILENAME_BASE}201110.nc" export STREAM_OFFSET=-21600 ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} @@ -38,23 +37,25 @@ OCN_tasks=${OCN_tasks_cdeps_025} ICE_tasks=${ICE_tasks_cdeps_025} # ocn/ice resolution -export OCNRES='025' -export ICERES='0.25' +export OCNRES=025 +export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE='48' -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` +export CICE_NPROC=48 +export np2=`expr $CICE_NPROC / 2` +export CICE_BLCKX=`expr $NX_GLB / $np2` +export CICE_BLCKY=`expr $NY_GLB / 2` +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` # resolution dependent files -export MOM_INPUT="MOM_input_template_${OCNRES}" -export MESHOCN_ICE="mesh.mx${OCNRES}.nc" -export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" -export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" -export CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' -export MOM6_RIVER_RUNOFF='True' -export FRUNOFF="runoff.daitren.clim.1440x1080.v20180328.nc" -export MOM6_RESTART_SETTING='r' +export MOM6_INPUT=MOM_input_${OCNRES}.IN +export MESH_ICE=mesh.mx${OCNRES}.nc +export MESH_OCN=mesh.mx${OCNRES}.nc +export CICE_GRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICE_MASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export MOM6_CHLCLIM='"seawifs-clim-1997-2010.1440x1080.v20180328.nc"' +export MOM6_RIVER_RUNOFF=True +export MOM6_FRUNOFF=runoff.daitren.clim.1440x1080.v20180328.nc +export MOM6_RESTART_SETTING=r export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index 7b7b4da0f9..eec83536de 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -4,27 +4,28 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - restart test " -export CNTL_DIR="datm_cdeps_control_cfsr" +export CNTL_DIR=datm_cdeps_control_cfsr export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export DATM_SRC="CFSR" -export FILENAME_BASE='cfsr.' +export DATM_SRC=CFSR +export FILENAME_BASE=cfsr. export IATM=1760 export JATM=880 export FHMAX=24 export FHOUT=12 -export WARM_START='.true.' +export WARM_START=.true. export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) -export CICERUNTYPE='continue' -export RUNTYPE='continue' -export USE_RESTART_TIME='.true.' -export MOM6_RESTART_SETTING="r" -export eps_imesh='2.5e-1' -export TOPOEDITS=ufs.topo_edits_011818.nc +export CICE_RUNTYPE=continue +export RUNTYPE=continue +export CICE_USE_RESTART_TIME=.true. +export MOM6_RESTART_SETTING=r +export eps_imesh=2.5e-1 +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True +export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 323824334a..7f2d0db842 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -4,33 +4,32 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - stochastic" -export CNTL_DIR="datm_cdeps_stochy_gefs" +export CNTL_DIR=datm_cdeps_stochy_gefs export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps -export atm_datamode="GEFS" +export atm_datamode=GEFS # atm configure export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM -export ATMRES='1536x768' -export DATM_SRC="GEFS_NEW" -export FILENAME_BASE='gefs.' -export mesh_file="gefs_mesh.nc" -export MESH_ATM="DATM_INPUT/${mesh_file}" -export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export ATMRES=${IATM}x${JATM} +export DATM_SRC=GEFS_NEW +export FILENAME_BASE=gefs. +export MESH_ATM=${FILENAME_BASE//.}_mesh.nc +export stream_files="INPUT/${FILENAME_BASE}201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 -export eps_imesh='2.5e-1' +export eps_imesh=2.5e-1 export FV3_RUN=cpld_datm_cdeps.IN -export DO_OCN_SPPT="True" -export PERT_EPBL="True" +export DO_OCN_SPPT=True +export PERT_EPBL=True export OCN_SPPT=1.0 -export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export EPBL=1.0 diff --git a/tests/tests/rap_clm_lake b/tests/tests/dependency_unmet similarity index 66% rename from tests/tests/rap_clm_lake rename to tests/tests/dependency_unmet index c424fbb196..22e56406e7 100644 --- a/tests/tests/rap_clm_lake +++ b/tests/tests/dependency_unmet @@ -1,25 +1,18 @@ ############################################################################### # -# RAP control test: lake coupled at C96L127 +# Regression test self-test: a job that is never submitted due to a failed dependency. +# This file was modified from control_c48. # ############################################################################### -export TEST_DESCR="Compare RAP lake coupled results with previous trunk version" +export TEST_DESCR="This test should use a compile job that fails. Its purpose is to ensure the rt.sh workflow won't submit the dependent job." -export CNTL_DIR=rap_clm_lake +export CNTL_DIR=control_c48 export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ sfcf024.nc \ atmf000.nc \ - atmf021.nc \ atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ RESTART/20210323.060000.coupler.res \ RESTART/20210323.060000.fv_core.res.nc \ RESTART/20210323.060000.fv_core.res.tile1.nc \ @@ -54,53 +47,40 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 export NPZ=127 export NPZP=128 -export DT_ATMOS=300 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" export IAER=5111 -export OUTPUT_FH='0 21 24' - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_RAP_clm_lake -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LKM=1 -export IOPT_LAKE=2 -export FRAC_ICE=.true. +export IOVR=3 +export IMO=192 +export JMO=94 -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/fail_to_copy b/tests/tests/fail_to_copy new file mode 100644 index 0000000000..9158005b33 --- /dev/null +++ b/tests/tests/fail_to_copy @@ -0,0 +1,85 @@ +############################################################################### +# +# Regression test self-test: a job that fails to copy inputs. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime before the job_card: +export JOB_SHOULD_FAIL=WHEN_COPYING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because run_test.sh will abort before the job_card." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/fail_to_run b/tests/tests/fail_to_run new file mode 100644 index 0000000000..cf906e532e --- /dev/null +++ b/tests/tests/fail_to_run @@ -0,0 +1,89 @@ +############################################################################### +# +# Regression test self-test: a job that fails to run the model. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime inside the job_card +export JOB_SHOULD_FAIL=WHEN_RUNNING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because the job_card will abort." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/gnv1_c96_no_nest_debug b/tests/tests/gnv1_c96_no_nest_debug new file mode 100644 index 0000000000..3de6194b95 --- /dev/null +++ b/tests/tests/gnv1_c96_no_nest_debug @@ -0,0 +1,115 @@ +############################################################################### +# +# Global nest v1 physics suite test at C96 without a nest, debug mode +# +############################################################################### + +export TEST_DESCR="Global nest v1 physics suite test at C96 without a nest, debug mode" + +export CNTL_DIR=gnv1_c96_no_nest_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc \ + RESTART/20210322.070000.coupler.res \ + RESTART/20210322.070000.fv_core.res.nc \ + RESTART/20210322.070000.fv_core.res.tile1.nc \ + RESTART/20210322.070000.fv_core.res.tile2.nc \ + RESTART/20210322.070000.fv_core.res.tile3.nc \ + RESTART/20210322.070000.fv_core.res.tile4.nc \ + RESTART/20210322.070000.fv_core.res.tile5.nc \ + RESTART/20210322.070000.fv_core.res.tile6.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.070000.fv_tracer.res.tile1.nc \ + RESTART/20210322.070000.fv_tracer.res.tile2.nc \ + RESTART/20210322.070000.fv_tracer.res.tile3.nc \ + RESTART/20210322.070000.fv_tracer.res.tile4.nc \ + RESTART/20210322.070000.fv_tracer.res.tile5.nc \ + RESTART/20210322.070000.fv_tracer.res.tile6.nc \ + RESTART/20210322.070000.phy_data.tile1.nc \ + RESTART/20210322.070000.phy_data.tile2.nc \ + RESTART/20210322.070000.phy_data.tile3.nc \ + RESTART/20210322.070000.phy_data.tile4.nc \ + RESTART/20210322.070000.phy_data.tile5.nc \ + RESTART/20210322.070000.phy_data.tile6.nc \ + RESTART/20210322.070000.sfc_data.tile1.nc \ + RESTART/20210322.070000.sfc_data.tile2.nc \ + RESTART/20210322.070000.sfc_data.tile3.nc \ + RESTART/20210322.070000.sfc_data.tile4.nc \ + RESTART/20210322.070000.sfc_data.tile5.nc \ + RESTART/20210322.070000.sfc_data.tile6.nc" + +export_fv3_v16 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export IAER=5111 +export FHMAX=2 + +export FV_CORE_TAU=0. +export RF_CUTOFF=10. +export FAST_TAU_W_SEC=0.2 + +export RESTART_INTERVAL="1 -1" +export OUTPUT_FH='0 01 02' + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_global_nest_v1 +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_progsigma +export NEW_DIAGTABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.false. + +export PROGSIGMA=.true. +export BETASCU=8.0 +export BETAMCU=1.5 +export BETADCU=0.5 + +export LKM=0 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=5 +export IMFDEEPCNV=5 +export LSM=2 + +export GWD_OPT=2 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.true. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV_CORE_TAU=0. +export RF_CUTOFF=10. +export FAST_TAU_W_SEC=0.2 + +export CDMBWD=20.0,2.5,1.0,1.0 +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_PALAUNCH=275.0e2 + diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested new file mode 100644 index 0000000000..28047bdac4 --- /dev/null +++ b/tests/tests/gnv1_nested @@ -0,0 +1,339 @@ +############################################################################### +# +# HAFS global with 1 nest and atmosphere only using global_nest_v1 physics +# +############################################################################### + +export TEST_DESCR="Compare rotated C96 global with 1 nest and atmosphere only global_nest_v1 physics results with previous version" + +export CNTL_DIR=gnv1_nested + +export LIST_FILES="atmf002.nc \ + sfcf002.nc \ + atm.nest02.f002.nc \ + sfc.nest02.f002.nc \ + RESTART/20230224.010000.coupler.res \ + RESTART/20230224.010000.fv_core.res.nc \ + RESTART/20230224.010000.fv_core.res.nest02.nc \ + RESTART/20230224.010000.fv_core.res.nest02.tile7.nc \ + RESTART/20230224.010000.fv_core.res.tile1.nc \ + RESTART/20230224.010000.fv_core.res.tile2.nc \ + RESTART/20230224.010000.fv_core.res.tile3.nc \ + RESTART/20230224.010000.fv_core.res.tile4.nc \ + RESTART/20230224.010000.fv_core.res.tile5.nc \ + RESTART/20230224.010000.fv_core.res.tile6.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.nest02.tile7.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile1.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile2.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile3.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile4.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile5.nc \ + RESTART/20230224.010000.fv_srf_wnd.res.tile6.nc \ + RESTART/20230224.010000.fv_tracer.res.nest02.tile7.nc \ + RESTART/20230224.010000.fv_tracer.res.tile1.nc \ + RESTART/20230224.010000.fv_tracer.res.tile2.nc \ + RESTART/20230224.010000.fv_tracer.res.tile3.nc \ + RESTART/20230224.010000.fv_tracer.res.tile4.nc \ + RESTART/20230224.010000.fv_tracer.res.tile5.nc \ + RESTART/20230224.010000.fv_tracer.res.tile6.nc \ + RESTART/20230224.010000.phy_data.nest02.tile7.nc \ + RESTART/20230224.010000.phy_data.tile1.nc \ + RESTART/20230224.010000.phy_data.tile2.nc \ + RESTART/20230224.010000.phy_data.tile3.nc \ + RESTART/20230224.010000.phy_data.tile4.nc \ + RESTART/20230224.010000.phy_data.tile5.nc \ + RESTART/20230224.010000.phy_data.tile6.nc \ + RESTART/20230224.010000.sfc_data.nest02.tile7.nc \ + RESTART/20230224.010000.sfc_data.tile1.nc \ + RESTART/20230224.010000.sfc_data.tile2.nc \ + RESTART/20230224.010000.sfc_data.tile3.nc \ + RESTART/20230224.010000.sfc_data.tile4.nc \ + RESTART/20230224.010000.sfc_data.tile5.nc \ + RESTART/20230224.010000.sfc_data.tile6.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" + +# Get all default variables for FV3 +export_fv3 # Must come before all other exports + +# Request tiled inputs in &namsfc +export_tiled # Must come second, after export_fv3, before all export statements +export TILEDFIX=.true. + +# Select input directories in control_run.IN +export ATMRES=C96-nested + +# Master flag to enable nesting in control_run.IN. Also sent to &fv_core_nml +export NESTED=.true. + +# ---------------------------------------- +# model_configure +export SYEAR=2023 +export SMONTH=02 +export SDAY=24 +export SHOUR=00 +export FHMAX=3 +export FHROT=0 +export DT_ATMOS=300 +export RESTART_INTERVAL='1 -1' +export WRITE_GROUP=2 +export WRTTASK_PER_GROUP=12 +export WRITE_DOPOST=.true. +export WRITE_NSFLIP=.true. +export FILENAME_BASE="'atm' 'sfc'" +export OUTPUT_GRID=gaussian_grid +export OUTPUT_FILE="'netcdf' 'netcdf'" +export IDEFLATE=1 +export ICHUNK2D=-1 +export JCHUNK2D=-1 +export ICHUNK3D=-1 +export JCHUNK3D=-1 +export KCHUNK3D=1 +export IMO=384 +export JMO=192 +export OUTPUT_FH='1 -1' + +# NOTE: This script uses NTILES=6 despite having 7 tiles in total. +# This is to match the logic inside FV3, which is based on mosaics. +# The globe has one mosiac with 6 tiles, and each nest has one mosaic with 1 tile each. +# Our workflow scripts are not aware of that detail; they only know about the global mosaic. +export NTILES=6 + +export OUTPUT_GRID_2=regional_latlon +export IMO_2=361 +export JMO_2=241 +export CEN_LON_2=-135.0 +export CEN_LAT_2=32.5 +export LON1_2=-195.000000 +export LAT1_2=-7.500000 +export LON2_2=-75.000000 +export LAT2_2=72.500000 +export DLON_2=0.25 +export DLAT_2=0.25 + +# ---------------------------------------- +# &atmos_model_nml +export BLOCKSIZE=32 +export CCPP_SUITE=FV3_global_nest_v1 + +# ---------------------------------------- +# &diag_manager_nml +export MAX_OUTPUT_FIELDS=300 + +# ---------------------------------------- +# &fms_nml +export DOMAINS_STACK_SIZE=16000000 + +# ---------------------------------------- +# &fv_nest_nml +export TILE_COARSE="0,6" +export NUM_TILE_TOP=6 +export NEST_REFINE="0,4" +export NEST_IOFFSETS="0,4" +export NEST_JOFFSETS="0,9" + +# ---------------------------------------- +# &fv_core_nml +export INPES=4 +export JNPES=4 +export INPES_NEST02=12 +export JNPES_NEST02=10 + +export NPX=97 +export NPY=97 +export NPX_NEST02=361 +export NPY_NEST02=241 +export NPZ=127 +export DNATS=0 +export DO_SAT_ADJ=.false. + +export FV_CORE_TAU=0. +export RF_CUTOFF=10. +export FAST_TAU_W_SEC=0.2 + +export FV_CORE_TAU_NEST02=$FV_CORE_TAU +export RF_CUTOFF_NEST02=$RF_CUTOFF +export FAST_TAU_W_SEC_NEST02=$FAST_TAU_W_SEC + +export TARGET_LON=-135.0 +export TARGET_LAT=32.5 +export TWOWAYNEST02=.true. + +export TWOWAYNEST=.true. + +# ---------------------------------------- +# &gfs_physics_nml +export LDIAG3D=.true. +export LDIAG_UGWP=.true. + +export H2O_PHYS=.true. +export IMP_PHYSICS=8 +export IOVR=3 +export DT_INNER=$DT_ATMOS +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export BL_MYNN_TKEADVECT=.true. +export GWD_OPT=2 +export DO_UGWP_V1=.true. +export DO_UGWP_V0=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_W_GSLDRAG=.false. +export IALB=2 +export IEMS=2 +export IAER=1011 +export ICLIQ_SW=1 +export CNVGWD=.true. +export CNVGWD_NEST02=.false. +export HYBEDMF=.false. +export SATMEDMF=.false. +export ISATMEDMF=1 +export LHEATSTRG=.false. +export LSEASPRAY=.false. +export IMFDEEPCNV=5 +export IMFDEEPCNV_NEST02=5 +export IOPT_DIAG=2 +export NSTF_NAME=2,0,0,0,0 +export EFFR_IN=.true. +export RES_LATLON_DYNAMICS='""' +export DOGP_CLDOPTICS_LUT=.false. +export DOGP_LWSCAT=.false. +export DRY_MASS=98320.0 +export CONSV_TE=1. +export CONSV_TE_NEST02=0. +export D_CON=1.0 +export D_EXT=0.0 +export DELT_MAX=0.002 +export DELT_MAX_NEST02=0.008 +export NORD_ZS_FILTER=4 +export NGASES=0 + +export IAER=5111 +export IALB=1 +export IEMS=1 +export IMFSHALCNV=-1 +export IMFSHALCNV_NEST02=-1 +export IOPT_SFC=4 +export IOPT_TRS=3 +export SHAL_CNV=.false. +export D2_BG=0. +export D2_BG_K1=0.16 +export D2_BG_K2=0.05 +export D4_BG=0.15 +export D2_BG_NEST02=0. +export D2_BG_K1_NEST02=0.20 +export D2_BG_K2_NEST02=0.15 +export D4_BG_NEST02=0.15 +export DZ_MIN=2.0 +export FV_SG_ADJ=300 +export HORD_DP=6 +export HORD_MT=6 +export HORD_TM=6 +export HORD_TR=8 +export HORD_VT=6 +export HORD_DP_NEST02=6 +export HORD_MT_NEST02=6 +export HORD_TM_NEST02=6 +export HORD_TR_NEST02=8 +export HORD_VT_NEST02=6 +export MAKE_NH=.false. +export N_ZS_FILTER=0 +export N_ZS_FILTER_NEST02=1 +export N_SPONGE=24 +export PSM_BC_NEST02=1 +export UPOFF=2 +export VTDM4=0.04 +export BETADCU=2.0 +export BETAMCU=1.0 +export BETASCU=8.0 +export BETADCU_NEST02=8.0 +export BETAMCU_NEST02=1.5 +export BETASCU_NEST02=8.0 +export BETAL_DEEP_NEST02=0.05 +export BETAS_DEEP_NEST02=0.05 +export CDMBWD=20.0,2.5,1.0,1.0 +export CDMBWD_NEST02=5.0,5.0,1.0,1.0 +export DO_CA=.false. +export FHLWR=720. +export FHSWR=720. +export LCNORM=.false. +export RF_FAST=.false. +export SG_CUTOFF=-1. +export DO_DEEP=.true. +export DO_DEEP_NEST02=.true. +export FRAC_GRID=.false. +export KNOB_UGWP_TAUAMP=1.5e-3 +export KNOB_UGWP_TAUAMP_NEST02=0.8e-3 +export KNOB_UGWP_DOKDIS=2 +export KNOB_UGWP_NDX4LH=4 +export KNOB_UGWP_VERSION=1 +export KNOB_UGWP_PALAUNCH=275.0e2 +export LIGHTNING_THREAT=.true. + +# NOTE: progsigma should be .true. for the global_nest_v1 suite. +# The code turns it off automatically at low resolutions. +# This leads to an erronious situation where it is off for the globe, but on for the nest. +# Hence, we turn it off manually, to avoid advecting a field of 0 from the nest boundary. +# For practical resolutions (C384 or higher), it would be on. +export PROGSIGMA=.false. +export PROGSIGMA_NEST02=.false. + +# ---------------------------------------- +# &surf_map_nml +export N_DEL2_STRONG=0 # namelist default is -1 +export N_DEL2_WEAK=15 # namelist default is 12 +export N_DEL2_WEAK_NEST02=24 # namelist default is 12 +export N_DEL4=2 # namelist default is -1 +export PEAK_FAC=1. # namelist default is 1.05 +export ZERO_OCEAN=.false. # namelist default is .true. + +# ---------------------------------------- +# &namsfc +export FNALBC="'${ATMRES}.snowfree_albedo.tileX.nc'" +export FNALBC2="'${ATMRES}.facsf.tileX.nc'" +export FNTG3C="'${ATMRES}.substrate_temperature.tileX.nc'" +export FNVEGC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVETC="'${ATMRES}.vegetation_type.tileX.nc'" +export FNSOTC="'${ATMRES}.soil_type.tileX.nc'" +export FNSOCC="'${ATMRES}.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNVMXC="'${ATMRES}.vegetation_greenness.tileX.nc'" +export FNSLPC="'${ATMRES}.slope_type.tileX.nc'" +export FNABSC="'${ATMRES}.maximum_snow_albedo.tileX.nc'" + +export FNTSFA="' '" +export FNACNA="''" +export FNSNOA="''" + +export LANDICE=.false. + +# ---------------------------------------- +# Select input files and resources for the regression test system. + +# Select model_configure template: +export MODEL_CONFIGURE=model_configure_gnv1.IN + +# Select input.nml template: +export INPUT_NML=input_global_parent.nml.IN + +# Select input_nest02.nml template: +export INPUT_NEST02_NML=input_global_nest.nml.IN + +# Select the field_table. + +# NOTE: The global_nest_v1 uses prognostic sigma, so this should be +# the progsigma field table. HOWEVER, the code turns it off +# automatically for this resolution. Hence, we turn it off here so +# we're not advecting a grid of 0 + +export FIELD_TABLE=field_table_thompson_aero_tke + +# Request additional contents in diag_table for gravity wave diagnostics: +export DIAG_TABLE_ADDITIONAL=diag_additional_ldiag3d_ugwp + +# Override atmosphere compute task count to include the nest (tile 7). +# Note that NTILES=6, which is the size of the global mosaic. +export GRID_PES="$(( INPES * JNPES * 6 )),$(( INPES_NEST02 * JNPES_NEST02 ))" +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 )) diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index 123d5b976c..fef76044e1 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -63,9 +63,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -89,7 +87,7 @@ export DLON_2=0.25 export DLAT_2=0.25 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 @@ -142,14 +140,13 @@ export FULL_ZS_FILTER=.false. export N_ZS_FILTER=0 export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_global_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_global_1nest_atm_qr b/tests/tests/hafs_global_1nest_atm_qr deleted file mode 100644 index eb9e609784..0000000000 --- a/tests/tests/hafs_global_1nest_atm_qr +++ /dev/null @@ -1,155 +0,0 @@ -############################################################################### -# -# HAFS global with 1 nest and atmosphere only -# -############################################################################### - -export TEST_DESCR="Compare HAFS global with 1 nest and atmosphere only results with previous trunk version" - -export CNTL_DIR=hafs_global_1nest_atm - -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - atm.nest02.f006.nc \ - sfc.nest02.f006.nc \ - RESTART/20200825.180000.coupler.res \ - RESTART/20200825.180000.fv_core.res.nc \ - RESTART/20200825.180000.fv_core.res.nest02.nc \ - RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_core.res.tile1.nc \ - RESTART/20200825.180000.fv_core.res.tile2.nc \ - RESTART/20200825.180000.fv_core.res.tile3.nc \ - RESTART/20200825.180000.fv_core.res.tile4.nc \ - RESTART/20200825.180000.fv_core.res.tile5.nc \ - RESTART/20200825.180000.fv_core.res.tile6.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_tracer.res.tile1.nc \ - RESTART/20200825.180000.fv_tracer.res.tile2.nc \ - RESTART/20200825.180000.fv_tracer.res.tile3.nc \ - RESTART/20200825.180000.fv_tracer.res.tile4.nc \ - RESTART/20200825.180000.fv_tracer.res.tile5.nc \ - RESTART/20200825.180000.fv_tracer.res.tile6.nc \ - RESTART/20200825.180000.phy_data.nest02.tile7.nc \ - RESTART/20200825.180000.phy_data.tile1.nc \ - RESTART/20200825.180000.phy_data.tile2.nc \ - RESTART/20200825.180000.phy_data.tile3.nc \ - RESTART/20200825.180000.phy_data.tile4.nc \ - RESTART/20200825.180000.phy_data.tile5.nc \ - RESTART/20200825.180000.phy_data.tile6.nc \ - RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ - RESTART/20200825.180000.sfc_data.tile1.nc \ - RESTART/20200825.180000.sfc_data.tile2.nc \ - RESTART/20200825.180000.sfc_data.tile3.nc \ - RESTART/20200825.180000.sfc_data.tile4.nc \ - RESTART/20200825.180000.sfc_data.tile5.nc \ - RESTART/20200825.180000.sfc_data.tile6.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc" - -export_fv3 -export_hafs - -export HAFS=true -export FHMAX=6 -export RESTART_N=${FHMAX} -export atm_omp_num_threads=2 -export DT_ATMOS=90 -export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 -export OUTPUT_FILE="'netcdf' 'netcdf'" -export SDAY=25 -export SHOUR=12 -export SMONTH=08 -export SYEAR=2020 -export WRTTASK_PER_GROUP=60 -export NTILES=6 - -export QUILTING_RESTART=.true. -export OUTPUT_GRID='global_latlon' -export IMO=360 -export JMO=181 - -export OUTPUT_GRID_2='rotated_latlon' -export CEN_LON_2=-86.0 -export CEN_LAT_2=23.0 -export LON1_2=-45.00 -export LAT1_2=-40.00 -export LON2_2=45.00 -export LAT2_2=40.00 -export DLON_2=0.25 -export DLAT_2=0.25 - -export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" -export DEFLATE_LEVEL=-1 -export INPES=4 -export JNPES=5 -export NPX=97 -export NPY=97 -export NPZ=64 -export NPZP=$(($NPZ + 1)) -export K_SPLIT=4 -export N_SPLIT=5 -export NWAT=6 -export NA_INIT=1 -export EXTERNAL_IC=.true. -export NGGPS_IC=.true. -export MOUNTAIN=.false. -export WARM_START=.false. -export TARGET_LAT="23.0" -export TARGET_LON="-86.0" -export STRETCH_FAC=1.0001 -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export GRID_PES="120,60" -export TILE_COARSE="0,6" -export NUM_TILE_TOP=6 -export NEST_REFINE="0,3" -export NEST_IOFFSETS="1,9" -export NEST_JOFFSETS="1,9" - -export FHCYC=0 -export FHSWR=1800 -export FHLWR=1800 -export NSTF_NAME=2,0,0,0,0 -export CPLFLX=.false. -export CPLOCN2ATM=.true. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPL_IMP_MRG=.false. - -export INPES_NEST02=6 -export JNPES_NEST02=10 -export NPX_NEST02=241 -export NPY_NEST02=241 -export K_SPLIT_NEST02=4 -export N_SPLIT_NEST02=5 - -ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 )) - -export NESTED=.true. -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" - -export FIELD_TABLE=field_table_hafs -export DIAG_TABLE=diag_table_hafs_template -export INPUT_NML=input_global_hafs.nml.IN -export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index a9a60fdc9d..868d18ef36 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -97,9 +97,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -155,7 +153,7 @@ export DLON_5=0.05 export DLAT_5=0.05 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 @@ -229,8 +227,8 @@ export FULL_ZS_FILTER=.false. export N_ZS_FILTER=0 export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template @@ -239,10 +237,6 @@ export INPUT_NEST02_NML=input_nest_hafs.nml.IN export INPUT_NEST03_NML=input_nest_hafs.nml.IN export INPUT_NEST04_NML=input_nest_hafs.nml.IN export INPUT_NEST05_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_global_multiple_4nests_atm_qr b/tests/tests/hafs_global_multiple_4nests_atm_qr deleted file mode 100644 index 57a8914d7b..0000000000 --- a/tests/tests/hafs_global_multiple_4nests_atm_qr +++ /dev/null @@ -1,249 +0,0 @@ -############################################################################### -# -# HAFS global with 4 multiple nests and atmosphere only -# -############################################################################### - -export TEST_DESCR="Compare HAFS global with 4 multiple nests and atmosphere only results with previous trunk version" - -export CNTL_DIR=hafs_global_multiple_4nests_atm - -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - atm.nest02.f006.nc \ - sfc.nest02.f006.nc \ - atm.nest03.f006.nc \ - sfc.nest03.f006.nc \ - atm.nest04.f006.nc \ - sfc.nest04.f006.nc \ - atm.nest05.f006.nc \ - sfc.nest05.f006.nc \ - HURPRS.GrbF06 \ - HURPRS.GrbF06.nest02 \ - HURPRS.GrbF06.nest03 \ - HURPRS.GrbF06.nest04 \ - HURPRS.GrbF06.nest05 \ - RESTART/20200825.180000.coupler.res \ - RESTART/20200825.180000.fv_core.res.nc \ - RESTART/20200825.180000.fv_core.res.nest02.nc \ - RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_core.res.nest03.nc \ - RESTART/20200825.180000.fv_core.res.nest03.tile8.nc \ - RESTART/20200825.180000.fv_core.res.nest04.nc \ - RESTART/20200825.180000.fv_core.res.nest04.tile9.nc \ - RESTART/20200825.180000.fv_core.res.nest05.nc \ - RESTART/20200825.180000.fv_core.res.nest05.tile10.nc \ - RESTART/20200825.180000.fv_core.res.tile1.nc \ - RESTART/20200825.180000.fv_core.res.tile2.nc \ - RESTART/20200825.180000.fv_core.res.tile3.nc \ - RESTART/20200825.180000.fv_core.res.tile4.nc \ - RESTART/20200825.180000.fv_core.res.tile5.nc \ - RESTART/20200825.180000.fv_core.res.tile6.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ - RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc \ - RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc \ - RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc \ - RESTART/20200825.180000.fv_tracer.res.tile1.nc \ - RESTART/20200825.180000.fv_tracer.res.tile2.nc \ - RESTART/20200825.180000.fv_tracer.res.tile3.nc \ - RESTART/20200825.180000.fv_tracer.res.tile4.nc \ - RESTART/20200825.180000.fv_tracer.res.tile5.nc \ - RESTART/20200825.180000.fv_tracer.res.tile6.nc \ - RESTART/20200825.180000.phy_data.nest02.tile7.nc \ - RESTART/20200825.180000.phy_data.nest03.tile8.nc \ - RESTART/20200825.180000.phy_data.nest04.tile9.nc \ - RESTART/20200825.180000.phy_data.nest05.tile10.nc \ - RESTART/20200825.180000.phy_data.tile1.nc \ - RESTART/20200825.180000.phy_data.tile2.nc \ - RESTART/20200825.180000.phy_data.tile3.nc \ - RESTART/20200825.180000.phy_data.tile4.nc \ - RESTART/20200825.180000.phy_data.tile5.nc \ - RESTART/20200825.180000.phy_data.tile6.nc \ - RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ - RESTART/20200825.180000.sfc_data.nest03.tile8.nc \ - RESTART/20200825.180000.sfc_data.nest04.tile9.nc \ - RESTART/20200825.180000.sfc_data.nest05.tile10.nc \ - RESTART/20200825.180000.sfc_data.tile1.nc \ - RESTART/20200825.180000.sfc_data.tile2.nc \ - RESTART/20200825.180000.sfc_data.tile3.nc \ - RESTART/20200825.180000.sfc_data.tile4.nc \ - RESTART/20200825.180000.sfc_data.tile5.nc \ - RESTART/20200825.180000.sfc_data.tile6.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_ne.res.nest03.nc \ - RESTART/fv_BC_ne.res.nest04.nc \ - RESTART/fv_BC_ne.res.nest05.nc \ - RESTART/fv_BC_sw.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest03.nc \ - RESTART/fv_BC_sw.res.nest04.nc \ - RESTART/fv_BC_sw.res.nest05.nc" - -export_fv3 -export_hafs - -export HAFS=true -export FHMAX=6 -export RESTART_N=${FHMAX} -export atm_omp_num_threads=2 -export DT_ATMOS=90 -export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 -export OUTPUT_FILE="'netcdf' 'netcdf'" -export SDAY=25 -export SHOUR=12 -export SMONTH=08 -export SYEAR=2020 -export WRTTASK_PER_GROUP=60 -export WRITE_DOPOST=.true. -export POSTAPP='hafs' -export NTILES=6 - -export QUILTING_RESTART=.true. -export OUTPUT_GRID='global_latlon' -export IMO=360 -export JMO=181 - -export OUTPUT_GRID_2='regional_latlon' -export CEN_LON_2=-175.0 -export CEN_LAT_2=0.0 -export LON1_2=-220.00 -export LAT1_2=-45.00 -export LON2_2=-130.00 -export LAT2_2=45.00 -export DLON_2=0.25 -export DLAT_2=0.25 - -export OUTPUT_GRID_3='rotated_latlon' -export CEN_LON_3=-86.0 -export CEN_LAT_3=23.0 -export LON1_3=-45.00 -export LAT1_3=-40.00 -export LON2_3=45.00 -export LAT2_3=40.00 -export DLON_3=0.25 -export DLAT_3=0.25 - -export OUTPUT_GRID_4='rotated_latlon' -export CEN_LON_4=-86.0 -export CEN_LAT_4=23.0 -export LON1_4=-45.00 -export LAT1_4=-40.00 -export LON2_4=45.00 -export LAT2_4=40.00 -export DLON_4=0.1 -export DLAT_4=0.1 - -export OUTPUT_GRID_5='rotated_latlon' -export CEN_LON_5=-86.0 -export CEN_LAT_5=23.0 -export LON1_5=-35.00 -export LAT1_5=-30.00 -export LON2_5=35.00 -export LAT2_5=30.00 -export DLON_5=0.05 -export DLAT_5=0.05 - -export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" -export DEFLATE_LEVEL=-1 -export INPES=4 -export JNPES=5 -export NPX=97 -export NPY=97 -export NPZ=64 -export NPZP=$(($NPZ + 1)) -export K_SPLIT=4 -export N_SPLIT=5 -export NWAT=6 -export NA_INIT=1 -export EXTERNAL_IC=.true. -export NGGPS_IC=.true. -export MOUNTAIN=.false. -export WARM_START=.false. -export TARGET_LAT="23.0" -export TARGET_LON="-86.0" -export STRETCH_FAC=1.0001 -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export GRID_PES="120,60,60,60,60" -export TILE_COARSE="0,2,6,8,9" -export NUM_TILE_TOP=6 -export NEST_REFINE="0,3,3,3,3" -export NEST_IOFFSETS="1,9,9,61,121" -export NEST_JOFFSETS="1,9,9,61,121" - -export FHCYC=0 -export FHSWR=1800 -export FHLWR=1800 -export NSTF_NAME=2,0,0,0,0 -export CPLFLX=.false. -export CPLOCN2ATM=.true. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPL_IMP_MRG=.false. - -export INPES_NEST02=6 -export JNPES_NEST02=10 -export NPX_NEST02=241 -export NPY_NEST02=241 -export K_SPLIT_NEST02=4 -export N_SPLIT_NEST02=5 - -export INPES_NEST03=6 -export JNPES_NEST03=10 -export NPX_NEST03=241 -export NPY_NEST03=241 -export K_SPLIT_NEST03=4 -export N_SPLIT_NEST03=5 - -export INPES_NEST04=6 -export JNPES_NEST04=10 -export NPX_NEST04=361 -export NPY_NEST04=361 -export K_SPLIT_NEST04=4 -export N_SPLIT_NEST04=5 - -export INPES_NEST05=6 -export JNPES_NEST05=10 -export NPX_NEST05=361 -export NPY_NEST05=361 -export K_SPLIT_NEST05=4 -export N_SPLIT_NEST05=5 - -ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 + INPES_NEST03*JNPES_NEST03 + INPES_NEST04*JNPES_NEST04 + INPES_NEST05*JNPES_NEST05 )) - -export NESTED=.true. -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" - -export FIELD_TABLE=field_table_hafs -export DIAG_TABLE=diag_table_hafs_template -export INPUT_NML=input_global_hafs.nml.IN -export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export INPUT_NEST03_NML=input_nest_hafs.nml.IN -export INPUT_NEST04_NML=input_nest_hafs.nml.IN -export INPUT_NEST05_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/hafs_global_storm_following_1nest_atm b/tests/tests/hafs_global_storm_following_1nest_atm index cffe0f361a..00bf0ca217 100644 --- a/tests/tests/hafs_global_storm_following_1nest_atm +++ b/tests/tests/hafs_global_storm_following_1nest_atm @@ -23,9 +23,7 @@ export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -49,7 +47,7 @@ export DLON_2=0.25 export DLAT_2=0.25 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 @@ -107,14 +105,13 @@ export FULL_ZS_FILTER=.false. export N_ZS_FILTER=0 export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_global_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index e59d4219c7..e032112d5c 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -37,9 +37,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -68,7 +66,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -120,14 +118,13 @@ export N_SPLIT_NEST02=5 ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_regional_1nest_atm_qr b/tests/tests/hafs_regional_1nest_atm_qr deleted file mode 100644 index 5042a36dca..0000000000 --- a/tests/tests/hafs_regional_1nest_atm_qr +++ /dev/null @@ -1,134 +0,0 @@ -############################################################################### -# -# HAFS regional with 1 nest and atmosphere only -# -############################################################################### - -export TEST_DESCR="Compare HAFS regional with 1 nest and atmosphere only results with previous trunk version" - -export CNTL_DIR=hafs_regional_1nest_atm - -export LIST_FILES="atmf006.nc \ - sfcf006.nc \ - atm.nest02.f006.nc \ - sfc.nest02.f006.nc \ - RESTART/20200825.180000.coupler.res \ - RESTART/20200825.180000.fv_core.res.nc \ - RESTART/20200825.180000.fv_core.res.nest02.nc \ - RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_core.res.tile1.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_tracer.res.tile1.nc \ - RESTART/20200825.180000.phy_data.nc \ - RESTART/20200825.180000.phy_data.nest02.tile2.nc \ - RESTART/20200825.180000.sfc_data.nc \ - RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc" - -export_fv3 -export_hafs - -export HAFS=true -export FHMAX=6 -export RESTART_N=${FHMAX} -export atm_omp_num_threads=2 -export DT_ATMOS=90 -export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 -export OUTPUT_FILE="'netcdf' 'netcdf'" -export SDAY=25 -export SHOUR=12 -export SMONTH=08 -export SYEAR=2020 -export WRTTASK_PER_GROUP=60 - -export QUILTING_RESTART=.true. -export OUTPUT_GRID='rotated_latlon' -export CEN_LON=-86.0 -export CEN_LAT=23.0 -export LON1=-45.00 -export LAT1=-40.00 -export LON2=45.00 -export LAT2=40.00 -export DLON=0.25 -export DLAT=0.25 - -export OUTPUT_GRID_2='rotated_latlon' -export CEN_LON_2=-86.0 -export CEN_LAT_2=23.0 -export LON1_2=-45.00 -export LAT1_2=-40.00 -export LON2_2=45.00 -export LAT2_2=40.00 -export DLON_2=0.1 -export DLAT_2=0.1 - -export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" -export DEFLATE_LEVEL=-1 -export INPES=6 -export JNPES=10 -export NPX=241 -export NPY=241 -export NPZ=64 -export NPZP=$(($NPZ + 1)) -export K_SPLIT=4 -export N_SPLIT=5 -export NWAT=6 -export NA_INIT=1 -export EXTERNAL_IC=.true. -export NGGPS_IC=.true. -export MOUNTAIN=.false. -export WARM_START=.false. -export TARGET_LAT="23.0" -export TARGET_LON="-86.0" -export STRETCH_FAC=1.0001 -export REGIONAL=.true. -export BC_UPDATE_INTERVAL=3 -export NROWS_BLEND=10 -export FULL_ZS_FILTER=.false. -export N_ZS_FILTER=0 - -export GRID_PES="60,60" -export TILE_COARSE="0,1" -export NUM_TILE_TOP=1 -export NEST_REFINE="0,3" -export NEST_IOFFSETS="999,61" -export NEST_JOFFSETS="999,61" - -export FHCYC=0 -export FHSWR=1800 -export FHLWR=1800 -export NSTF_NAME=2,0,0,0,0 -export CPLFLX=.false. -export CPLOCN2ATM=.true. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPL_IMP_MRG=.false. - -export INPES_NEST02=6 -export JNPES_NEST02=10 -export NPX_NEST02=361 -export NPY_NEST02=361 -export K_SPLIT_NEST02=4 -export N_SPLIT_NEST02=5 - -ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) - -export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" - -export FIELD_TABLE=field_table_hafs -export DIAG_TABLE=diag_table_hafs_template -export INPUT_NML=input_regional_hafs.nml.IN -export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm index 0e057a77c2..bc75d82dc4 100644 --- a/tests/tests/hafs_regional_atm +++ b/tests/tests/hafs_regional_atm @@ -21,9 +21,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -44,7 +42,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -87,12 +85,12 @@ export CPLWAV2ATM=.false. export CPL_IMP_MRG=.false. export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn index b372f50f45..7ec5159cdc 100644 --- a/tests/tests/hafs_regional_atm_ocn +++ b/tests/tests/hafs_regional_atm_ocn @@ -24,9 +24,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -45,7 +43,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -90,15 +88,15 @@ export CPL_IMP_MRG=.true. export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 -export atm_model="fv3" -export ocn_model="hycom" +export atm_model=fv3 +export ocn_model=hycom OCN_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index b34eed8fd5..5fab96a158 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -26,9 +26,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -47,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -92,17 +90,17 @@ export CPL_IMP_MRG=.true. export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 -export atm_model="fv3" -export ocn_model="hycom" -export wav_model="ww3" +export atm_model=fv3 +export ocn_model=hycom +export wav_model=ww3 OCN_tasks=60 WAV_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_atm_thompson_gfdlsf b/tests/tests/hafs_regional_atm_thompson_gfdlsf index 530d7c8683..8b19ff6aa1 100644 --- a/tests/tests/hafs_regional_atm_thompson_gfdlsf +++ b/tests/tests/hafs_regional_atm_thompson_gfdlsf @@ -21,9 +21,7 @@ export atm_omp_num_threads=2 export DT_ATMOS=180 export DT_INNER=${DT_ATMOS} export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -34,7 +32,7 @@ export WRTTASK_PER_GROUP=60 export OUTPUT_GRID='cubed_sphere_grid' export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_thompson_tedmf_gfdlsf" +export CCPP_SUITE=FV3_HAFS_v1_thompson_tedmf_gfdlsf export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -80,12 +78,12 @@ export CPLWAV2ATM=.false. export CPL_IMP_MRG=.false. export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs_thompson export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 121c7f0ebb..588af2cc02 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -24,9 +24,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -45,7 +43,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -90,18 +88,17 @@ export CPL_IMP_MRG=.true. export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 -export atm_model="fv3" -export ocn_model="" -export wav_model="ww3" +export atm_model=fv3 +export wav_model=ww3 WAV_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset # ATM-WAV coupling only -export WAV_CUR='F' +export WW3_CUR='F' export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_wav.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_wav.IN export FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_datm_cdeps b/tests/tests/hafs_regional_datm_cdeps index ba2d34824b..1c4c58fb50 100644 --- a/tests/tests/hafs_regional_datm_cdeps +++ b/tests/tests/hafs_regional_datm_cdeps @@ -23,17 +23,17 @@ export CPLWAV=.false. export OCEAN_START_DTG=43340.00000 export DOCN_CDEPS=false -export ocn_model="hycom" +export ocn_model=hycom ATM_compute_tasks=60 OCN_tasks=60 export coupling_interval_sec=360 -export atm_datamode="ERA5" -export MESH_ATM="INPUT_DATM/TL639_200618_ESMFmesh.nc" -export DATA_ATM="\"INPUT_DATM/ERA5.TL639.2019.08.200618_subset.nc\" \"INPUT_DATM/ERA5.TL639.2019.09.200618_subset.nc\"" +export atm_datamode=ERA5 +export MESH_ATM=TL639_200618_ESMFmesh.nc +export DATA_ATM="\"INPUT/ERA5.TL639.2019.08.200618_subset.nc\" \"INPUT/ERA5.TL639.2019.09.200618_subset.nc\"" export ATM_NX_GLB=1440 export ATM_NY_GLB=721 -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn.IN export FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_docn b/tests/tests/hafs_regional_docn index f57dff0fab..cf63e3c3e2 100644 --- a/tests/tests/hafs_regional_docn +++ b/tests/tests/hafs_regional_docn @@ -24,9 +24,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -45,7 +43,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -87,22 +85,22 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export atm_model="fv3" -export ocn_model="docn" +export atm_model=fv3 +export ocn_model=docn ATM_compute_tasks=240 OCN_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" -export ocn_mesh="INPUT_DOCN/hat10_210129_ESMFmesh_py.nc" -export ocn_data="INPUT_DOCN/hycom_201908_surf_nolev.nc" -export ocn_data_var="temp" +export MESH_ATM=unset +export MESH_OCN=hat10_210129_ESMFmesh_py.nc +export ocn_data="INPUT/hycom_201908_surf_nolev.nc" +export ocn_data_var=temp export ocn_nx_global=1135 export ocn_ny_global=633 export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_docn.IN export FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_mom6.IN" diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst index 457172714e..5daf17b36d 100644 --- a/tests/tests/hafs_regional_docn_oisst +++ b/tests/tests/hafs_regional_docn_oisst @@ -24,9 +24,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 @@ -45,7 +43,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -87,22 +85,22 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export atm_model="fv3" -export ocn_model="docn" +export atm_model=fv3 +export ocn_model=docn ATM_compute_tasks=240 OCN_tasks=60 export coupling_interval_sec=360 -export MESH_ATM="unset" -export ocn_mesh="INPUT_DOCN/TX025_210327_ESMFmesh_py.nc" -export ocn_data="INPUT_DOCN/sst.day.mean.2019.nc" -export ocn_data_var="sst" +export MESH_ATM=unset +export MESH_OCN=TX025_210327_ESMFmesh_py.nc +export ocn_data="INPUT/sst.day.mean.2019.nc" +export ocn_data_var=sst export ocn_nx_global=1440 export ocn_ny_global=720 export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_docn.IN export FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_oisst.IN" diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm index 2429769f23..c97013a787 100644 --- a/tests/tests/hafs_regional_specified_moving_1nest_atm +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -24,9 +24,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -53,7 +51,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -110,17 +108,14 @@ export N_SPLIT_NEST02=5 ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm index 40fd6ada69..86bcd9a155 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -37,9 +37,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -64,7 +62,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -121,14 +119,13 @@ export N_SPLIT_NEST02=5 ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn index d1fe55ad09..ea93a7bcbd 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn @@ -24,9 +24,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -51,7 +49,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -105,7 +103,7 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -# nems.configure +# ufs.configure export med_model=cmeps export CAP_DBUG_FLAG=0 export RESTART_N=${FHMAX} @@ -116,8 +114,8 @@ export USE_COLDSTART=false export CDEPS_DOCN=false export OCEAN_START_DTG=43702.50000 -export atm_model="fv3" -export ocn_model="hycom" +export atm_model=fv3 +export ocn_model=hycom ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) OCN_tasks=60 @@ -127,12 +125,12 @@ export med_omp_num_threads=2 export ocn_omp_num_threads=2 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug index 3c2330bf76..5c154521f5 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug @@ -22,9 +22,7 @@ export FHMAX=1 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=1 -export NFHOUT=1 +export OUTPUT_FH='1 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -49,7 +47,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -103,7 +101,7 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -# nems.configure +# ufs.configure export med_model=cmeps export CAP_DBUG_FLAG=0 export RESTART_N=${FHMAX} @@ -114,8 +112,8 @@ export USE_COLDSTART=false export CDEPS_DOCN=false export OCEAN_START_DTG=43702.50000 -export atm_model="fv3" -export ocn_model="hycom" +export atm_model=fv3 +export ocn_model=hycom ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) OCN_tasks=60 @@ -125,12 +123,12 @@ export med_omp_num_threads=2 export ocn_omp_num_threads=2 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav index 9f8a594ed9..01e0e6985e 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav @@ -26,9 +26,7 @@ export FHMAX=6 export RESTART_N=${FHMAX} export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -57,7 +55,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -111,7 +109,7 @@ export CPLWAV=.true. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -# nems.configure +# ufs.configure export med_model=cmeps export CAP_DBUG_FLAG=0 export RESTART_N=${FHMAX} @@ -122,9 +120,9 @@ export USE_COLDSTART=false export CDEPS_DOCN=false export OCEAN_START_DTG=43702.50000 -export atm_model="fv3" -export ocn_model="hycom" -export wav_model="ww3" +export atm_model=fv3 +export ocn_model=hycom +export wav_model=ww3 ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) OCN_tasks=60 @@ -136,12 +134,12 @@ export ocn_omp_num_threads=2 export wav_omp_num_threads=2 export coupling_interval_sec=360 -export MESH_ATM="unset" +export MESH_ATM=unset export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav.IN" +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav.IN export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_qr b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline similarity index 56% rename from tests/tests/hafs_regional_storm_following_1nest_atm_qr rename to tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline index aaf2e3b1f6..796c165057 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_qr +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline @@ -1,45 +1,32 @@ ############################################################################### # -# HAFS regional with 1 storm-following moving nest and atmosphere only +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled with HYCOM and WW3 through CMEPS with inline CDEPS # ############################################################################### -export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version" +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave cmeps_inline_cdeps coupled results with previous trunk version" -export CNTL_DIR=hafs_regional_storm_following_1nest_atm +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_inline export LIST_FILES="atmf006.nc \ sfcf006.nc \ atm.nest02.f006.nc \ sfc.nest02.f006.nc \ - RESTART/20200825.180000.coupler.res \ - RESTART/20200825.180000.fv_core.res.nc \ - RESTART/20200825.180000.fv_core.res.nest02.nc \ - RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_core.res.tile1.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ - RESTART/20200825.180000.fv_tracer.res.tile1.nc \ - RESTART/20200825.180000.phy_data.nc \ - RESTART/20200825.180000.phy_data.nest02.tile2.nc \ - RESTART/20200825.180000.sfc_data.nc \ - RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ - RESTART/fv_BC_ne.res.nest02.nc \ - RESTART/fv_BC_sw.res.nest02.nc" + archv.2020_238_18.a \ + archs.2020_238_18.a \ + 20200825.180000.out_grd.ww3 \ + 20200825.180000.out_pnt.ww3" export_fv3 export_hafs +export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export atm_omp_num_threads=2 export DT_ATMOS=180 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -47,7 +34,6 @@ export SMONTH=08 export SYEAR=2020 export WRTTASK_PER_GROUP=60 -export QUILTING_RESTART=.true. export OUTPUT_GRID='rotated_latlon' export CEN_LON=-86.3 export CEN_LAT=23.3 @@ -58,14 +44,18 @@ export LAT2=40.00 export DLON=0.25 export DLAT=0.25 -export OUTPUT_GRID_2='rotated_latlon_moving' -export IMO_2=501 -export JMO_2=501 +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -102,16 +92,6 @@ export NTRACK="0,5" export MOVE_CD_X="0,0" export MOVE_CD_Y="0,0" -export FHCYC=0 -export FHSWR=1800 -export FHLWR=1800 -export NSTF_NAME=2,0,0,0,0 -export CPLFLX=.false. -export CPLOCN2ATM=.true. -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export CPL_IMP_MRG=.false. - export INPES_NEST02=6 export JNPES_NEST02=10 export NPX_NEST02=361 @@ -119,17 +99,55 @@ export NPY_NEST02=361 export K_SPLIT_NEST02=4 export N_SPLIT_NEST02=5 +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# ufs.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43702.50000 + +export atm_model=fv3 +export ocn_model=hycom +export wav_model=ww3 + ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) +OCN_tasks=60 +WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 -export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export coupling_interval_sec=360 +export MESH_ATM=unset + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="INPUT/gfs_forcings.nc" +export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" +export STREAM_OFFSET=0 export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_inline.IN +export CDEPS_INLINE_CONFIGURE=stream.config_hycom.IN +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 new file mode 100644 index 0000000000..60ce05b605 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -0,0 +1,152 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled with MOM6 and WW3 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and fv3-mom6-ww3 coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 + +export LIST_FILES="atmf003.nc \ + sfcf003.nc \ + atm.nest02.f003.nc \ + sfc.nest02.f003.nc \ + ocn_2020_08_25_15.nc \ + 20200825.150000.out_grd.ww3 \ + 20200825.150000.out_pnt.ww3" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=3 +export RESTART_N=${FHMAX} +export DT_ATMOS=180 +export IDEFLATE=1 +export OUTPUT_FH='3 -1' +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# ufs.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs.mom6 +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false + +export atm_model=fv3 +export ocn_model=mom6 +export wav_model=ww3 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) +OCN_tasks=60 +WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 + +export coupling_interval_sec=360 +export MESH_ATM=unset +export MESH_OCN=INPUT/mom6_mesh.nc + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="INPUT/gfs_forcings.nc" +export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" +export STREAM_OFFSET=0 + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_mom6.IN +export CDEPS_INLINE_CONFIGURE=stream.config_mom6.IN +export FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_telescopic_2nests_atm b/tests/tests/hafs_regional_telescopic_2nests_atm index 033769df84..b2dbfbab9c 100644 --- a/tests/tests/hafs_regional_telescopic_2nests_atm +++ b/tests/tests/hafs_regional_telescopic_2nests_atm @@ -24,9 +24,7 @@ export RESTART_N=${FHMAX} export atm_omp_num_threads=2 export DT_ATMOS=90 export IDEFLATE=1 -export NFHMAX_HF=-1 -export NFHOUT_HF=3 -export NFHOUT=3 +export OUTPUT_FH='3 -1' export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 @@ -65,7 +63,7 @@ export DLON_3=0.05 export DLAT_3=0.05 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -124,15 +122,14 @@ export N_SPLIT_NEST03=5 ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 + INPES_NEST03*JNPES_NEST03 )) export CMEPS=false -export RUNTYPE="startup" -export USE_COLDSTART="false" +export RUNTYPE=startup +export USE_COLDSTART=false export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN export INPUT_NEST03_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs.IN" -export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" -export FV3_RUN="hafs_fv3_run.IN" - +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm.IN +export FV3_RUN=hafs_fv3_run.IN diff --git a/tests/tests/hrrr_c3_debug b/tests/tests/hrrr_c3_debug new file mode 100644 index 0000000000..5803873597 --- /dev/null +++ b/tests/tests/hrrr_c3_debug @@ -0,0 +1,24 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" + +export CNTL_DIR=hrrr_c3_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 1' +export FHMAX=1 +export CCPP_SUITE=FV3_HRRR_c3 +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=5 +export IMFDEEPCNV=5 diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 7e78491304..7d2dd7f880 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -53,59 +53,6 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index 008ca80846..a74ab76253 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -53,65 +53,11 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - +export_hrrr export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index a53cdd4a5c..a92253d796 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -53,66 +53,12 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' +export_hrrr export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_debug b/tests/tests/hrrr_control_debug index c03bd04b3e..9f3f799d85 100644 --- a/tests/tests/hrrr_control_debug +++ b/tests/tests/hrrr_control_debug @@ -13,58 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_hrrr +export WRITE_DOPOST=.false. export OUTPUT_FH='0 1' export FHMAX=1 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_debug_dyn32_phy32 b/tests/tests/hrrr_control_debug_dyn32_phy32 index e0b1820c88..55159dca75 100644 --- a/tests/tests/hrrr_control_debug_dyn32_phy32 +++ b/tests/tests/hrrr_control_debug_dyn32_phy32 @@ -13,58 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_hrrr +export WRITE_DOPOST=.false. export OUTPUT_FH='0 1' export FHMAX=1 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp index ff5a897919..576ef14c92 100644 --- a/tests/tests/hrrr_control_decomp +++ b/tests/tests/hrrr_control_decomp @@ -53,62 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - +export_hrrr export INPES=6 export JNPES=4 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export RESTART_INTERVAL="6 -1" +export OUTPUT_FH='0 09 12' diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 index d4b1c516df..fbc4c6b0b9 100644 --- a/tests/tests/hrrr_control_decomp_dyn32_phy32 +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -53,63 +53,9 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr +export INPES=6 +export JNPES=4 export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export INPES=6 -export JNPES=4 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 index 04669a8a64..3decb226b8 100644 --- a/tests/tests/hrrr_control_dyn32_phy32 +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -53,60 +53,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_qr b/tests/tests/hrrr_control_noqr similarity index 71% rename from tests/tests/hrrr_control_qr rename to tests/tests/hrrr_control_noqr index 24a1372c0a..1531458c38 100644 --- a/tests/tests/hrrr_control_qr +++ b/tests/tests/hrrr_control_noqr @@ -53,59 +53,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.120000.sfc_data.tile5.nc \ RESTART/20210322.120000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_hrrr +export QUILTING_RESTART=.false. export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_qr_dyn32_phy32 b/tests/tests/hrrr_control_qr_dyn32_phy32 deleted file mode 100644 index 6c47bd7966..0000000000 --- a/tests/tests/hrrr_control_qr_dyn32_phy32 +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR clm lake test: atmosphere only at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version" - -export CNTL_DIR=hrrr_control_qr_dyn32_phy32 - -export LIST_FILES="sfcf000.nc \ - sfcf009.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf009.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF09 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF09 \ - GFSPRS.GrbF12 \ - RESTART/20210322.120000.coupler.res \ - RESTART/20210322.120000.fv_core.res.nc \ - RESTART/20210322.120000.fv_core.res.tile1.nc \ - RESTART/20210322.120000.fv_core.res.tile2.nc \ - RESTART/20210322.120000.fv_core.res.tile3.nc \ - RESTART/20210322.120000.fv_core.res.tile4.nc \ - RESTART/20210322.120000.fv_core.res.tile5.nc \ - RESTART/20210322.120000.fv_core.res.tile6.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.120000.fv_tracer.res.tile1.nc \ - RESTART/20210322.120000.fv_tracer.res.tile2.nc \ - RESTART/20210322.120000.fv_tracer.res.tile3.nc \ - RESTART/20210322.120000.fv_tracer.res.tile4.nc \ - RESTART/20210322.120000.fv_tracer.res.tile5.nc \ - RESTART/20210322.120000.fv_tracer.res.tile6.nc \ - RESTART/20210322.120000.phy_data.tile1.nc \ - RESTART/20210322.120000.phy_data.tile2.nc \ - RESTART/20210322.120000.phy_data.tile3.nc \ - RESTART/20210322.120000.phy_data.tile4.nc \ - RESTART/20210322.120000.phy_data.tile5.nc \ - RESTART/20210322.120000.phy_data.tile6.nc \ - RESTART/20210322.120000.sfc_data.tile1.nc \ - RESTART/20210322.120000.sfc_data.tile2.nc \ - RESTART/20210322.120000.sfc_data.tile3.nc \ - RESTART/20210322.120000.sfc_data.tile4.nc \ - RESTART/20210322.120000.sfc_data.tile5.nc \ - RESTART/20210322.120000.sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 09 12' -export FHMAX=12 -export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart index c37a7510bc..b26a55e100 100644 --- a/tests/tests/hrrr_control_restart +++ b/tests/tests/hrrr_control_restart @@ -13,66 +13,13 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 index 3edf8beb15..98220f5273 100644 --- a/tests/tests/hrrr_control_restart_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -13,67 +13,13 @@ export LIST_FILES="sfcf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_hrrr export FHROT=6 export FHMAX=12 - -export FRAC_GRID=.false. -export FRAC_ICE=.true. - export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_noqr b/tests/tests/hrrr_control_restart_noqr new file mode 100644 index 0000000000..ca2ed1f8b2 --- /dev/null +++ b/tests/tests/hrrr_control_restart_noqr @@ -0,0 +1,25 @@ +############################################################################### +# +# HRRR control test: atmosphere only at C96L127 with quilt restart +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version using quilting restart in atm" + +export CNTL_DIR=hrrr_control + +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12" + +export_hrrr +export FHROT=6 +export QUILTING_RESTART=.false. +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" diff --git a/tests/tests/hrrr_control_restart_qr b/tests/tests/hrrr_control_restart_qr deleted file mode 100644 index 85baaab6d4..0000000000 --- a/tests/tests/hrrr_control_restart_qr +++ /dev/null @@ -1,78 +0,0 @@ -############################################################################### -# -# HRRR restart test -# -############################################################################### - -export TEST_DESCR="Compare HRRR CLM Lake results with quilt control using quilting restart in atm" - -export CNTL_DIR=hrrr_control - -export LIST_FILES="sfcf012.nc \ - atmf012.nc \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF12" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export FHROT=6 -export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. - -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_control_restart_qr_dyn32_phy32 b/tests/tests/hrrr_control_restart_qr_dyn32_phy32 deleted file mode 100644 index e43e586302..0000000000 --- a/tests/tests/hrrr_control_restart_qr_dyn32_phy32 +++ /dev/null @@ -1,79 +0,0 @@ -############################################################################### -# -# HRRR CLM Lake restart test -# -############################################################################### - -export TEST_DESCR="Compare HRRR CLM Lake restart results with control" - -export CNTL_DIR=hrrr_control_qr_dyn32_phy32 - -export LIST_FILES="sfcf012.nc \ - atmf012.nc \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF12" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export FHROT=6 -export FHMAX=12 -export QUILTING_RESTART=.true. -export FRAC_GRID=.false. -export FRAC_ICE=.true. - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export FV3_RUN=lake_control_run.IN -export CCPP_SUITE=FV3_HRRR -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export SFCLAY_COMPUTE_FLUX=.true. -export LHEATSTRG=.false. -export LKM=1 -export IOPT_LAKE=2 -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/hrrr_gf_debug b/tests/tests/hrrr_gf_debug new file mode 100644 index 0000000000..4e12956402 --- /dev/null +++ b/tests/tests/hrrr_gf_debug @@ -0,0 +1,24 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" + +export CNTL_DIR=hrrr_gf_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 1' +export FHMAX=1 +export CCPP_SUITE=FV3_HRRR_gf +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson index ba85464afc..ef206dab97 100644 --- a/tests/tests/merra2_thompson +++ b/tests/tests/merra2_thompson @@ -54,6 +54,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 +export_tiled export NPZ=127 export NPZP=128 export DT_ATMOS=600 @@ -67,7 +68,6 @@ export OUTPUT_GRID='gaussian_grid' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,19 +76,16 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 -# P8 export IOPT_SFC=3 export IOPT_TRS=2 export IOPT_DIAG=2 -# FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 export PSM_BC=1 -# P8 export DDDMP=0.1 -# P7 Merra2 Aerosols & NSST +# Merra2 Aerosols & NSST export USE_MERRA2=.true. export LTAEROSOL=.false. export MRAEROSOL=.true. @@ -98,7 +95,7 @@ export NSTF_NAME=2,1,0,0,0 export LHEATSTRG=.false. export LSEASPRAY=.true. -# P7 UGWP1 +# UGWP1 export GWD_OPT=2 export DO_UGWP_V1=.false. export KNOB_UGWP_VERSION=0 @@ -111,7 +108,7 @@ export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -# P7 CA +# CA export DO_CA=.true. export CA_SGS=.true. export CA_GLOBAL=.false. @@ -125,25 +122,6 @@ export CA_TRIGGER=.true. export NSPINUP=1 export ISEED_CA=12345 -# P7 settings -export TILEDFIX=.true. -export FNALBC="'C96.snowfree_albedo.tileX.nc'" -export FNALBC2="'C96.facsf.tileX.nc'" -export FNTG3C="'C96.substrate_temperature.tileX.nc'" -export FNVEGC="'C96.vegetation_greenness.tileX.nc'" -export FNVETC="'C96.vegetation_type.tileX.nc'" -export FNSOTC="'C96.soil_type.tileX.nc'" -export FNSOCC="'C96.soil_color.tileX.nc'" -export FNSMCC=${FNSMCC_control} -export FNMSKH=${FNMSKH_control} -export FNVMNC="'C96.vegetation_greenness.tileX.nc'" -export FNVMXC="'C96.vegetation_greenness.tileX.nc'" -export FNSLPC="'C96.slope_type.tileX.nc'" -export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" -export LANDICE=".false." -export FSICL=0 -export FSICS=0 - export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. @@ -154,7 +132,7 @@ export DZ_MIN=6 export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n -# P8 (not used for standalone) +# Following not used for standalone export USE_CICE_ALB=.false. export WRITE_NSFLIP=.true. @@ -163,15 +141,10 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_mr2 export DIAG_TABLE=diag_table_mr2 -# use same namelist for standalone,coupled P7 -export INPUT_NML=merra2_thompson.nml.IN +export INPUT_NML=global_control.nml.IN # RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. - -if [[ $MACHINE_ID = cheyenne ]]; then - TPN=18 -fi diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index 4b63c36c2c..ab5fdac9d6 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -53,55 +53,11 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 21 24' export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 index ffbc7318cf..8642231ad1 100644 --- a/tests/tests/rap_2threads_dyn32_phy32 +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -53,19 +53,8 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=24 @@ -73,36 +62,3 @@ export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_cires_ugwp_debug b/tests/tests/rap_cires_ugwp_debug index 5ec257675d..b9c3e12d54 100644 --- a/tests/tests/rap_cires_ugwp_debug +++ b/tests/tests/rap_cires_ugwp_debug @@ -13,41 +13,18 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 21 24' export FHMAX=1 export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN +export WRITE_DOPOST=.false. export CCPP_SUITE=FV3_RAP_cires_ugwp -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 +export GWD_OPT=1 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. diff --git a/tests/tests/rap_clm_lake_debug b/tests/tests/rap_clm_lake_debug index 79a5d70d63..1731c0c928 100644 --- a/tests/tests/rap_clm_lake_debug +++ b/tests/tests/rap_clm_lake_debug @@ -13,54 +13,13 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_rap export OUTPUT_FH='0 1' export FHMAX=1 export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_RAP_clm_lake -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap export LKM=1 export IOPT_LAKE=2 export FRAC_ICE=.true. - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_control b/tests/tests/rap_control index 6d62bec12c..a582afde57 100644 --- a/tests/tests/rap_control +++ b/tests/tests/rap_control @@ -53,50 +53,6 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 21 24' - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_control_debug b/tests/tests/rap_control_debug index 2a98c31adf..37ed3e65ad 100644 --- a/tests/tests/rap_control_debug +++ b/tests/tests/rap_control_debug @@ -13,50 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export WRITE_DOPOST=.false. diff --git a/tests/tests/rap_control_debug_dyn32_phy32 b/tests/tests/rap_control_debug_dyn32_phy32 index 0b03e91689..7480faa0ed 100644 --- a/tests/tests/rap_control_debug_dyn32_phy32 +++ b/tests/tests/rap_control_debug_dyn32_phy32 @@ -13,50 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export WRITE_DOPOST=.false. diff --git a/tests/tests/rap_control_dyn32_phy32 b/tests/tests/rap_control_dyn32_phy32 index 7f115435cc..6fc24723c4 100644 --- a/tests/tests/rap_control_dyn32_phy32 +++ b/tests/tests/rap_control_dyn32_phy32 @@ -52,52 +52,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile4.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=24 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_control_dyn64_phy32 b/tests/tests/rap_control_dyn64_phy32 index 3b979124de..fa64dbef64 100644 --- a/tests/tests/rap_control_dyn64_phy32 +++ b/tests/tests/rap_control_dyn64_phy32 @@ -53,51 +53,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210322.180000.sfc_data.tile5.nc \ RESTART/20210322.180000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_control_dyn64_phy32_debug b/tests/tests/rap_control_dyn64_phy32_debug index 1c2e0b77cd..1505d37e91 100644 --- a/tests/tests/rap_control_dyn64_phy32_debug +++ b/tests/tests/rap_control_dyn64_phy32_debug @@ -13,50 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export WRITE_DOPOST=.false. diff --git a/tests/tests/rap_decomp b/tests/tests/rap_decomp index a70eafea0e..926df2f42a 100644 --- a/tests/tests/rap_decomp +++ b/tests/tests/rap_decomp @@ -52,54 +52,9 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile4.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 21 24' export INPES=6 export JNPES=4 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_diag_debug b/tests/tests/rap_diag_debug index 747f914acc..05b98ee3cb 100644 --- a/tests/tests/rap_diag_debug +++ b/tests/tests/rap_diag_debug @@ -13,52 +13,10 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. +export WRITE_DOPOST=.false. export FHZERO=1 export LDIAG3D=.true. diff --git a/tests/tests/rap_flake_debug b/tests/tests/rap_flake_debug index 5f6d19f77a..0e7cf9c1ab 100644 --- a/tests/tests/rap_flake_debug +++ b/tests/tests/rap_flake_debug @@ -13,51 +13,14 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_RAP_flake -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export FRAC_ICE=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 export LKM=1 export IOPT_LAKE=1 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. diff --git a/tests/tests/rap_lndp_debug b/tests/tests/rap_lndp_debug index c33a17a728..c8e1966c63 100644 --- a/tests/tests/rap_lndp_debug +++ b/tests/tests/rap_lndp_debug @@ -13,52 +13,10 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. +export WRITE_DOPOST=.false. export LNDP_TYPE=2 export N_VAR_LNDP=6 diff --git a/tests/tests/rap_noah_debug b/tests/tests/rap_noah_debug index 97963ad660..b0b42fdc1f 100644 --- a/tests/tests/rap_noah_debug +++ b/tests/tests/rap_noah_debug @@ -13,47 +13,15 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_noah -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_rap_noah - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. +export IALB=1 +export IEMS=1 +export KICE=2 export LSM=1 export LSOIL_LSM=4 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug b/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug index 61744b596f..ad502a29cb 100644 --- a/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug +++ b/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug @@ -13,37 +13,26 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=150 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. -export FV3_RUN=control_run.IN +export DT_ATMOS=150 export CCPP_SUITE=FV3_RAP_noah_sfcdiff_cires_ugwp -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_rap_noah - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. +export IALB=1 +export IEMS=1 +export DO_MYNNSFCLAY=.false. export LSM=1 export LSOIL_LSM=4 +export KICE=2 +export GWD_OPT=1 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.false. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. diff --git a/tests/tests/rap_progcld_thompson_debug b/tests/tests/rap_progcld_thompson_debug index 38474e2956..176ff85b26 100644 --- a/tests/tests/rap_progcld_thompson_debug +++ b/tests/tests/rap_progcld_thompson_debug @@ -13,51 +13,8 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 +export WRITE_DOPOST=.false. export ICLOUD=3 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_restart b/tests/tests/rap_restart index bd1fd04961..c34094a235 100644 --- a/tests/tests/rap_restart +++ b/tests/tests/rap_restart @@ -45,18 +45,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_rap export FHROT=12 export WARM_START=.true. @@ -66,36 +55,4 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_restart_dyn32_phy32 b/tests/tests/rap_restart_dyn32_phy32 index 1c18453c5d..9067319fbc 100644 --- a/tests/tests/rap_restart_dyn32_phy32 +++ b/tests/tests/rap_restart_dyn32_phy32 @@ -45,18 +45,7 @@ export LIST_FILES="sfcf012.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_rap export FHROT=6 export FHMAX=24 @@ -67,36 +56,4 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_sfcdiff b/tests/tests/rap_sfcdiff index 3d05397b7b..0424f88b3d 100644 --- a/tests/tests/rap_sfcdiff +++ b/tests/tests/rap_sfcdiff @@ -53,49 +53,9 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export DO_MYNNSFCLAY=.false. diff --git a/tests/tests/rap_sfcdiff_debug b/tests/tests/rap_sfcdiff_debug index f5b0548c0f..11e8375125 100644 --- a/tests/tests/rap_sfcdiff_debug +++ b/tests/tests/rap_sfcdiff_debug @@ -13,49 +13,10 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export DO_MYNNSFCLAY=.false. diff --git a/tests/tests/rap_sfcdiff_decomp b/tests/tests/rap_sfcdiff_decomp index e06f4ab50b..75508a36f3 100644 --- a/tests/tests/rap_sfcdiff_decomp +++ b/tests/tests/rap_sfcdiff_decomp @@ -53,52 +53,12 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rap export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' export INPES=6 export JNPES=4 -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export DO_MYNNSFCLAY=.false. diff --git a/tests/tests/rap_sfcdiff_restart b/tests/tests/rap_sfcdiff_restart index f73064e6f5..d78b4f2c8a 100644 --- a/tests/tests/rap_sfcdiff_restart +++ b/tests/tests/rap_sfcdiff_restart @@ -45,18 +45,7 @@ export LIST_FILES="sfcf012.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 +export_rap export FHROT=6 export WARM_START=.true. @@ -66,35 +55,7 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP_sfcdiff -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export LHEATSTRG=.false. -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - +export CCPP_SUITE=FV3_RAP_sfcdiff +export DO_MYNNSFCLAY=.false. diff --git a/tests/tests/rap_unified_drag_suite_debug b/tests/tests/rap_unified_drag_suite_debug index 61f038f9cc..5c92fe350a 100644 --- a/tests/tests/rap_unified_drag_suite_debug +++ b/tests/tests/rap_unified_drag_suite_debug @@ -13,50 +13,10 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. +export WRITE_DOPOST=.false. -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_unified_ugwp -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - export GWD_OPT=2 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - diff --git a/tests/tests/rap_unified_ugwp_debug b/tests/tests/rap_unified_ugwp_debug index 58d75c66d2..89c4f125e6 100644 --- a/tests/tests/rap_unified_ugwp_debug +++ b/tests/tests/rap_unified_ugwp_debug @@ -13,43 +13,11 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rap +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN +export WRITE_DOPOST=.false. export CCPP_SUITE=FV3_RAP_unified_ugwp -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LHEATSTRG=.false. -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 export GWD_OPT=2 export DO_UGWP_V0=.true. diff --git a/tests/tests/regional_2dwrtdecomp b/tests/tests/regional_2dwrtdecomp index 46363f8074..f76c1b97b0 100644 --- a/tests/tests/regional_2dwrtdecomp +++ b/tests/tests/regional_2dwrtdecomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN @@ -45,6 +45,3 @@ WRTTASK_PER_GROUP=10 NTILES=1 export ITASKS=2 -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index e705ab6747..9d3e3d5ce3 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 862a6b81b4..df4603f299 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -20,9 +20,9 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc \ RESTART/20190801.180000.fv_tracer.res.tile1.nc \ RESTART/20190801.180000.phy_data.nc \ - RESTART/20190801.180000.sfc_data.nc" + RESTART/20190801.180000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 @@ -31,7 +31,6 @@ export SHOUR=12 export FHMAX=6 export DT_ATMOS=180 export WRTTASK_PER_GROUP=8 -export NSOUT=-1 export OUTPUT_GRID='lambert_conformal' export NSTF_NAME='2,0,0,0,0' export IAER=5111 @@ -68,8 +67,8 @@ export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" export INPES=${INPES_aqm} export JNPES=${JNPES_aqm} export NTILES=1 -export atm_model='fv3' -export aqm_model='aqm' +export atm_model=fv3 +export aqm_model=aqm export FIELD_TABLE=field_table_aqm export DIAG_TABLE=diag_table_aqm @@ -92,8 +91,14 @@ export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" -export INPUT_NML="regional_atmaq.nml.IN" -export MODEL_CONFIGURE="model_configure_atmaq.IN" -export NEMS_CONFIGURE="nems.configure.atmaq.IN" -export FV3_RUN="fv3_aqm.IN" +export INPUT_NML=regional_atmaq.nml.IN +export MODEL_CONFIGURE=model_configure_atmaq.IN +export UFS_CONFIGURE=ufs.configure.atmaq.IN +export FV3_RUN=fv3_aqm.IN export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 +elif [[ $MACHINE_ID = gaea ]]; then + TPN=16 +fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index f157901508..7cfe2f8489 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -20,7 +20,7 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.130000.phy_data.nc \ RESTART/20190801.130000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 @@ -29,7 +29,6 @@ export SHOUR=12 export FHMAX=1 export DT_ATMOS=180 export WRTTASK_PER_GROUP=8 -export NSOUT=-1 export OUTPUT_GRID='lambert_conformal' export NSTF_NAME='2,0,0,0,0' export IAER=5111 @@ -66,8 +65,8 @@ export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" export INPES=${INPES_aqm} export JNPES=${JNPES_aqm} export NTILES=1 -export atm_model='fv3' -export aqm_model='aqm' +export atm_model=fv3 +export aqm_model=aqm export FIELD_TABLE=field_table_aqm export DIAG_TABLE=diag_table_aqm @@ -90,8 +89,15 @@ export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" -export INPUT_NML="regional_atmaq.nml.IN" -export MODEL_CONFIGURE="model_configure_atmaq.IN" -export NEMS_CONFIGURE="nems.configure.atmaq.IN" -export FV3_RUN="fv3_aqm.IN" +export INPUT_NML=regional_atmaq.nml.IN +export MODEL_CONFIGURE=model_configure_atmaq.IN +export UFS_CONFIGURE=ufs.configure.atmaq.IN +export FV3_RUN=fv3_aqm.IN export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 + WLCLK=45 +elif [[ $MACHINE_ID = gaea ]]; then + TPN=16 +fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 0abe7d0e45..6ccb25375a 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -20,18 +20,17 @@ export LIST_FILES="sfcf000.nc \ RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc \ RESTART/20190801.180000.fv_tracer.res.tile1.nc \ RESTART/20190801.180000.phy_data.nc \ - RESTART/20190801.180000.sfc_data.nc" + RESTART/20190801.180000.sfc_data.nc" -export_fv3 +export_fv3_v16 export SYEAR=2019 export SMONTH=08 export SDAY=1 export SHOUR=12 export FHMAX=6 -export DT_ATMOS=180 +export DT_ATMOS=120 export WRTTASK_PER_GROUP=8 -export NSOUT=-1 export OUTPUT_GRID='lambert_conformal' export NSTF_NAME='2,0,0,0,0' export IAER=5111 @@ -39,12 +38,6 @@ export IOVR=3 export OUTPUT_FH='0 3 6' #AQM Specifics -#NPZ input.nml 64 -#DNATS input.nml 4 -#RES_LATLON_DYNAMICS input.nml 'fv3_increment.nc' -#fhzero = 1.0 input.nml -#fhcyc = 0 input.nml -#cdmbgwd = 3.5, 0.25 input.nml export AQM=.true. export MAX_OUTPUT_FIELDS=450 export OUTPUT_GRID='lambert_conformal' @@ -68,8 +61,8 @@ export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" export INPES=${INPES_aqm} export JNPES=${JNPES_aqm} export NTILES=1 -export atm_model='fv3' -export aqm_model='aqm' +export atm_model=fv3 +export aqm_model=aqm export FIELD_TABLE=field_table_aqm export DIAG_TABLE=diag_table_aqm @@ -92,8 +85,14 @@ export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" -export INPUT_NML="regional_atmaq.nml.IN" -export MODEL_CONFIGURE="model_configure_atmaq.IN" -export NEMS_CONFIGURE="nems.configure.atmaq.IN" -export FV3_RUN="fv3_aqm.IN" +export INPUT_NML=regional_atmaq.nml.IN +export MODEL_CONFIGURE=model_configure_atmaq.IN +export UFS_CONFIGURE=ufs.configure.atmaq.IN +export FV3_RUN=fv3_aqm.IN export CCPP_SUITE=FV3_GFS_v15p2 + +if [[ $MACHINE_ID = hera ]]; then + TPN=30 +elif [[ $MACHINE_ID = gaea ]]; then + TPN=18 +fi diff --git a/tests/tests/regional_control b/tests/tests/regional_control index 98d50028e7..01cca0e714 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_control_faster b/tests/tests/regional_control_faster index 350c2aecf8..17d31fdc0e 100644 --- a/tests/tests/regional_control_faster +++ b/tests/tests/regional_control_faster @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_control_qr b/tests/tests/regional_control_qr deleted file mode 100644 index 8c3790f84a..0000000000 --- a/tests/tests/regional_control_qr +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################### -# -# FV3 regional control (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional control results with previous trunk version" - -export CNTL_DIR=regional_control - -export LIST_FILES="dynf000.nc \ - dynf006.nc \ - phyf000.nc \ - phyf006.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF06 \ - NATLEV.GrbF00 \ - NATLEV.GrbF06" - -export_fv3 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export QUILTING_RESTART=.true. -export RESTART_INTERVAL="3 -1" -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export OUTPUT_FH="3 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index b70749183c..46ff346b68 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf001.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN @@ -36,3 +36,7 @@ export OUTPUT_FH="0 1" WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp index 55566313b2..a3931e4f18 100644 --- a/tests/tests/regional_decomp +++ b/tests/tests/regional_decomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads index 743707a55c..8e1db314cd 100644 --- a/tests/tests/regional_ifi_2threads +++ b/tests/tests/regional_ifi_2threads @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control index 85ab5ae6a9..089d372a78 100644 --- a/tests/tests/regional_ifi_control +++ b/tests/tests/regional_ifi_control @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp index 4513f4618c..815587548a 100644 --- a/tests/tests/regional_ifi_decomp +++ b/tests/tests/regional_ifi_decomp @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index 0f20b07d94..13065d2da8 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf006.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt index a87447702b..2498db9d91 100644 --- a/tests/tests/regional_noquilt +++ b/tests/tests/regional_noquilt @@ -14,7 +14,7 @@ export LIST_FILES=" atmos_4xdaily.nc \ RESTART/fv_core.res.tile1_new.nc \ RESTART/fv_tracer.res.tile1_new.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index 6ce9242440..c09332019e 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -13,7 +13,7 @@ export LIST_FILES="dynf006.nc \ PRSLEV.GrbF06 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/regional_restart_qr b/tests/tests/regional_restart_qr deleted file mode 100644 index a8463bdccb..0000000000 --- a/tests/tests/regional_restart_qr +++ /dev/null @@ -1,49 +0,0 @@ -############################################################################### -# -# FV3 regional restart (hi-res 3km, small domain) test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional restart results with previous trunk version" - -export CNTL_DIR=regional_control - -export LIST_FILES="dynf006.nc \ - phyf006.nc \ - PRSLEV.GrbF06 \ - NATLEV.GrbF06" - -export_fv3 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export QUILTING_RESTART=.true. -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export WLCLK=15 -export FHMAX=6 -export INPES=10 -export JNPES=11 -export OUTPUT_FH="4 6" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=10 -NTILES=1 -export FHROT=3 diff --git a/tests/tests/regional_rrfs_a b/tests/tests/regional_rrfs_a index f1b6d09d93..4aace3f9e2 100644 --- a/tests/tests/regional_rrfs_a +++ b/tests/tests/regional_rrfs_a @@ -13,7 +13,7 @@ export LIST_FILES="dynf000.nc \ phyf000.nc \ phyf001.nc" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_rrfs_a_run.IN diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb index 830886bc27..7b79586105 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb +++ b/tests/tests/regional_spp_sppt_shum_skeb @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF01" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run_stoch.IN diff --git a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 index 9431e9b26a..eeb01afe60 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 +++ b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF01" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run_stoch.IN diff --git a/tests/tests/regional_wofs b/tests/tests/regional_wofs index d1ee23a786..3b5a62bf8e 100644 --- a/tests/tests/regional_wofs +++ b/tests/tests/regional_wofs @@ -17,7 +17,7 @@ export LIST_FILES="dynf000.nc \ NATLEV.GrbF00 \ NATLEV.GrbF06" -export_fv3 +export_fv3_v16 export FV3_RUN=regional_run.IN diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm deleted file mode 100644 index 998de8dd12..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads deleted file mode 100644 index 7bcb6927a3..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ /dev/null @@ -1,116 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, different threads" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug deleted file mode 100644 index af160182e3..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_debug +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, debug run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, debug run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_debugs - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp deleted file mode 100644 index ee84b2e021..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_decomp +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, different PEs" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_qr b/tests/tests/rrfs_conus13km_hrrr_warm_qr deleted file mode 100644 index a5821a6c9c..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_qr +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run with quilt restart" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart deleted file mode 100644 index 20caf15e1e..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart +++ /dev/null @@ -1,109 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch deleted file mode 100644 index b2703d1481..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, control run" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=5111 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr deleted file mode 100644 index eadfd351c8..0000000000 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch_qr +++ /dev/null @@ -1,108 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, restart run with quilt restart -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, restart run with quilt restart" - -export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=5111 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm deleted file mode 100644 index 346907349d..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads deleted file mode 100644 index 3f5ab71ddc..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ /dev/null @@ -1,117 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug deleted file mode 100644 index 46736e8cfc..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_debug +++ /dev/null @@ -1,110 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.125, 0.25, 0.375, 0.5' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp deleted file mode 100644 index 18eb6c3374..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp +++ /dev/null @@ -1,113 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart deleted file mode 100644 index 52233523f1..0000000000 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_restart +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" - -export CNTL_DIR=rrfs_conus13km_radar_tten_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32 b/tests/tests/rrfs_smoke_conus13km_fast_phy32 deleted file mode 100644 index 95b298ce7d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32 +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32 - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr b/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr deleted file mode 100644 index 9795ef8fba..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_qr - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch deleted file mode 100644 index d02f5316b4..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch deleted file mode 100644 index a7e3f2f04b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_fast_phy32_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit FASTER=ON restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_fast_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm deleted file mode 100644 index d834568f21..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads deleted file mode 100644 index df8f023822..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads +++ /dev/null @@ -1,118 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, different threads -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, different threads" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug deleted file mode 100644 index 14950bfbbf..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads deleted file mode 100644 index 1fde465f1b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +++ /dev/null @@ -1,116 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export atm_omp_num_threads=2 -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp deleted file mode 100644 index 4860e9e67d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=1 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp deleted file mode 100644 index cbffadb7c4..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp +++ /dev/null @@ -1,114 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, different PEs -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, different PEs" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export INPES=16 -export JNPES=9 - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr deleted file mode 100644 index 5532e07f60..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, control run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart deleted file mode 100644 index a7df19d269..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch deleted file mode 100644 index 8b454464f7..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch deleted file mode 100644 index b3e9931094..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32 b/tests/tests/rrfs_smoke_conus13km_phy32 deleted file mode 100644 index e158ceb073..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32 +++ /dev/null @@ -1,120 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32 - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_qr b/tests/tests/rrfs_smoke_conus13km_phy32_qr deleted file mode 100644 index 46b2794c05..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_qr +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt FASTER=ON" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_qr - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc \ - RESTART/20210512.170000.coupler.res \ - RESTART/20210512.170000.fv_core.res.nc \ - RESTART/20210512.170000.fv_core.res.tile1.nc \ - RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210512.170000.fv_tracer.res.tile1.nc \ - RESTART/20210512.170000.phy_data.nc \ - RESTART/20210512.170000.sfc_data.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export IOPT_LAKE=2 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch b/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch deleted file mode 100644 index 2114c53d5d..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_restart_mismatch +++ /dev/null @@ -1,111 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch b/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch deleted file mode 100644 index d989d3a760..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_phy32_restart_qr_mismatch +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, quilt 32-bit control run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain, quilt 32-bit restart run" - -export CNTL_DIR=rrfs_smoke_conus13km_phy32_restart_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_fv3 - -export SYEAR=2021 -export SMONTH=05 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm deleted file mode 100644 index 6e47ece44b..0000000000 --- a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm +++ /dev/null @@ -1,115 +0,0 @@ -############################################################################### -# -# HRRR smoke physics on 13km domain, with radar-derived temperature tendencies -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR smoke physics on 13km domain with radar-derived temperature tendencies" - -export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_radar_tten - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - sfcf002.nc \ - atmf000.nc \ - atmf001.nc \ - atmf002.nc" - -export_fv3 - -export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' - -export SYEAR=2021 -export SMONTH=5 -export SDAY=12 -export SHOUR=16 -export FHMAX=2 -export DT_ATMOS=120 -export RESTART_INTERVAL=1 -export QUILTING=.true. -export WRITE_GROUP=1 -export WRTTASK_PER_GROUP=6 -export NTILES=1 -export WRITE_DOPOST=.false. -export OUTPUT_HISTORY=.true. -export OUTPUT_GRID=lambert_conformal -export OUTPUT_FILE="'netcdf'" - -# Revert these two to GFS_typedefs defaults to avoid a crash: -export SEDI_SEMI=.false. -export DECFL=8 - -export RRFS_SMOKE=.true. -export SEAS_OPT=0 - -export LKM=1 -export SFCLAY_COMPUTE_FLUX=.true. -export IALB=2 -export ICLIQ_SW=2 -export IEMS=2 -export IOVR=3 -export KICE=9 -export LSM=3 -export LSOIL_LSM=9 -export DO_MYNNSFCLAY=.true. -export DO_MYNNEDMF=.true. -export DO_MYJPBL=.true -export HYBEDMF=.false. -export SHAL_CNV=.false. -export DO_SAT_ADJ=.false. -export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR' -export INPES=12 -export JNPES=12 -export NPX=397 -export NPY=233 -export NPZ=65 -export MAKE_NH=.false. -export NA_INIT=0 -export DNATS=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export WARM_START=.true. -export READ_INCREMENT=.false. -export RES_LATLON_DYNAMICS="'fv3_increment.nc'" -export NPZP=66 -export FHZERO=1.0 -export IMP_PHYSICS=8 -export LDIAG3D=.false. -export QDIAG3D=.false. -export PRINT_DIFF_PGR=.true. -export FHCYC=0.0 -export IAER=1011 -export LHEATSTRG=.false. -export RANDOM_CLDS=.false. -export CNVCLD=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export CDMBWD='3.5,1.0' -export DO_SPPT=.false. -export DO_SHUM=.false. -export DO_SKEB=.false. -export LNDP_TYPE=0 -export N_VAR_LNDP=0 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -export FV3_RUN=rrfs_warm_run.IN -export INPUT_NML=rrfs_conus13km_hrrr.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke_smoke -export DIAG_TABLE=diag_table_hrrr -export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - -export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_v1beta b/tests/tests/rrfs_v1beta index 514d9b0435..0e64a52624 100644 --- a/tests/tests/rrfs_v1beta +++ b/tests/tests/rrfs_v1beta @@ -53,42 +53,10 @@ export LIST_FILES="sfcf000.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rrfs_v1 export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RRFS_v1beta -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap_noah - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=2 -export LSOIL_LSM=4 - +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/rrfs_v1beta_debug b/tests/tests/rrfs_v1beta_debug index 2390819b6f..f74a009bf2 100644 --- a/tests/tests/rrfs_v1beta_debug +++ b/tests/tests/rrfs_v1beta_debug @@ -13,42 +13,7 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf001.nc" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 +export_rrfs_v1 +export OUTPUT_FH='0 1' export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RRFS_v1beta -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap_noah - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=2 -export LSOIL_LSM=4 - +export WRITE_DOPOST=.false. diff --git a/tests/tests/rrfs_v1nssl b/tests/tests/rrfs_v1nssl index 4a472dc167..55e7351606 100644 --- a/tests/tests/rrfs_v1nssl +++ b/tests/tests/rrfs_v1nssl @@ -21,44 +21,16 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF09 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rrfs_v1 export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1nssl -export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_nssl_tke -export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=17 -export DNATS=0 export NWAT=7 export NSSL_CCN_ON=.true. export NSSL_HAIL_ON=.true. export NSSL_INVERTCCN=.true. -export DO_SAT_ADJ=.false. export LTAEROSOL=.false. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=2 -export LSOIL_LSM=4 diff --git a/tests/tests/rrfs_v1nssl_nohailnoccn b/tests/tests/rrfs_v1nssl_nohailnoccn index c37cdef82f..30a87dda7d 100644 --- a/tests/tests/rrfs_v1nssl_nohailnoccn +++ b/tests/tests/rrfs_v1nssl_nohailnoccn @@ -21,44 +21,16 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF09 \ GFSPRS.GrbF12" -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 +export_rrfs_v1 export RESTART_INTERVAL="6 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1nssl -export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_nssl_nohailnoccn_tke -export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=17 -export DNATS=0 export NWAT=6 export NSSL_CCN_ON=.false. export NSSL_HAIL_ON=.false. export NSSL_INVERTCCN=.true. -export DO_SAT_ADJ=.false. export LTAEROSOL=.false. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export DO_DEEP=.false. -export SHAL_CNV=.false. -export IMFSHALCNV=-1 -export IMFDEEPCNV=-1 -export LHEATSTRG=.false. -export LSM=2 -export LSOIL_LSM=4