py-scipy: hardcode to use blis.pc (#34171)
This commit is contained in:
parent
5a394d37b7
commit
99fcc57607
@ -182,19 +182,14 @@ def install(self, spec, prefix):
|
|||||||
blas = spec["blas"].libs.names[0]
|
blas = spec["blas"].libs.names[0]
|
||||||
lapack = spec["lapack"].libs.names[0]
|
lapack = spec["lapack"].libs.names[0]
|
||||||
# FIXME: MKL support doesn't work, why?
|
# FIXME: MKL support doesn't work, why?
|
||||||
if (
|
if spec["blas"].name in ["intel-mkl", "intel-parallel-studio", "intel-oneapi-mkl"]:
|
||||||
spec["blas"].name == "intel-mkl"
|
|
||||||
or spec["blas"].name == "intel-parallel-studio"
|
|
||||||
or spec["blas"].name == "intel-oneapi-mkl"
|
|
||||||
):
|
|
||||||
blas = "mkl-dynamic-lp64-seq"
|
blas = "mkl-dynamic-lp64-seq"
|
||||||
if (
|
if spec["lapack"].name in ["intel-mkl", "intel-parallel-studio", "intel-oneapi-mkl"]:
|
||||||
spec["lapack"].name == "intel-mkl"
|
|
||||||
or spec["lapack"].name == "intel-parallel-studio"
|
|
||||||
or spec["lapack"].name == "intel-oneapi-mkl"
|
|
||||||
):
|
|
||||||
lapack = "mkl-dynamic-lp64-seq"
|
lapack = "mkl-dynamic-lp64-seq"
|
||||||
|
|
||||||
|
if spec["blas"].name in ["blis", "amdblis"]:
|
||||||
|
blas = "blis"
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
"setup",
|
"setup",
|
||||||
"build",
|
"build",
|
||||||
|
Loading…
Reference in New Issue
Block a user