Skip to content

Commit bdace10

Browse files
[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 <[email protected]>
1 parent 7c26356 commit bdace10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def Tosa_MatMulOp : Tosa_InferShapedTypeOp<"matmul"> {
301301
);
302302

303303
let results = (outs
304-
Tosa_Tensor3D:$c
304+
Tosa_Tensor3D:$output
305305
);
306306

307307
list<Availability> availability = [

0 commit comments

Comments
 (0)