[Mlir-commits] [mlir] 8ef96d1 - [mlir] fix markdown in VectorOps.td

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Oct 17 06:28:43 PDT 2022


Author: Oleksandr "Alex" Zinenko
Date: 2022-10-17T15:28:36+02:00
New Revision: 8ef96d141a7247832986099722907ca44bbb7ec4

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

LOG: [mlir] fix markdown in VectorOps.td

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 71ded86f8624d..2b3ed4664f6c7 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
+++ b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -114,22 +114,23 @@ def Vector_ContractionOp :
     An iterator type attribute list must be specified, where each element of
     the list represents an iterator with one of the following types:
 
-    *) "reduction": reduction dimensions are present in the lhs and rhs
-                    arguments but not in the output (and accumulator
-                    argument). These are the dimensions along which the vector
-                    contraction op computes the sum of products, and
-                    contracting dimension pair dimension sizes must match
-                    between lhs/rhs.
-    *) "parallel": Batch dimensions are iterator type "parallel", and
-                   are non-contracting dimensions present in the lhs, rhs and
-                   output. The lhs/rhs co-iterate along the batch dimensions,
-                   which should be expressed in their indexing maps.
-
-                   Free dimensions are iterator type "parallel", and are
-                   non-contraction, non-batch dimensions accessed by either the
-                   lhs or rhs (but not both). The lhs and rhs free dimensions
-                   are unrelated to each other and do not co-iterate, which
-                   should be expressed in their indexing maps.
+    *   "reduction": reduction dimensions are present in the lhs and rhs
+        arguments but not in the output (and accumulator
+        argument). These are the dimensions along which the vector
+        contraction op computes the sum of products, and
+        contracting dimension pair dimension sizes must match
+        between lhs/rhs.
+
+    *   "parallel": Batch dimensions are iterator type "parallel", and
+        are non-contracting dimensions present in the lhs, rhs and
+        output. The lhs/rhs co-iterate along the batch dimensions,
+        which should be expressed in their indexing maps.
+
+        Free dimensions are iterator type "parallel", and are
+        non-contraction, non-batch dimensions accessed by either the
+        lhs or rhs (but not both). The lhs and rhs free dimensions
+        are unrelated to each other and do not co-iterate, which
+        should be expressed in their indexing maps.
 
     An indexing map attribute list must be specified with an entry for lhs, rhs
     and acc arguments. An indexing map attribute specifies a mapping from each


        


More information about the Mlir-commits mailing list