-
Notifications
You must be signed in to change notification settings - Fork 39
Add/fix build capability for Gaea-C5, Gaea-C6, and container #87
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
310fbe5
updates to build on Gaea-C5 and C6
DavidBurrows-NCO b425016
updates for container
mark-a-potts 768d409
added option for building without w3emc in tave and vint
mark-a-potts 06153e7
update mod file descriptions
DavidBurrows-NCO 75426fc
Merge branch 'feature/c5c6conbuild' of https://github.com/NOAA-EPIC/g…
mark-a-potts 1d1dc63
point to C6 install of spack-stack
DavidBurrows-NCO fc46a1e
switched container modules to use environment variables for version n…
mark-a-potts 22ae6c3
Update C5 C6 modulefiles
DavidBurrows-NCO File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| help([[ | ||
| Build environment for GFS utilities in a container | ||
| ]]) | ||
|
|
||
| prepend_path("MODULEPATH", "/opt/spack-stack/spack-stack-1.8.0/envs/unified-env/install/modulefiles/Core") | ||
|
|
||
| local stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" | ||
| local stack_impi_ver=os.getenv("stack_impi_ver") or "2021.12.1" | ||
| local cmake_ver=os.getenv("cmake_ver") or "3.27.9" | ||
|
|
||
| load(pathJoin("stack-intel", stack_intel_ver)) | ||
| load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) | ||
| load(pathJoin("cmake", cmake_ver)) | ||
|
|
||
| load("gfsutils_generic") | ||
|
DavidBurrows-NCO marked this conversation as resolved.
Outdated
|
||
|
|
||
| whatis("Description: GFS utilities environment in container with Intel Compilers") | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| help([[ | ||
| This module loads libraries required for building and running GFS UTILS | ||
| on the NOAA RDHPC machine Gaea C6 using Intel-2023.1.0. | ||
| ]]) | ||
|
|
||
| whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6 ]===]) | ||
|
DavidBurrows-NCO marked this conversation as resolved.
Outdated
|
||
|
|
||
| prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") | ||
| prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/gsi-addon/install/modulefiles/Core") | ||
|
DavidBurrows-NCO marked this conversation as resolved.
Outdated
|
||
|
|
||
| stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" | ||
| load(pathJoin("stack-intel", stack_intel_ver)) | ||
|
|
||
| stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" | ||
| load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) | ||
|
|
||
| stack_python_ver=os.getenv("stack_python_ver") or "3.11.6" | ||
| load(pathJoin("stack-python", stack_python_ver)) | ||
|
DavidBurrows-NCO marked this conversation as resolved.
Outdated
|
||
|
|
||
| cmake_ver=os.getenv("cmake_ver") or "3.23.1" | ||
| load(pathJoin("cmake", cmake_ver)) | ||
|
|
||
| load("gfsutils_common") | ||
| load("nccmp/1.9.0.1") | ||
|
|
||
| unload("darshan-runtime") | ||
| unload("cray-libsci") | ||
|
|
||
| setenv("CC","cc") | ||
| setenv("CXX","CC") | ||
| setenv("FC","ftn") | ||
| setenv("CMAKE_Platform","gaeac6.intel") | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| help([[ | ||
|
DavidBurrows-NCO marked this conversation as resolved.
Outdated
|
||
| Load common modules to build GFS utilities on all machines | ||
| ]]) | ||
|
|
||
| load("libpng") | ||
|
|
||
| load("netcdf-c") | ||
| load("netcdf-fortran") | ||
|
|
||
| load("bufr") | ||
| load("bacio") | ||
| load("w3emc") | ||
| load("sp") | ||
| load("ip") | ||
| load("sigio") | ||
| load("sfcio") | ||
| load("nemsio") | ||
| load("wrf-io") | ||
| load("ncio") | ||
| load("g2") | ||
| load("landsfcutil") | ||
| load("wgrib2") | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.