-
Notifications
You must be signed in to change notification settings - Fork 55
Acorn spack-stack v2 updates #1791
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
Open
AlexanderRichert-NOAA
wants to merge
17
commits into
JCSDA:feature/update_to_spack_v1
Choose a base branch
from
AlexanderRichert-NOAA:acorn_spackstackv2
base: feature/update_to_spack_v1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
66ab060
add acorn deploy scripting
AlexanderRichert-NOAA 5737a3c
Acorn site config updates for spack v1 changes
AlexanderRichert-NOAA a4b7a95
fetch_cargo_deps.py: fix for spack v1 update (spack->spack_repo)
AlexanderRichert-NOAA 927912e
eliminate 'llnl' deprecation warning
AlexanderRichert-NOAA a24d5f9
acorn: gcc/10.3 python doesn't have yaml somehow?
AlexanderRichert-NOAA f1e0c68
stack_env.py: copy envrepo from template dirs if present
AlexanderRichert-NOAA 76d64a0
deploy.py: major updates; now works with addon envs
AlexanderRichert-NOAA f4f2190
deployments.yaml (acorn): consolidate core and addon sections
AlexanderRichert-NOAA a8cf011
.gitignore: deploy_logs/
AlexanderRichert-NOAA b409454
stack_env.py: re-order envrepo logic so template supersedes upstream
AlexanderRichert-NOAA 81db12b
acorn: update gcc config in oneapi packages.yaml
AlexanderRichert-NOAA c77fba2
delete gcc config for acorn
AlexanderRichert-NOAA 922d45b
fetch_cargo_deps.py: first try to use each spec's rust/cargo; set PAT…
AlexanderRichert-NOAA bad8676
deploy.py: set up env for go+rust dep fetching
AlexanderRichert-NOAA a71f9dd
deploy.py: flush output more
AlexanderRichert-NOAA 4f7cbc5
deploy.py: don't overwrite pbs pro outputs
AlexanderRichert-NOAA 4aba260
Merge branch 'feature/update_to_spack_v1' into acorn_spackstackv2
AlexanderRichert-NOAA 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ __pycache__ | |
cache | ||
.vscode | ||
doc/build | ||
deploy_logs/ |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -43,3 +43,5 @@ | |
externals: | ||
- spec: [email protected] | ||
prefix: /usr | ||
libxslt: | ||
require: '~crypto' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,75 @@ | ||
packages: | ||
### Compilers / compiler runtimes | ||
intel-oneapi-compilers: | ||
buildable: false | ||
externals: | ||
- spec: [email protected] ~envmods | ||
modules: | ||
- PrgEnv-intel/8.5.0 | ||
- craype/2.7.17 | ||
- intel-oneapi/2024.2 | ||
- libfabric | ||
extra_attributes: | ||
compilers: | ||
c: cc | ||
cxx: CC | ||
fortran: ftn | ||
flags: | ||
cflags: '--gcc-toolchain=/opt/cray/pe/gcc/12.1.0/snos' | ||
cxxflags: '--gcc-toolchain=/opt/cray/pe/gcc/12.1.0/snos' | ||
fflags: '-gcc-name=/opt/cray/pe/gcc/12.1.0/snos/bin/gcc -gxx-name=/opt/cray/pe/gcc/12.1.0/snos/bin/g++' | ||
environment: | ||
prepend_path: | ||
PATH: /opt/cray/pe/gcc/12.1.0/snos/bin | ||
LD_LIBRARY_PATH: /opt/cray/pe/gcc/12.1.0/snos/lib64 | ||
LIBRARY_PATH: /opt/cray/pe/gcc/12.1.0/snos/lib64 | ||
CPATH: /opt/cray/pe/gcc/12.1.0/snos/include | ||
set: | ||
CONFIG_SITE: '' | ||
INTEL_COMPILER_TYPE: RECOMMENDED | ||
gcc: | ||
buildable: false | ||
externals: | ||
- spec: [email protected] languages:='c,c++,fortran' | ||
prefix: /opt/cray/pe/gcc/12.1.0/snos/ | ||
extra_attributes: | ||
compilers: | ||
c: /opt/cray/pe/gcc/12.1.0/snos/bin/gcc | ||
cxx: /opt/cray/pe/gcc/12.1.0/snos/bin/g++ | ||
fortran: /opt/cray/pe/gcc/12.1.0/snos/bin/gfortran | ||
environment: | ||
set: | ||
# OpenSUSE on WCOSS2 machines sets CONFIG_SITE so | ||
# Automake-based builds are installed in lib64 | ||
# which confuses some packages. | ||
CONFIG_SITE: '' | ||
gcc-runtime: | ||
require: '%[email protected]' | ||
### General package/provider settings & MPI external | ||
mpi: | ||
buildable: false | ||
require: ['[email protected]'] | ||
cray-mpich: | ||
externals: | ||
- spec: [email protected]~wrappers | ||
prefix: /opt/cray/pe/mpich/8.1.29/ofi/intel/2022.1 | ||
modules: | ||
- libfabric | ||
- craype-network-ofi | ||
- cray-mpich/8.1.29 | ||
- cray-pals | ||
### Disable MKL | ||
intel-oneapi-mkl: | ||
buildable: false | ||
blas: | ||
require: ['openblas'] | ||
lapack: | ||
require: ['openblas'] | ||
fftw-api: | ||
require: ['fftw'] | ||
ectrans: | ||
require:: ['~mkl', '+fftw'] | ||
gsibec: | ||
require: ['~mkl'] | ||
py-numpy: | ||
require:: ['^[virtuals=lapack,blas] openblas'] |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
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.