[Mlir-commits] [mlir] e2224dd - Fix typo introduced in https://reviews.llvm.org/D97006

Geoffrey Martin-Noble llvmlistbot at llvm.org
Mon Feb 22 13:11:45 PST 2021


Author: Geoffrey Martin-Noble
Date: 2021-02-22T13:11:37-08:00
New Revision: e2224dd7538001fe5ffb53f080334436427a8e70

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

LOG: Fix typo introduced in https://reviews.llvm.org/D97006

Differential Revision: https://reviews.llvm.org/D97220

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td b/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
index 7b88730835b6..dbb21a752cf1 100644
--- a/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
+++ b/mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
@@ -37,7 +37,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
   let methods = [
     InterfaceMethod<
     /*desc=*/[{
-      Returns whether the given op has indexing maps the correspond to a
+      Returns whether the given op has indexing maps that correspond to a
       row-major matmul operation.
     }],
     /*retTy=*/"bool",
@@ -48,7 +48,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
     }]>,
     InterfaceMethod<
     /*desc=*/[{
-      Returns whether the given op has indexing maps the correspond to a
+      Returns whether the given op has indexing maps that correspond to a
       column-major matmul operation.
     }],
     /*retTy=*/"bool",
@@ -59,7 +59,7 @@ def LinalgContractionOpInterface : OpInterface<"ContractionOpInterface"> {
     }]>,
     InterfaceMethod<
     /*desc=*/[{
-      Returns whether the given op has indexing maps the correspond to a
+      Returns whether the given op has indexing maps that correspond to a
       row-major batch matmul operation.
     }],
     /*retTy=*/"bool",


        


More information about the Mlir-commits mailing list