diff options
author | Ganesh Kathiresan <ganesh3597@gmail.com> | 2022-04-18 20:23:12 +0530 |
---|---|---|
committer | Ganesh Kathiresan <ganesh3597@gmail.com> | 2022-04-18 20:23:15 +0530 |
commit | e18e3123d2483497d6c006d2ab251e01fb66be60 (patch) | |
tree | d0990478834a5bcf0745192f20dacc2ae3a9e855 | |
parent | 8e447c8d64fc88390a5dcc4f205fad40fe470f4e (diff) | |
download | numpy-e18e3123d2483497d6c006d2ab251e01fb66be60.tar.gz |
ENH: Improve `np.kron` performance (#21354)
-rw-r--r-- | doc/release/upcoming_changes/21354.performance.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/21354.performance.rst b/doc/release/upcoming_changes/21354.performance.rst new file mode 100644 index 000000000..44c0df473 --- /dev/null +++ b/doc/release/upcoming_changes/21354.performance.rst @@ -0,0 +1,4 @@ +Faster ``np.kron`` +------------------ +`numpy.kron` is about 80% faster as the product is now computed +using broadcasting. |