[Mlir-commits] [mlir] f4ce7e0 - [MLIR][TOSA] Update PowOp output name from z to output (#118407)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Dec 3 03:12:47 PST 2024
Author: Jerry-Ge
Date: 2024-12-03T19:12:43+08:00
New Revision: f4ce7e037828eaf3720c9169e94e85b7a106deba
URL: https://github.com/llvm/llvm-project/commit/f4ce7e037828eaf3720c9169e94e85b7a106deba
DIFF: https://github.com/llvm/llvm-project/commit/f4ce7e037828eaf3720c9169e94e85b7a106deba.diff
LOG: [MLIR][TOSA] Update PowOp output name from z to output (#118407)
To match the latest specification:
https://www.mlplatform.org/tosa/tosa_spec.html#_pow
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 9f57efff5d1fd2..c786f396a24cdf 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -828,7 +828,7 @@ def Tosa_PowOp : Tosa_ElementwiseOp<"pow", [SameOperandsAndResultElementType]> {
);
let results = (outs
- Tosa_Tensor:$z
+ Tosa_Tensor:$output
);
}
More information about the Mlir-commits
mailing list