[Mlir-commits] [mlir] [mlir][vector] Clean up outerproduct docs. NFC. (PR #70824)

Jakub Kuderski llvmlistbot at llvm.org
Tue Oct 31 09:35:35 PDT 2023


https://github.com/kuhar created https://github.com/llvm/llvm-project/pull/70824

Remove outdated content.
Suggested by @dcaballe in https://github.com/llvm/llvm-project/pull/70673.

>From 667ea7c860b756617a8e3b35a511bd2ffbcc976f Mon Sep 17 00:00:00 2001
From: Jakub Kuderski <jakub at nod-labs.com>
Date: Tue, 31 Oct 2023 12:34:08 -0400
Subject: [PATCH] [mlir][vector] Clean up outerproduct docs. NFC.

Remove outdated content.
Suggested by @dcaballe in
https://github.com/llvm/llvm-project/pull/70673.
---
 mlir/include/mlir/Dialect/Vector/IR/VectorOps.td | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
index 62ae300b3cdc8da..e6189bce88f522b 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
+++ b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -942,10 +942,7 @@ def Vector_OuterProductOp :
 
     An optional kind attribute may be specified to be: `add`/`mul`/`minsi`
     /`minui`/`maxsi`/`maxui`/`and`/`or`/`xor` for integers, and `add`/`mul`
-    /`minf`/`maxf`/`minimumf`/`maximumf` for floats.
-    The default is `add`, in which case the operation returns a fused
-    multiply-add. In other cases it returns a multiply followed by the
-    appropriate operation (for example, a compare and select for `maxf`).
+    /`minf`/`maxf`/`minimumf`/`maximumf` for floats. The default is `add`.
 
     Example:
 



More information about the Mlir-commits mailing list