[Mlir-commits] [mlir] [mlir][tosa] Rename the result of MATMUL from `c` to `output` (PR #129274)
Tai Ly
llvmlistbot at llvm.org
Fri Feb 28 09:18:45 PST 2025
https://github.com/Tai78641 created https://github.com/llvm/llvm-project/pull/129274
This renames the output of TOSA MatMul operator from `c` to `output`
to align to TOSA spec
>From 2894013132252284ea7f505af26ad2fe42446678 Mon Sep 17 00:00:00 2001
From: TatWai Chong <tatwai.chong at arm.com>
Date: Tue, 10 Sep 2024 22:10:13 -0700
Subject: [PATCH] Rename the result of MATMUL from `c` to `output`
Term alignment between the spec and dialect.
Change-Id: I8dd88e4e4d9393903f195fde4fee2d22fa1acb00
---
mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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