[Mlir-commits] [mlir] Update PowOp's dialect output name from z to output (PR #118407)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Dec 2 14:34:37 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir-tosa

Author: Jerry-Ge (Jerry-Ge)

<details>
<summary>Changes</summary>

To match the latest specification: https://www.mlplatform.org/tosa/tosa_spec.html#_pow

---
Full diff: https://github.com/llvm/llvm-project/pull/118407.diff


1 Files Affected:

- (modified) mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td (+1-1) 


``````````diff
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
   );
 }
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/118407


More information about the Mlir-commits mailing list