-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ai-env virtual package; remove python variant from jedi-base-env;…
… bug fixes for Discover SCU16/17; doc updates for ParallelWorks; etc (#1017) - Set env variable I_MPI_EXTRA_FILESYSTEM='ON' for Derecho and Discover SCU17 - Add diag-disable flag for deprecated Intel classic compilers for Hercules and Derecho - Add protobuf and py-protobuf to list of module excludes - Update README.md for noaa-aws, noaa-azure, noaa-gcloud - Update documentation for Discover SCU16/SCU17 - Remove variant python from jedi-base-env - Add ai-env virtual package and set py-torch variants in configs/common/packages.yaml - Skip ai-env with Intel compilers in unified-dev template
- Loading branch information
Showing
18 changed files
with
174 additions
and
85 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -71,6 +71,8 @@ modules: | |
- openssl | ||
- perl | ||
- pkgconf | ||
- protobuf | ||
- py-protobuf | ||
- qt | ||
- randrproto | ||
- readline | ||
|
This file contains 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 |
---|---|---|
|
@@ -73,6 +73,8 @@ modules: | |
- openssl | ||
- perl | ||
- pkgconf | ||
- protobuf | ||
- py-protobuf | ||
- qt | ||
- randrproto | ||
- readline | ||
|
This file contains 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 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 |
---|---|---|
@@ -1,42 +1,47 @@ | ||
compilers:: | ||
- compiler: | ||
spec: intel@2021.10.0 | ||
paths: | ||
cc: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/icc | ||
cxx: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/icpc | ||
f77: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/ifort | ||
fc: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/ifort | ||
flags: {} | ||
operating_system: sles15 | ||
target: x86_64 | ||
modules: | ||
- ncarenv/23.09 | ||
- intel-classic/2023.2.1 | ||
environment: | ||
prepend_path: | ||
PATH: '/opt/cray/pe/gcc/12.2.0/bin' | ||
CPATH: '/opt/cray/pe/gcc/12.2.0/snos/include' | ||
LD_LIBRARY_PATH: '/glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/compiler/lib/intel64_lin:/opt/cray/pe/gcc/12.2.0/snos/lib:/opt/cray/pe/gcc/12.2.0/lib64' | ||
set: | ||
# https://github.com/JCSDA/spack-stack/issues/957 | ||
FI_CXI_RX_MATCH_MODE: 'hybrid' | ||
extra_rpaths: [] | ||
- compiler: | ||
spec: gcc@12.2.0 | ||
paths: | ||
cc: /opt/cray/pe/gcc/12.2.0/bin/gcc | ||
cxx: /opt/cray/pe/gcc/12.2.0/bin/g++ | ||
f77: /opt/cray/pe/gcc/12.2.0/bin/gfortran | ||
fc: /opt/cray/pe/gcc/12.2.0/bin/gfortran | ||
flags: {} | ||
operating_system: sles15 | ||
target: x86_64 | ||
modules: | ||
- ncarenv/23.09 | ||
- gcc/12.2.0 | ||
environment: | ||
set: | ||
# https://github.com/JCSDA/spack-stack/issues/957 | ||
FI_CXI_RX_MATCH_MODE: 'hybrid' | ||
- compiler: | ||
spec: intel@2021.10.0 | ||
paths: | ||
cc: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/icc | ||
cxx: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/icpc | ||
f77: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/ifort | ||
fc: /glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/bin/intel64/ifort | ||
flags: | ||
cflags: -diag-disable=10441 | ||
cxxflags: -diag-disable=10441 | ||
fflags: -diag-disable=10448 | ||
operating_system: sles15 | ||
target: x86_64 | ||
modules: | ||
- ncarenv/23.09 | ||
- intel-classic/2023.2.1 | ||
environment: | ||
prepend_path: | ||
PATH: '/opt/cray/pe/gcc/12.2.0/bin' | ||
CPATH: '/opt/cray/pe/gcc/12.2.0/snos/include' | ||
LD_LIBRARY_PATH: '/glade/u/apps/common/23.08/spack/opt/spack/intel-oneapi-compilers/2023.2.1/compiler/2023.2.1/linux/compiler/lib/intel64_lin:/opt/cray/pe/gcc/12.2.0/snos/lib:/opt/cray/pe/gcc/12.2.0/lib64' | ||
set: | ||
# https://github.com/JCSDA/spack-stack/issues/957 | ||
FI_CXI_RX_MATCH_MODE: 'hybrid' | ||
# https://github.com/JCSDA/spack-stack/issues/1012 | ||
I_MPI_EXTRA_FILESYSTEM: 'ON' | ||
extra_rpaths: [] | ||
- compiler: | ||
spec: gcc@12.2.0 | ||
paths: | ||
cc: /opt/cray/pe/gcc/12.2.0/bin/gcc | ||
cxx: /opt/cray/pe/gcc/12.2.0/bin/g++ | ||
f77: /opt/cray/pe/gcc/12.2.0/bin/gfortran | ||
fc: /opt/cray/pe/gcc/12.2.0/bin/gfortran | ||
flags: {} | ||
operating_system: sles15 | ||
target: x86_64 | ||
modules: | ||
- ncarenv/23.09 | ||
- gcc/12.2.0 | ||
environment: | ||
set: | ||
# https://github.com/JCSDA/spack-stack/issues/957 | ||
FI_CXI_RX_MATCH_MODE: 'hybrid' | ||
extra_rpaths: [] | ||
|
This file contains 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 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 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 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 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 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 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 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 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
Submodule spack
updated
2 files
+11 −3 | var/spack/repos/builtin/packages/awscli-v2/package.py | |
+18 −9 | var/spack/repos/builtin/packages/py-torch/package.py |
Oops, something went wrong.