[Mlir-commits] [mlir] 8785595 - [mlir][TilingInterface] Fix function names in docs (#165648)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Nov 1 20:05:42 PDT 2025
Author: Joshua Cao
Date: 2025-11-01T20:05:38-07:00
New Revision: 8785595b154042ee460069be1c0c8cca4d4e9d70
URL: https://github.com/llvm/llvm-project/commit/8785595b154042ee460069be1c0c8cca4d4e9d70
DIFF: https://github.com/llvm/llvm-project/commit/8785595b154042ee460069be1c0c8cca4d4e9d70.diff
LOG: [mlir][TilingInterface] Fix function names in docs (#165648)
Added:
Modified:
mlir/include/mlir/Interfaces/TilingInterface.td
Removed:
################################################################################
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