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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Feb 4 08:07:15 PST 2025


Author: Jerry-Ge
Date: 2025-02-04T08:07:11-08:00
New Revision: 389d1359f330c55098d75f00efe03749943d98e7

URL: https://github.com/llvm/llvm-project/commit/389d1359f330c55098d75f00efe03749943d98e7
DIFF: https://github.com/llvm/llvm-project/commit/389d1359f330c55098d75f00efe03749943d98e7.diff

LOG: [TOSA] fix TileOp description (#125707)

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

Signed-off-by: Arteen Abrishami <arteen.abrishami at arm.com>
Co-authored-by: Arteen Abrishami <arteen.abrishami at arm.com>

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td

Removed: 
    


################################################################################
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


        


More information about the Mlir-commits mailing list