-
Notifications
You must be signed in to change notification settings - Fork 254
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
RUC LSM update #1940
Changes from all commits
7c848e5
33e543e
718a87d
56de424
9a98a3a
99e0415
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
+2 −2 | .gitmodules | |
+17 −6 | ccpp/data/GFS_typedefs.F90 | |
+15 −1 | ccpp/data/GFS_typedefs.meta | |
+22 −24 | ccpp/driver/GFS_diagnostics.F90 | |
+1 −1 | ccpp/physics | |
+1 −1 | upp |
Large diffs are not rendered by default.
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 |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
help([[ | ||
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") |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
||
|
There was a problem hiding this comment.
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.