diff options
author | sslivkoff <stormslivkoff@gmail.com> | 2020-04-29 14:08:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 00:08:27 +0300 |
commit | 4753652c605833e2398d7e46b754a71729a54713 (patch) | |
tree | 2d3e24c3d06a31053893cbae0b64b9401596617f /doc | |
parent | 44e26f24621ce86ed6b24bfba4a04e82319d7bf0 (diff) | |
download | numpy-4753652c605833e2398d7e46b754a71729a54713.tar.gz |
ENH: update numpy.linalg.multi_dot to accept an `out` argument (#15715)
* ENH: update numpy.linalg.multi_dot to accept an `out` argument
* TST ensure value returned by numpy.linalg.multi_dot matches out
* DOC add note about initial call to numpy.linalg.multi_dot
* DOC add release note for #15715
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/15715.new_feature.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/15715.new_feature.rst b/doc/release/upcoming_changes/15715.new_feature.rst new file mode 100644 index 000000000..a568aee64 --- /dev/null +++ b/doc/release/upcoming_changes/15715.new_feature.rst @@ -0,0 +1,5 @@ +`numpy.linalg.multi_dot` now accepts an ``out`` argument +-------------------------------------------------------- + +``out`` can be used to avoid creating unnecessary copies of the final product +computed by `numpy.linalg.multidot`. |