summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorGanesh Kathiresan <ganesh3597@gmail.com>2020-11-23 14:45:56 +0530
committerGanesh Kathiresan <ganesh3597@gmail.com>2020-11-23 14:45:56 +0530
commit8912ffd9da549bb5a4dbb34eb9de10fd1c19ce43 (patch)
tree2e1750a63638fc1914c659ac7b6b45625022b754 /doc/release
parent2fde590521fd88bde9e9df1c960e38df438bd040 (diff)
downloadnumpy-8912ffd9da549bb5a4dbb34eb9de10fd1c19ce43.tar.gz
DOC: Improved floor division (#17727)
Diffstat (limited to 'doc/release')
-rwxr-xr-xdoc/release/upcoming_changes/17727.performance.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/release/upcoming_changes/17727.performance.rst b/doc/release/upcoming_changes/17727.performance.rst
index c3a08bc8e..7b447a3b2 100755
--- a/doc/release/upcoming_changes/17727.performance.rst
+++ b/doc/release/upcoming_changes/17727.performance.rst
@@ -1,7 +1,7 @@
Improved performance in integer division of NumPy arrays
--------------------------------------------------------
-Integer division of NumPy arrays now uses libdivide when
-the divisor is a constant. With the usage of libdivde and
+Integer division of NumPy arrays now uses `libdivide <https://libdivide.com/>`
+when the divisor is a constant. With the usage of libdivde and
other minor optimizations, there is a large speedup.
The ``//`` operator and ``np.floor_divide`` makes use
of the new changes.