diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-12 16:02:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-12 16:02:21 -0600 |
commit | 1f981eddb7108ac18a7eabfa5ad9cfaecd247b13 (patch) | |
tree | 77749d35b3a0caca3e8ef095801fe0a01d8c8a50 | |
parent | 65425e34ccdcfa3e95881fb5d4d2e0b5dbd9ab17 (diff) | |
download | numpy-1f981eddb7108ac18a7eabfa5ad9cfaecd247b13.tar.gz |
DOC: Update 1.15.0 release notes
-rw-r--r-- | doc/release/1.15.0-notes.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release/1.15.0-notes.rst b/doc/release/1.15.0-notes.rst index fc2af11a2..3c7d3fd61 100644 --- a/doc/release/1.15.0-notes.rst +++ b/doc/release/1.15.0-notes.rst @@ -222,5 +222,13 @@ the user wants to perform a stable sort thus harming the readability. This change allows the user to specify kind='stable' thus clarifying the intent. +Do not make temporary copies for in-place accumulation +------------------------------------------------------ +When ufuncs perform accumulation they no longer make temporary copies because +of the overlap between input an output, that is, the next element accumulated +is added before the accumulated result is stored in its place, hence the +overlap is safe. Avoiding the copy results in faster execution. + + Changes ======= |