-
Notifications
You must be signed in to change notification settings - Fork 47
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,8 @@ | |
yacc: [bison] | ||
zlib-api: [zlib-ng] | ||
# | ||
# This version of awscli goes with [email protected] | ||
awscli: | ||
version: ['1.27.84'] | ||
awscli-v2: | ||
require: "~examples" | ||
bacio: | ||
version: ['2.4.1'] | ||
bison: | ||
|
@@ -242,6 +241,8 @@ | |
variants: +rust_bootstrap | ||
py-shapely: | ||
require: ['@1.8.0'] | ||
py-torch: | ||
require: "+internal-protobuf ~mkldnn" | ||
qt: | ||
version: ['5.15.3'] | ||
scotch: | ||
|
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: [email protected] | ||
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: [email protected] | ||
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: [email protected] | ||
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: [email protected] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,11 @@ that the site configuration files in `configs/sites/noaa-aws` work out of the bo | |
|
||
sudo su | ||
chmod 777 /contrib | ||
# The following three commands were necessary to fix failures accessing these repos | ||
yum-config-manager --disable intel-clck-2019-repo | ||
yum-config-manager --disable intel-hpc-platform | ||
yum-config-manager --disable intelpython | ||
# | ||
yum install -y qt5-qtbase-devel | ||
yum install -y qt5-qtsvg-devel | ||
yum install -y xorg-x11-xauth | ||
|
@@ -126,6 +131,7 @@ mkdir ecflow | |
# Create the modulefile from the template in doc/modulefile_templates | ||
|
||
############## Steps to perform when starting a new cluster ############## | ||
|
||
source /contrib/admin/basic_setup.sh # sudo privileges requred to install packages | ||
module unuse /opt/cray/craype/default/modulefiles | ||
module unuse /opt/cray/modulefiles | ||
|
@@ -135,3 +141,12 @@ module load ecflow/5.8.4 | |
module load mysql/8.0.31 | ||
module load git-lfs/2.4.1 | ||
|
||
git lfs install | ||
git config --global credential.helper cache # or store | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
|
||
mkdir ~/.aws | ||
# Create ~/.aws/config | ||
# Create ~/.aws/credentials | ||
chmod 400 ~/.aws/credentials |
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 |
---|---|---|
|
@@ -6,6 +6,11 @@ that the site configuration files in `configs/sites/noaa-azure` work out of the | |
|
||
sudo su | ||
chmod 777 /contrib | ||
# The following three commands were necessary to fix failures accessing these repos | ||
yum-config-manager --disable intel-clck-2019-repo | ||
yum-config-manager --disable intel-hpc-platform | ||
yum-config-manager --disable intelpython | ||
# | ||
yum install -y m4 | ||
yum install -y qt5-qtbase-devel | ||
yum install -y qt5-qtsvg-devel | ||
|
@@ -130,6 +135,7 @@ mkdir ecflow | |
# Create the modulefile from the template in doc/modulefile_templates | ||
|
||
############## Steps to perform when starting a new cluster ############## | ||
|
||
source /contrib/admin/basic_setup.sh # sudo privileges requred to install packages | ||
module unuse /opt/cray/craype/default/modulefiles | ||
module unuse /opt/cray/modulefiles | ||
|
@@ -140,4 +146,12 @@ module load mysql/8.0.31 | |
module load git-lfs/2.4.1 | ||
# | ||
|
||
git lfs install | ||
git config --global credential.helper cache # or store | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
|
||
mkdir ~/.aws | ||
# Create ~/.aws/config | ||
# Create ~/.aws/credentials | ||
chmod 400 ~/.aws/credentials |
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 |
---|---|---|
|
@@ -6,6 +6,11 @@ that the site configuration files in `configs/sites/noaa-gcloud` work out of the | |
|
||
sudo su | ||
chmod 777 /contrib | ||
# The following three commands were necessary to fix failures accessing these repos | ||
yum-config-manager --disable intel-clck-2019-repo | ||
yum-config-manager --disable intel-hpc-platform | ||
yum-config-manager --disable intelpython | ||
# | ||
yum install -y qt5-qtbase-devel | ||
yum install -y qt5-qtsvg-devel | ||
yum install -y xorg-x11-xauth | ||
|
@@ -126,6 +131,7 @@ mkdir ecflow | |
# Create the modulefile from the template in doc/modulefile_templates | ||
|
||
############## Steps to perform when starting a new cluster ############## | ||
|
||
source /contrib/admin/basic_setup.sh # sudo privileges requred to install packages | ||
module unuse /opt/cray/craype/default/modulefiles | ||
module unuse /opt/cray/modulefiles | ||
|
@@ -135,3 +141,12 @@ module load ecflow/5.8.4 | |
module load mysql/8.0.31 | ||
module load git-lfs/2.4.1 | ||
|
||
git lfs install | ||
git config --global credential.helper cache # or store | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
|
||
mkdir ~/.aws | ||
# Create ~/.aws/config | ||
# Create ~/.aws/credentials | ||
chmod 400 ~/.aws/credentials |
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.