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

Enable modules for packages not compiled with preferred compiler (update spack-stack setup-meta-modules); remove need for external ecflow #1257

Merged
merged 31 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1331219
For Intel environments, build boost with %gcc to avoid problems with …
climbfuji Aug 20, 2024
032671b
Temporarily move workflows out of the way to test ubuntu intel only
climbfuji Aug 20, 2024
eb8b401
Update .github/workflows/ubuntu-ci-x86_64-intel.yaml: remove external…
climbfuji Aug 20, 2024
d127488
Add boost to module exclude list for tcl and lmod so that ecflow modu…
climbfuji Aug 21, 2024
284ccd8
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 21, 2024
8705ecf
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 22, 2024
68df671
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 22, 2024
40aa2e0
Revert boost module exclusion and require ecflow to be built with GCC…
climbfuji Aug 22, 2024
f34e6a9
[skip ci]
climbfuji Aug 22, 2024
5d22dd7
[skip ci] First attempt to load modules from different compilers in a…
climbfuji Aug 22, 2024
d72d4eb
Add [email protected] to list of compilers in .github/workflows/ubuntu-ci-x8…
climbfuji Aug 22, 2024
ea8a205
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 22, 2024
709060d
Update Narwhal site config: add correct gcc compiler to intel environ…
climbfuji Aug 22, 2024
0bb27fe
[skip ci]
climbfuji Aug 22, 2024
edabc30
Switch to no cray wrappers on Narwhal for Intel
climbfuji Aug 22, 2024
762721d
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 23, 2024
433f3f4
Update configs/sites/**: for Intel, define gcc backend compiler in co…
climbfuji Aug 23, 2024
7091de5
Add missing newlines at end of file in various config files
climbfuji Aug 23, 2024
c31c506
Half way through cleaning up spack-ext/lib/jcsda-emc/spack-stack/stac…
climbfuji Aug 23, 2024
c01018b
Move other CI workflows back in place and add gcc to compiler list in…
climbfuji Aug 23, 2024
d13707a
Trigger CI
climbfuji Aug 23, 2024
99aa58d
Clean up changes in spack-ext/lib/jcsda-emc/spack-stack/stack/meta_mo…
climbfuji Aug 23, 2024
871fd3d
Fix compiler sorting/looping logic in spack-ext/lib/jcsda-emc/spack-s…
climbfuji Aug 23, 2024
5e27a09
Fix unit tests for setup-meta-modules: define compiler
climbfuji Aug 23, 2024
46bb80f
Merge branch 'develop' of https://github.com/jcsda/spack-stack into f…
climbfuji Aug 26, 2024
5706f2e
Merge branch 'develop' into feature/boost_gcc4intel
climbfuji Aug 27, 2024
f8b393f
Update configs/sites/tier1/s4
climbfuji Aug 27, 2024
75f6a1e
Bug fix in ./configs/common/packages.yaml. Specify ecflow requirement…
climbfuji Aug 27, 2024
bfd765e
Merge branch 'develop' into feature/boost_gcc4intel
climbfuji Aug 28, 2024
7b3c9d3
Update configs/sites/tier1/narwhal and doc/source/PreConfiguredSites.…
climbfuji Aug 28, 2024
57b83b5
Merge branch 'feature/boost_gcc4intel' of https://github.com/climbfuj…
climbfuji Aug 28, 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
15 changes: 7 additions & 8 deletions .github/workflows/ubuntu-ci-x86_64-intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,13 @@ jobs:
#echo " - spec: [email protected]%[email protected]" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
#echo " prefix: /opt/intel/oneapi" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml

# Add external ecflow for Intel
# Add external qt@5 to build ecflow
echo "" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " ecflow::" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " qt::" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " buildable: False" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " externals:" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " - spec: [email protected]+ui+static_boost" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " modules:" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " - ecflow/5.11.4" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " - spec: [email protected]" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml
echo " prefix: /usr" >> ${SPACK_SYSTEM_CONFIG_PATH}/packages.yaml

export -n SPACK_SYSTEM_CONFIG_PATH

Expand All @@ -121,13 +120,13 @@ jobs:

# Set compiler and MPI specs
spack config add "packages:all:providers:mpi:[[email protected]]"
spack config add "packages:all:compiler:[[email protected]]"
spack config add "packages:all:compiler:[[email protected], [email protected]]"

# Add additional variants for MET packages, different from config/common/packages.yaml
spack config add "packages:met:variants:+python +grib2 +graphics +lidar2nc +modis"

# Don't generate ecflow module when using external package
spack config add "modules:default:tcl:exclude:[ecflow]"
# Don't generate qt module when using external package
spack config add "modules:default:tcl:exclude:[qt]"

# Concretize and check for duplicates
spack concretize 2>&1 | tee log.concretize.intel-2021.10.0-buildcache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-ci-x86_64-oneapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

# Set compiler and MPI specs
spack config add "packages:all:providers:mpi:[[email protected]]"
spack config add "packages:all:compiler:[[email protected]]"
spack config add "packages:all:compiler:[[email protected],[email protected]]"

# Add additional variants for MET packages, different from config/common/packages.yaml
spack config add "packages:met:variants:+python +grib2 +graphics +lidar2nc +modis"
Expand Down
6 changes: 4 additions & 2 deletions configs/common/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ packages:
require: '@3.4:'
# 1.85 incompatible with [email protected] - use latest 'good version'
boost:
require: '@1.84 ~atomic +chrono +date_time +exception +filesystem ~graph ~iostreams ~locale ~log ~math ~mpi ~numpy +pic +program_options +python ~random +regex +serialization ~signals +system +test +thread +timer ~wave cxxstd=17 visibility=hidden'
require:
- '@1.84 ~atomic +chrono +date_time +exception +filesystem ~graph ~iostreams ~locale ~log ~math ~mpi ~numpy +pic +program_options +python ~random +regex +serialization ~signals +system +test +thread +timer ~wave cxxstd=17 visibility=hidden'
bufr:
require: '@12.1.0 +python'
bufr-query:
Expand All @@ -37,7 +38,8 @@ packages:
eccodes:
require: '@2.33.0 +png +tools'
ecflow:
require: '@5.11.4 +ui'
require:
- '@5.11.4 +ui'
eckit:
require: '@1.27.0 linalg=eigen,lapack compression=lz4,bzip2'
ecmwf-atlas:
Expand Down
6 changes: 6 additions & 0 deletions configs/common/packages_intel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ packages:
py-numpy:
require:
- '^intel-oneapi-mkl'
boost:
require:
- '%gcc'
ecflow:
require:
- '%gcc'
22 changes: 22 additions & 0 deletions configs/sites/tier1/acorn/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,25 @@ compilers:
# which confuses some packages.
CONFIG_SITE: ''
extra_rpaths: []
# Needed for Intel 19/2022 backend
- compiler:
spec: [email protected]
paths:
cc: cc
cxx: CC
f77: ftn
fc: ftn
flags: {}
operating_system: sles15
modules:
- PrgEnv-gnu/8.3.3
- craype/2.7.13
- gcc/10.2.0
- libfabric
environment:
set:
# OpenSUSE on WCOSS2 machines sets CONFIG_SITE so
# Automake-based builds are installed in lib64
# which confuses some packages.
CONFIG_SITE: ''
extra_rpaths: []
2 changes: 1 addition & 1 deletion configs/sites/tier1/acorn/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected],[email protected]]
compiler:: [[email protected],[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
1 change: 1 addition & 0 deletions configs/sites/tier1/atlantis/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ compilers:
prepend_path:
LD_LIBRARY_PATH: /cm/shared/apps/intel/oneapi/compiler/2022.1.0/linux/compiler/lib/intel64_lin
extra_rpaths: []
# Todo: Define gcc compiler (default for Atlantis) for Intel (ecflow)
2 changes: 1 addition & 1 deletion configs/sites/tier1/atlantis/packages.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected]] # todo: add gcc here
providers:
mpi:: [[email protected]]

Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/aws-pcluster/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/derecho/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
15 changes: 15 additions & 0 deletions configs/sites/tier1/discover-scu16/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,18 @@ compilers:
- comp/gcc/12.1.0
environment: {}
extra_rpaths: []
# Needed for Intel backend
- compiler:
spec: gcc@=11.2.0
paths:
cc: /usr/local/other/gcc/11.2.0/bin/gcc
cxx: /usr/local/other/gcc/11.2.0/bin/g++
f77: /usr/local/other/gcc/11.2.0/bin/gfortran
fc: /usr/local/other/gcc/11.2.0/bin/gfortran
flags: {}
operating_system: sles12
target: x86_64
modules:
- comp/gcc/11.2.0
environment: {}
extra_rpaths: []
2 changes: 1 addition & 1 deletion configs/sites/tier1/discover-scu16/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
15 changes: 15 additions & 0 deletions configs/sites/tier1/discover-scu17/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,18 @@ compilers:
- comp/gcc/12.3.0
environment: {}
extra_rpaths: []
# Needed for Intel backend
- compiler:
spec: gcc@=11.4.0
paths:
cc: /usr/local/other/gcc/11.4.0/bin/gcc
cxx: /usr/local/other/gcc/11.4.0/bin/g++
f77: /usr/local/other/gcc/11.4.0/bin/gfortran
fc: /usr/local/other/gcc/11.4.0/bin/gfortran
flags: {}
operating_system: sles15
target: x86_64
modules:
- comp/gcc/11.4.0
environment: {}
extra_rpaths: []
2 changes: 1 addition & 1 deletion configs/sites/tier1/discover-scu17/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
1 change: 1 addition & 0 deletions configs/sites/tier1/gaea-c5/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ compilers:
# which confuses some packages.
CONFIG_SITE: ''
extra_rpaths: []
# Todo: Define gcc compiler 10.3.0 for Intel backend (ecflow)
2 changes: 1 addition & 1 deletion configs/sites/tier1/gaea-c5/packages.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected]] # todo: add gcc here
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just want to double check. Is the intention to wait until after the 1.8.0 release to make these changes for Gaea?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll do this as part of the site config updates on the release branch and then bring it back to develop if that makes sense?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, that makes sense. Happy to approve!

providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
1 change: 1 addition & 0 deletions configs/sites/tier1/gaea-c6/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ compilers:
# which confuses some packages.
CONFIG_SITE: ''
extra_rpaths: []
# Todo: Define gcc compiler 12.x.y for Intel backend (ecflow)
2 changes: 1 addition & 1 deletion configs/sites/tier1/gaea-c6/packages.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected]] # todo: add gcc here
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/hera/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/hercules/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/jet/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
17 changes: 7 additions & 10 deletions configs/sites/tier1/narwhal/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ compilers::
cxx: CC
f77: ftn
fc: ftn
flags:
cflags: -diag-disable=10441
cxxflags: -diag-disable=10441
fflags: -diag-disable=10448
flags: {}
operating_system: sles15
modules:
- PrgEnv-intel/8.3.3
Expand All @@ -27,20 +24,20 @@ compilers::
- compiler:
spec: [email protected]
paths:
cc: /opt/cray/pe/gcc/10.3.0/bin/gcc
cxx: /opt/cray/pe/gcc/10.3.0/bin/g++
f77: /opt/cray/pe/gcc/10.3.0/bin/gfortran
fc: /opt/cray/pe/gcc/10.3.0/bin/gfortran
cc: cc
cxx: CC
f77: ftn
fc: ftn
flags: {}
operating_system: sles15
modules:
- PrgEnv-gnu/8.3.3
- gcc/10.3.0
- cray-libsci/22.11.1.2
- cray-libsci/23.05.1.4
- libfabric/1.12.1.2.2.1
environment:
prepend_path:
LD_LIBRARY_PATH: '/opt/cray/libfabric/1.12.1.2.2.1/lib64:/opt/cray/pe/libsci/22.11.1.2/GNU/9.1/x86_64/lib'
LD_LIBRARY_PATH: '/opt/cray/libfabric/1.12.1.2.2.1/lib64:/opt/cray/pe/libsci/23.05.1.4/GNU/10.3/x86_64/lib'
set:
CRAYPE_LINK_TYPE: 'dynamic'
extra_rpaths: []
2 changes: 1 addition & 1 deletion configs/sites/tier1/narwhal/packages_gcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
buildable: False
cray-mpich:
externals:
- spec: [email protected]%[email protected] +wrappers
- spec: [email protected]%[email protected] ~wrappers
modules:
- cray-mpich-ucx/8.1.21
- craype-network-ucx
2 changes: 1 addition & 1 deletion configs/sites/tier1/narwhal/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
41 changes: 28 additions & 13 deletions configs/sites/tier1/nautilus/compilers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,25 @@ compilers:
CPATH: '/opt/rh/gcc-toolset-11/root/usr/include'
LD_LIBRARY_PATH: '/opt/scyld/slurm/lib64:/opt/scyld/slurm/lib64/slurm:/p/app/compilers/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin:/opt/rh/gcc-toolset-11/root/usr/lib64:/opt/rh/gcc-toolset-11/root/usr/lib'
extra_rpaths: []
- compiler:
spec: [email protected]
paths:
cc: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/icx
cxx: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/icpx
f77: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/ifort
fc: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/ifort
flags: {}
operating_system: rhel8
target: x86_64
modules: []
environment:
prepend_path:
PATH: '/opt/rh/gcc-toolset-11/root/usr/bin'
CPATH: '/opt/rh/gcc-toolset-11/root/usr/include'
LD_LIBRARY_PATH: '/opt/scyld/slurm/lib64:/opt/scyld/slurm/lib64/slurm:/opt/rh/gcc-toolset-11/root/usr/lib64:/opt/rh/gcc-toolset-11/root/usr/lib'
append_path:
CPATH: '/p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/opt/compiler/include/intel64'
extra_rpaths: []
- compiler:
spec: [email protected]
paths:
Expand All @@ -49,22 +68,18 @@ compilers:
- scl/gcc-toolset-12
environment: {}
extra_rpaths: []
# Required for Intel backend
- compiler:
spec: [email protected]
spec: [email protected]
paths:
cc: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/icx
cxx: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/icpx
f77: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/ifort
fc: /p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/bin/ifort
cc: /opt/rh/gcc-toolset-11/root/usr/bin/gcc
cxx: /opt/rh/gcc-toolset-11/root/usr/bin/g++
f77: /opt/rh/gcc-toolset-11/root/usr/bin/gfortran
fc: /opt/rh/gcc-toolset-11/root/usr/bin/gfortran
flags: {}
operating_system: rhel8
target: x86_64
modules: []
environment:
prepend_path:
PATH: '/opt/rh/gcc-toolset-11/root/usr/bin'
CPATH: '/opt/rh/gcc-toolset-11/root/usr/include'
LD_LIBRARY_PATH: '/opt/scyld/slurm/lib64:/opt/scyld/slurm/lib64/slurm:/opt/rh/gcc-toolset-11/root/usr/lib64:/opt/rh/gcc-toolset-11/root/usr/lib'
append_path:
CPATH: '/p/app/projects/NEPTUNE/spack-stack/oneapi-2024.1.2/compiler/2024.1/opt/compiler/include/intel64'
modules:
- scl/gcc-toolset-11
environment: {}
extra_rpaths: []
2 changes: 1 addition & 1 deletion configs/sites/tier1/nautilus/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/nautilus/packages_oneapi.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
mpi:
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/noaa-aws/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/noaa-azure/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
2 changes: 1 addition & 1 deletion configs/sites/tier1/noaa-gcloud/packages_intel.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packages:
all:
compiler:: [[email protected]]
compiler:: [[email protected],[email protected]]
providers:
mpi:: [[email protected]]
# Remove the next three lines to switch to intel-oneapi-mkl
Expand Down
Loading
Loading