Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RUC LSM update #1940

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "FV3"]
path = FV3
url = https://github.com/NOAA-EMC/fv3atm
branch = develop
url = https://github.com/tanyasmirnova/fv3atm
branch = ruclsm_lai
[submodule "WW3"]
path = WW3
url = https://github.com/NOAA-EMC/WW3
Expand Down
2 changes: 1 addition & 1 deletion FV3
1,807 changes: 1,807 additions & 0 deletions tests/comp.log

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions tests/compile_time.log
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Compile elapsed time 680 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Release
140,926 changes: 140,926 additions & 0 deletions tests/intel_out

Large diffs are not rendered by default.

195,410 changes: 195,410 additions & 0 deletions tests/intel_rt.log

Large diffs are not rendered by default.

2,032 changes: 1,016 additions & 1,016 deletions tests/logs/RegressionTests_hera.log

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions tests/modules.fv3.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
help([[
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should not be committed.

loads UFS Model prerequisites for Hera/Intel
]])

prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.4.1/envs/ufs-pio-2.5.10/install/modulefiles/Core")
prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles")

stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0"
load(pathJoin("stack-intel", stack_intel_ver))

stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1"
load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver))

stack_python_ver=os.getenv("stack_python_ver") or "3.9.12"
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")

setenv("CC", "mpiicc")
setenv("CXX", "mpiicpc")
setenv("FC", "mpiifort")
setenv("CMAKE_Platform", "hera.intel")

whatis("Description: UFS build environment")
229 changes: 229 additions & 0 deletions tests/rt.conf.small

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,11 @@ elif [[ $MACHINE_ID = hera ]]; then
PARTITION=
dprefix=/scratch1/NCEPDEV
DISKNM=/scratch2/NAGAPE/epic/UFS-WM_RT
STMP=$dprefix/stmp4
PTMP=$dprefix/stmp2
#STMP=$dprefix/stmp4
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These need to be reverted to the standard locations.

#PTMP=$dprefix/stmp2
STMP=/scratch1/BMC/gsd-fv3-dev/smirnova
PTMP=/scratch1/BMC/gsd-fv3-dev/smirnova


SCHEDULER=slurm

Expand Down