diff options
author | mattip <matti.picus@gmail.com> | 2023-02-09 18:40:50 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2023-02-09 18:40:50 +0200 |
commit | 8a4692f98d57cfa246199bd77f6cc7d1f15014e4 (patch) | |
tree | ecf80b647fb572c828d5fd38036a5fb7cb36ed6a /doc | |
parent | 11a7e2d4aa85e902384bcb9459a83045fab602b4 (diff) | |
download | numpy-8a4692f98d57cfa246199bd77f6cc7d1f15014e4.tar.gz |
DOC: update release blurb
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/23136.performance.rst | 3 |
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. |