diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-01-16 14:30:24 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-01-16 14:30:24 -0700 |
commit | d65d871b16344e1b18accc87b214c8316909faf7 (patch) | |
tree | f0a2df184217fc581ae8220441abfa9a1c737e98 /doc/release | |
parent | 0bacdf63d45cafaeabc2de9fa792ff1155f3ef1f (diff) | |
parent | 150497560047956f3c179a5ff10e9b2f5ec83508 (diff) | |
download | numpy-d65d871b16344e1b18accc87b214c8316909faf7.tar.gz |
Merge pull request #7034 from jakirkham/bench_matmul
BENCH, DOC: Benchmark matmul and update documentation
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/1.11.0-notes.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/release/1.11.0-notes.rst b/doc/release/1.11.0-notes.rst index 16af02440..c4ff89230 100644 --- a/doc/release/1.11.0-notes.rst +++ b/doc/release/1.11.0-notes.rst @@ -149,11 +149,12 @@ useless computations when printing a masked array. The function now uses the fallocate system call to reserve sufficient diskspace on filesystems that support it. -``np.dot`` optimized for operations of the form ``A.T @ A`` and ``A @ A.T`` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Optimizations for operations of the form ``A.T @ A`` and ``A @ A.T`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Previously, ``gemm`` BLAS operations were used for all matrix products. Now, if the matrix product is between a matrix and its transpose, it will use -``syrk`` BLAS operations for a performance boost. +``syrk`` BLAS operations for a performance boost. This optimization has been +extended to ``@``, ``numpy.dot``, ``numpy.inner``, and ``numpy.matmul``. **Note:** Requires the transposed and non-transposed matrices to share data. |