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

Build ufs_weather_model on Gaea-C5 + update cubed sphere gitmodules for perturbation/increments for cold starts #2271 #2269

Merged
merged 26 commits into from
Jun 7, 2024
Merged
Changes from 5 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8b9f162
update ufs_gaea.intel.lua for building ufs_weather_model on Gaea
DavidBurrows-NCO May 6, 2024
026e2f0
remove commented lines in modulefiles/ufs_gaea.intel.lua
DavidBurrows-NCO May 6, 2024
5f6fdee
update help/whatis in modulefiles/ufs_gaea.intel.lua
DavidBurrows-NCO May 6, 2024
84c31b4
add stack-python load back to ufs_gaea.intel.lua
DavidBurrows-NCO May 7, 2024
db99a8b
Merge https://github.com/ufs-community/ufs-weather-model into gaea_build
DavidBurrows-NCO May 7, 2024
ca16100
unload darshan and cray-libsci in module files for Gaea
DavidBurrows-NCO May 10, 2024
547a435
bring in changes from PR#2258
DavidBurrows-NCO Jun 3, 2024
c51a972
revert spack-stack to 1.5.1 for AWS
DavidBurrows-NCO Jun 4, 2024
fcb2f16
CMakeLists.txt update
DavidBurrows-NCO Jun 4, 2024
b52f050
since ufs_common.lua is used, remove modulefiles/ufs_common4noaacloud…
DavidBurrows-NCO Jun 4, 2024
aaaf393
spack-stack 1.6.0 and revert detect_machine
DavidBurrows-NCO Jun 6, 2024
f43fcbb
point to remote fv3atm
DavidBurrows-NCO Jun 6, 2024
c4eaf09
Merge branch 'develop' into gaea_build
DavidBurrows-NCO Jun 6, 2024
6b5cf6b
update FV3 feature branch hash
jkbk2004 Jun 6, 2024
6b264a6
Update HYCOM hash latest
jkbk2004 Jun 6, 2024
7712e37
[AutoRT] Derecho Job Completed.
epic-cicd-jenkins Jun 6, 2024
db41df5
[AutoRT] Orion Job Completed.
epic-cicd-jenkins Jun 6, 2024
2e7b519
add hercules RT logs: passed
zach1221 Jun 6, 2024
bf66116
add gaea RT log passed
FernandoAndrade-NOAA Jun 6, 2024
41f80ec
add jet RT log passed
FernandoAndrade-NOAA Jun 7, 2024
738a768
[AutoRT] Hera Job Completed.
epic-cicd-jenkins Jun 7, 2024
a53210b
WCOSS2 RT Log: Pass
BrianCurtis-NOAA Jun 7, 2024
12270a7
add control_p8_gnu ORT logs: passed
zach1221 Jun 7, 2024
001455b
add regional_control_gnu ORT logs: passed
zach1221 Jun 7, 2024
b37e931
add cpld_control_gnu ORT logs: passed
zach1221 Jun 7, 2024
bd1d8ad
Update FV3 hash and revert change in gitmodules
jkbk2004 Jun 7, 2024
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
14 changes: 5 additions & 9 deletions modulefiles/ufs_gaea.intel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ help([[

whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===])

load("PrgEnv-intel/8.3.3")
load("intel-classic/2023.1.0")
load("cray-mpich/8.1.25")
load("python/3.9.12")
DavidBurrows-NCO marked this conversation as resolved.
Show resolved Hide resolved

prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core")
prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/modulefiles")

stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0"
load(pathJoin("stack-intel", stack_intel_ver))
Expand All @@ -22,11 +16,13 @@ load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver))
stack_python_ver=os.getenv("stack_python_ver") or "3.10.8"
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")
load("nccmp/1.9.0.1")

unload("darshan-runtime")
unload("cray-libsci")
DavidBurrows-NCO marked this conversation as resolved.
Show resolved Hide resolved
nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1"
load(pathJoin("nccmp", nccmp_ver))

setenv("CC","cc")
setenv("CXX","CC")
Expand Down
Loading