[Mlir-commits] [mlir] [TOSA] fix TileOp description (PR #125707)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Feb 4 08:01:19 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-tosa
Author: Jerry-Ge (Jerry-Ge)
<details>
<summary>Changes</summary>
Simple textual fix to match TOSA v1.0 specification: https://www.mlplatform.org/tosa/tosa_spec.html#_tile
---
Full diff: https://github.com/llvm/llvm-project/pull/125707.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td (+1-1)
``````````diff
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
index 819547855d1015b..8ede271cc56a8a9 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -1700,7 +1700,7 @@ def Tosa_TileOp : Tosa_InferShapedTypeOp<"tile"> {
let summary = "Tile operator";
let description = [{
- Replicates input 0 multiplies times along each dimension.
+ Replicates input1 multiplies times along each dimension.
}];
let arguments = (ins
``````````
</details>
https://github.com/llvm/llvm-project/pull/125707
More information about the Mlir-commits
mailing list