summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2023-02-09 18:40:50 +0200
committermattip <matti.picus@gmail.com>2023-02-09 18:40:50 +0200
commit8a4692f98d57cfa246199bd77f6cc7d1f15014e4 (patch)
treeecf80b647fb572c828d5fd38036a5fb7cb36ed6a /doc
parent11a7e2d4aa85e902384bcb9459a83045fab602b4 (diff)
downloadnumpy-8a4692f98d57cfa246199bd77f6cc7d1f15014e4.tar.gz
DOC: update release blurb
Diffstat (limited to 'doc')
-rw-r--r--doc/release/upcoming_changes/23136.performance.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/release/upcoming_changes/23136.performance.rst b/doc/release/upcoming_changes/23136.performance.rst
index 107241dda..1096f8bd1 100644
--- a/doc/release/upcoming_changes/23136.performance.rst
+++ b/doc/release/upcoming_changes/23136.performance.rst
@@ -8,7 +8,8 @@ Generic ``ufunc.at`` can be up to 9x faster. The conditions for this speedup:
If ufuncs with appropriate indexed loops on 1d arguments with the above
conditions, ``ufunc.at`` can be up to 60x faster (an additional 7x speedup).
Appropriate indexed loops have been added to ``add``, ``subtract``,
-``multiply``, ``divide`` (and ``floor_divide``)
+``multiply``, ``floor_divide``, ``maximum``, ``minimum``, ``fmax``, and
+``fmin``.
The internal logic is similar to the logic used for regular ufuncs, which also
have fast paths.