[Mlir-commits] [mlir] [mlir][TilingInterface] Fix function names in docs (PR #165648)
Joshua Cao
llvmlistbot at llvm.org
Wed Oct 29 22:23:19 PDT 2025
https://github.com/caojoshua created https://github.com/llvm/llvm-project/pull/165648
None
>From 8872a9a6c394e5bf03315262df3f38d40373e89f Mon Sep 17 00:00:00 2001
From: Joshua Cao <cao.joshua at yahoo.com>
Date: Wed, 29 Oct 2025 22:19:10 -0700
Subject: [PATCH] [mlir][TilingInterface] Fix function names in docs
---
mlir/include/mlir/Interfaces/TilingInterface.td | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mlir/include/mlir/Interfaces/TilingInterface.td b/mlir/include/mlir/Interfaces/TilingInterface.td
index 0c0fc88aec95a..e0516abdfcf0c 100644
--- a/mlir/include/mlir/Interfaces/TilingInterface.td
+++ b/mlir/include/mlir/Interfaces/TilingInterface.td
@@ -57,8 +57,8 @@ def TilingInterface : OpInterface<"TilingInterface"> {
For an operation to be "tiled and fused" with its (already tiled) producer,
an operation has to implement the following additional methods (see
description below):
- - `getTiledImplementationFromOperandTile`
- - `getIterationDomainTileFromOperandTile`.
+ - `getTiledImplementationFromOperandTiles`
+ - `getIterationDomainTileFromOperandTiles`.
}];
let cppNamespace = "::mlir";
let methods = [
More information about the Mlir-commits
mailing list