py-numpy: patch for AVX512 build flags on Intel Classic Compiler (#43020)

This commit is contained in:
Martin Lang 2024-03-05 17:27:05 +01:00 committed by GitHub
parent d30621e787
commit daf6acef6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -136,6 +136,16 @@ class PyNumpy(PythonPackage):
when="@1.22.0:1.22.3", when="@1.22.0:1.22.3",
) )
# Patch to fix AVX512 build flags on Intel Classic Compiler
# See https://github.com/spack/spack/issues/42204
# Numpy before 1.26 did not use meson, so the patch does not work for older versions
with when("%intel"):
patch(
"https://github.com/numpy/numpy/commit/953cc2dfc0f0e063a01778d1392c931d9031c469.patch?full_index=1",
sha256="fe42a018a69cfafb7c4efc183a7c73835a298e45a8f9a585cb411170871ff596",
when="@1.26:1.26.3",
)
# meson.build # meson.build
# https://docs.scipy.org/doc/scipy/dev/toolchain.html#compilers # https://docs.scipy.org/doc/scipy/dev/toolchain.html#compilers
conflicts("%gcc@:8.3", when="@1.26:", msg="NumPy requires GCC >= 8.4") conflicts("%gcc@:8.3", when="@1.26:", msg="NumPy requires GCC >= 8.4")