[Mlir-commits] [mlir] bdace10 - [mlir][tosa] Rename the result of MATMUL from `c` to `output` (#129274)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Feb 28 09:44:08 PST 2025
Author: Tai Ly
Date: 2025-02-28T09:44:05-08:00
New Revision: bdace105387f24ada9744147e06e789503a74143
URL: https://github.com/llvm/llvm-project/commit/bdace105387f24ada9744147e06e789503a74143
DIFF: https://github.com/llvm/llvm-project/commit/bdace105387f24ada9744147e06e789503a74143.diff
LOG: [mlir][tosa] Rename the result of MATMUL from `c` to `output` (#129274)
This renames the output of TOSA MatMul operator from `c` to `output`
to align to TOSA spec
Co-authored-by: TatWai Chong <tatwai.chong 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 ddfec2c9bfcd3..1f4f1fc6b96c9 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -301,7 +301,7 @@ def Tosa_MatMulOp : Tosa_InferShapedTypeOp<"matmul"> {
);
let results = (outs
- Tosa_Tensor3D:$c
+ Tosa_Tensor3D:$output
);
list<Availability> availability = [
More information about the Mlir-commits
mailing list