diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td index 40aa2898d6edd..e5e30dbe27069 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> ``` }];