[Mlir-commits] [mlir] 5d489f4 - [mlir][tosa] Align AbsOp example variable names (#135268)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Apr 14 09:28:00 PDT 2025
Author: Jerry-Ge
Date: 2025-04-14T09:27:57-07:00
New Revision: 5d489f484867b7ddcb3efe51144a133970921082
URL: https://github.com/llvm/llvm-project/commit/5d489f484867b7ddcb3efe51144a133970921082
DIFF: https://github.com/llvm/llvm-project/commit/5d489f484867b7ddcb3efe51144a133970921082.diff
LOG: [mlir][tosa] Align AbsOp example variable names (#135268)
* Minor example variable name alignment
Signed-off-by: Jerry Ge <jerry.ge 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 1ec56a77593c2..c94edad62cac7 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -1131,7 +1131,7 @@ def Tosa_AbsOp : Tosa_ElementwiseUnaryOp<"abs"> {
Example:
```mlir
- %out = tosa.abs(%in) : (tensor<21x3xf32>) -> tensor<21x3xf32>
+ %output = tosa.abs(%input1) : (tensor<21x3xf32>) -> tensor<21x3xf32>
```
}];
More information about the Mlir-commits
mailing list