summaryrefslogtreecommitdiff
path: root/dev-python/numpy
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-10-25 01:41:34 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-10-25 01:41:34 +0000
commit36aa8446c8a741b8294be53e230eeacc17e4ab41 (patch)
treea4b0944cb797ac5a98ca995b9f82a292e09f0e7d /dev-python/numpy
parent71b30986f32c82b30a7cf8ddac509693bd0f2721 (diff)
downloadbaldeagleos-repo-36aa8446c8a741b8294be53e230eeacc17e4ab41.tar.gz
baldeagleos-repo-36aa8446c8a741b8294be53e230eeacc17e4ab41.tar.xz
baldeagleos-repo-36aa8446c8a741b8294be53e230eeacc17e4ab41.zip
Adding metadata
Diffstat (limited to 'dev-python/numpy')
-rw-r--r--dev-python/numpy/files/numpy-1.21.3-unaligned-array.patch45
-rw-r--r--dev-python/numpy/numpy-1.21.1-r1.ebuild (renamed from dev-python/numpy/numpy-1.21.1.ebuild)1
-rw-r--r--dev-python/numpy/numpy-1.21.2-r1.ebuild (renamed from dev-python/numpy/numpy-1.21.3.ebuild)1
-rw-r--r--dev-python/numpy/numpy-1.21.3-r1.ebuild (renamed from dev-python/numpy/numpy-1.21.2.ebuild)1
4 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/numpy/files/numpy-1.21.3-unaligned-array.patch b/dev-python/numpy/files/numpy-1.21.3-unaligned-array.patch
new file mode 100644
index 000000000000..8d04cc0968dc
--- /dev/null
+++ b/dev-python/numpy/files/numpy-1.21.3-unaligned-array.patch
@@ -0,0 +1,45 @@
+From d9bbd60d0f2896d1b1f865e6035dccb12db4b1a0 Mon Sep 17 00:00:00 2001
+From: Sebastian Berg <sebastian@sipsolutions.net>
+Date: Sat, 23 Oct 2021 22:54:21 -0500
+Subject: [PATCH] BUG: Do not use nonzero fastpath on unaligned arrays
+
+The fast-path does not handle unalgined access, previously only
+bools had a fast path (and bools are by definition always aligned
+since they are stored in a single byte/char).
+
+Closes gh-19592
+---
+ numpy/core/src/multiarray/item_selection.c | 19 +++++++------------
+ 1 file changed, 7 insertions(+), 12 deletions(-)
+
+diff --git a/numpy/core/src/multiarray/item_selection.c b/numpy/core/src/multiarray/item_selection.c
+index ee66378a938..33d378c2b58 100644
+--- a/numpy/core/src/multiarray/item_selection.c
++++ b/numpy/core/src/multiarray/item_selection.c
+@@ -2398,19 +2398,14 @@ PyArray_CountNonzero(PyArrayObject *self)
+ npy_intp *strideptr, *innersizeptr;
+ NPY_BEGIN_THREADS_DEF;
+
+- // Special low-overhead version specific to the boolean/int types
+ dtype = PyArray_DESCR(self);
+- switch(dtype->kind) {
+- case 'u':
+- case 'i':
+- case 'b':
+- if (dtype->elsize > 8) {
+- break;
+- }
+- return count_nonzero_int(
+- PyArray_NDIM(self), PyArray_BYTES(self), PyArray_DIMS(self),
+- PyArray_STRIDES(self), dtype->elsize
+- );
++ /* Special low-overhead version specific to the boolean/int types */
++ if (PyArray_ISALIGNED(self) && (
++ PyDataType_ISBOOL(dtype) || PyDataType_ISINTEGER(dtype))) {
++ return count_nonzero_int(
++ PyArray_NDIM(self), PyArray_BYTES(self), PyArray_DIMS(self),
++ PyArray_STRIDES(self), dtype->elsize
++ );
+ }
+
+ nonzero = PyArray_DESCR(self)->f->nonzero;
diff --git a/dev-python/numpy/numpy-1.21.1.ebuild b/dev-python/numpy/numpy-1.21.1-r1.ebuild
index fce45629c5f0..d211ef3a1542 100644
--- a/dev-python/numpy/numpy-1.21.1.ebuild
+++ b/dev-python/numpy/numpy-1.21.1-r1.ebuild
@@ -45,6 +45,7 @@ BDEPEND="
PATCHES=(
"${FILESDIR}"/numpy-1.21.0-no-hardcode-blasv2.patch
+ "${FILESDIR}"/numpy-1.21.3-unaligned-array.patch
)
distutils_enable_tests pytest
diff --git a/dev-python/numpy/numpy-1.21.3.ebuild b/dev-python/numpy/numpy-1.21.2-r1.ebuild
index 7e6d544d571b..41abfe2f497a 100644
--- a/dev-python/numpy/numpy-1.21.3.ebuild
+++ b/dev-python/numpy/numpy-1.21.2-r1.ebuild
@@ -45,6 +45,7 @@ BDEPEND="
PATCHES=(
"${FILESDIR}"/numpy-1.21.0-no-hardcode-blasv2.patch
+ "${FILESDIR}"/numpy-1.21.3-unaligned-array.patch
)
distutils_enable_tests pytest
diff --git a/dev-python/numpy/numpy-1.21.2.ebuild b/dev-python/numpy/numpy-1.21.3-r1.ebuild
index 7e6d544d571b..97ab6d7514e4 100644
--- a/dev-python/numpy/numpy-1.21.2.ebuild
+++ b/dev-python/numpy/numpy-1.21.3-r1.ebuild
@@ -45,6 +45,7 @@ BDEPEND="
PATCHES=(
"${FILESDIR}"/numpy-1.21.0-no-hardcode-blasv2.patch
+ "${FILESDIR}"/${P}-unaligned-array.patch
)
distutils_enable_tests pytest