diff options
author | Stephen Sachs <stephenmsachs@gmail.com> | 2022-02-07 13:26:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 13:26:20 +0100 |
commit | 14902a582143985f337993152c2298f6c31645a1 (patch) | |
tree | 72aeb9706f8d87a7787436e690b9d4a9cf891a4c /lib | |
parent | efc35c2ffc8887ced3dc0a5c56a68cd70ab87fe1 (diff) | |
download | spack-14902a582143985f337993152c2298f6c31645a1.tar.gz spack-14902a582143985f337993152c2298f6c31645a1.tar.bz2 spack-14902a582143985f337993152c2298f6c31645a1.tar.xz spack-14902a582143985f337993152c2298f6c31645a1.zip |
intel-mkl: BLACS with intel-oneapi-mpi (#28476)
Identify the correct BLACS libaries when `intel-oneapi-mpi` is used.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/intel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/build_systems/intel.py b/lib/spack/spack/build_systems/intel.py index 8eb7913470..1cf7923fb4 100644 --- a/lib/spack/spack/build_systems/intel.py +++ b/lib/spack/spack/build_systems/intel.py @@ -832,6 +832,7 @@ class IntelPackage(PackageBase): '^cray-mpich' in spec_root or '^mvapich2' in spec_root or '^intel-mpi' in spec_root or + '^intel-oneapi-mpi' in spec_root or '^intel-parallel-studio' in spec_root): blacs_lib = 'libmkl_blacs_intelmpi' elif '^mpt' in spec_root: |