[Mlir-commits] [mlir] [mlir][memref] Rename ReifyRankedShapedTypeShapeOpInterface in comments (PR #72663)
Boian Petkantchin
llvmlistbot at llvm.org
Fri Nov 17 07:21:23 PST 2023
https://github.com/sogartar created https://github.com/llvm/llvm-project/pull/72663
ReifyRankedShapedTypeShapeOpInterface does not exis. ReifyRankedShapedTypeShapeOpInterface -> ReifyRankedShapedTypeOpInterface.
>From 639b110435228f8918d0a4b9c92f998c3f47be03 Mon Sep 17 00:00:00 2001
From: Boian Petkantchin <boian at nod-labs.com>
Date: Mon, 13 Nov 2023 09:21:17 -0800
Subject: [PATCH] [mlir][memref] Rename ReifyRankedShapedTypeShapeOpInterface
in comments
ReifyRankedShapedTypeShapeOpInterface does not exis.
ReifyRankedShapedTypeShapeOpInterface -> ReifyRankedShapedTypeOpInterface.
---
mlir/include/mlir/Dialect/MemRef/Transforms/Passes.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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();
More information about the Mlir-commits
mailing list