Skip to content

Commit 2401f5f

Browse files
committed
Update CustomOp's dialect input and output names
Update input name from input to input_list Update output name from outputs to output_list Signed-off-by: Jerry Ge <[email protected]>
1 parent b8daa45 commit 2401f5f

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
@@ -2010,11 +2010,11 @@ def Tosa_CustomOp : Tosa_Op<"custom"> {
20102010
StrAttr:$operator_name,
20112011
StrAttr:$domain_name,
20122012
StrAttr:$implementation_attrs,
2013-
Variadic<Tosa_Tensor>:$inputs
2013+
Variadic<Tosa_Tensor>:$input_list
20142014
);
20152015

20162016
let results = (outs
2017-
Variadic<Tosa_Tensor>:$outputs
2017+
Variadic<Tosa_Tensor>:$output_list
20182018
);
20192019

20202020
let assemblyFormat = "operands attr-dict `:` functional-type(operands, results)";

0 commit comments

Comments
 (0)