[Mlir-commits] [mlir] [TOSA] fix TileOp description (PR #125707)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Feb 4 08:00:29 PST 2025


https://github.com/Jerry-Ge created https://github.com/llvm/llvm-project/pull/125707

Simple textual fix to match TOSA v1.0 specification: https://www.mlplatform.org/tosa/tosa_spec.html#_tile

>From 1a2b2abfc8a689cf2cfd28b8fd575a65243a2ffd Mon Sep 17 00:00:00 2001
From: Arteen Abrishami <arteen.abrishami at arm.com>
Date: Wed, 10 Jul 2024 22:13:19 +0000
Subject: [PATCH] [TOSA] fix TileOp description

Signed-off-by: Arteen Abrishami <arteen.abrishami at arm.com>
Change-Id: I9dec76cde71dc95c5c89c7cd038668931724fc6c
---
 mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
index 819547855d1015..8ede271cc56a8a 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



More information about the Mlir-commits mailing list