[llvm-branch-commits] [llvm] 456e9c2 - [ReleaseNotes] Mention new matrix intrinsics.
Florian Hahn via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Feb 26 08:56:56 PST 2020
Author: Florian Hahn
Date: 2020-02-26T16:56:04Z
New Revision: 456e9c2e14bc936100f1d84e7637122b306d8c4c
URL: https://github.com/llvm/llvm-project/commit/456e9c2e14bc936100f1d84e7637122b306d8c4c
DIFF: https://github.com/llvm/llvm-project/commit/456e9c2e14bc936100f1d84e7637122b306d8c4c.diff
LOG: [ReleaseNotes] Mention new matrix intrinsics.
Reviewers: anemet, Gerolf
Reviewed By: anemet
Differential Revision: https://reviews.llvm.org/D75161
Added:
Modified:
llvm/docs/LangRef.rst
llvm/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 0ae374de4b65..190c282eacc9 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -14553,6 +14553,9 @@ Arguments:
""""""""""
The argument to this intrinsic must be a vector of floating-point values.
+
+.. _i_matrixintrinsics:
+
Matrix Intrinsics
-----------------
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 60dd07ddb26f..6ade99ab174f 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -106,6 +106,12 @@ Non-comprehensive list of changes in this release
still under heavy development and disabled by default, to enable an early run
pass ``-mllvm -attributor-disable=false`` to an invocation of clang.
+* New matrix math intrinsics have been added to LLVM
+ (see :ref:`LLVM Language Reference Manual <i_matrixintrinsics>`), together
+ with the LowerMatrixIntrinsics pass. The pass lowers matrix intrinsics
+ to a set of efficient vector instructions. The lowering pass is off
+ by default and can be enabled by passing ``-mllvm -enable-matrix`` to an
+ invocation of clang.
Changes to the LLVM IR
More information about the llvm-branch-commits
mailing list