Skip to content

Commit 476b1a6

Browse files
authored
[TOSA] Update input name for Sin and Cos operators (#107606)
Update the dialect input names from input to input1 for Sin/Cos for consistency. Signed-off-by: Jerry Ge <[email protected]>
1 parent da11ede commit 476b1a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ def Tosa_CosOp : Tosa_ElementwiseOp<"cos",
10041004
}];
10051005

10061006
let arguments = (ins
1007-
Tosa_FloatTensor:$input
1007+
Tosa_FloatTensor:$input1
10081008
);
10091009

10101010
let results = (outs
@@ -1183,7 +1183,7 @@ def Tosa_SinOp : Tosa_ElementwiseOp<"sin",
11831183
}];
11841184

11851185
let arguments = (ins
1186-
Tosa_FloatTensor:$input
1186+
Tosa_FloatTensor:$input1
11871187
);
11881188

11891189
let results = (outs

0 commit comments

Comments
 (0)