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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Oct 31 16:15:49 PDT 2023


Author: Jakub Kuderski
Date: 2023-10-31T19:15:44-04:00
New Revision: c5dafd15ae334b71672c8e30f0e7c5f0a580a4ac

URL: https://github.com/llvm/llvm-project/commit/c5dafd15ae334b71672c8e30f0e7c5f0a580a4ac
DIFF: https://github.com/llvm/llvm-project/commit/c5dafd15ae334b71672c8e30f0e7c5f0a580a4ac.diff

LOG: [mlir][vector] Clean up outerproduct docs. NFC. (#70824)

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

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Vector/IR/VectorOps.td

Removed: 
    


################################################################################
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