[Mlir-commits] [mlir] [mlir][memref] Rename ReifyRankedShapedTypeShapeOpInterface in comments (PR #72663)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Nov 17 07:21:54 PST 2023


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir-memref

Author: Boian Petkantchin (sogartar)

<details>
<summary>Changes</summary>

ReifyRankedShapedTypeShapeOpInterface does not exis. ReifyRankedShapedTypeShapeOpInterface -> ReifyRankedShapedTypeOpInterface.

---
Full diff: https://github.com/llvm/llvm-project/pull/72663.diff


1 Files Affected:

- (modified) mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h (+2-2) 


``````````diff
diff --git a/mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h b/mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h
index f502aac79927094..d7050156862dfe4 100644
--- a/mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h
+++ b/mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h
@@ -59,13 +59,13 @@ std::unique_ptr<OperationPass<ModuleOp>> createNormalizeMemRefsPass();
 
 /// Creates an operation pass to resolve `memref.dim` operations with values
 /// that are defined by operations that implement the
-/// `ReifyRankedShapeTypeShapeOpInterface`, in terms of shapes of its input
+/// `ReifyRankedShapedTypeOpInterface`, in terms of shapes of its input
 /// operands.
 std::unique_ptr<Pass> createResolveRankedShapeTypeResultDimsPass();
 
 /// Creates an operation pass to resolve `memref.dim` operations with values
 /// that are defined by operations that implement the
-/// `InferShapedTypeOpInterface` or the `ReifyRankedShapeTypeShapeOpInterface`,
+/// `InferShapedTypeOpInterface` or the `ReifyRankedShapedTypeOpInterface`,
 /// in terms of shapes of its input operands.
 std::unique_ptr<Pass> createResolveShapedTypeResultDimsPass();
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/72663


More information about the Mlir-commits mailing list