summaryrefslogtreecommitdiff
path: root/dev-python/numpy
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-24 07:14:48 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-24 07:14:48 +0000
commit6072f8561ab9bac3afef70c3d2eded878700f382 (patch)
treec7eabc2d1e39836950ce5636448e0d4142870aed /dev-python/numpy
parent08bd66bd0d44d4b580308e013a24ed15188da14f (diff)
downloadbaldeagleos-repo-6072f8561ab9bac3afef70c3d2eded878700f382.tar.gz
baldeagleos-repo-6072f8561ab9bac3afef70c3d2eded878700f382.tar.xz
baldeagleos-repo-6072f8561ab9bac3afef70c3d2eded878700f382.zip
Adding metadata
Diffstat (limited to 'dev-python/numpy')
-rw-r--r--dev-python/numpy/files/numpy-2.3.3-avx512f-only.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-python/numpy/files/numpy-2.3.3-avx512f-only.patch b/dev-python/numpy/files/numpy-2.3.3-avx512f-only.patch
deleted file mode 100644
index 41205229202a..000000000000
--- a/dev-python/numpy/files/numpy-2.3.3-avx512f-only.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f3c224a321b86647cff902d69a5463823c2fdcbd Mon Sep 17 00:00:00 2001
-From: Raghuveer <devulapalli.raghuveer@gmail.com>
-Date: Fri, 5 Sep 2025 20:56:52 -0700
-Subject: [PATCH] Remove #error and fallback to AVX2 when compiled with just
- -mavx512f
-
----
- src/x86simdsort-static-incl.h | 5 +----
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/src/x86simdsort-static-incl.h b/src/x86simdsort-static-incl.h
---- a/numpy/_core/src/npysort/x86-simd-sort/src/x86simdsort-static-incl.h
-+++ b/numpy/_core/src/npysort/x86-simd-sort/src/x86simdsort-static-incl.h
-@@ -197,10 +197,7 @@ void x86simdsortStatic::partial_qsort<_Float16>(
- }
- #endif
-
--#elif defined(__AVX512F__)
--#error "x86simdsort requires AVX512DQ and AVX512VL to be enabled in addition to AVX512F to use AVX512"
--
--#elif defined(__AVX2__) && !defined(__AVX512F__)
-+#elif defined(__AVX2__)
- /* 32-bit and 64-bit dtypes vector definitions on AVX2 */
- #include "avx2-32bit-half.hpp"
- #include "avx2-32bit-qsort.hpp"