File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
mlir/include/mlir/Dialect/Tosa/IR Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1992,9 +1992,9 @@ def Tosa_CustomOp : Tosa_Op<"custom"> {
1992
1992
`implementation_attrs` is a string which is a backend and identifier specific
1993
1993
set of attributes to the custom operator.
1994
1994
1995
- `inputs ` is the set of tensor inputs to the custom operator.
1995
+ `input_list ` is the set of tensor inputs to the custom operator.
1996
1996
1997
- `outputs is the list of tensors returned by the operator. The number of operators
1997
+ `output_list` is the list of tensors returned by the operator. The number of operators
1998
1998
is backend specific.
1999
1999
2000
2000
Example:
@@ -2010,11 +2010,11 @@ def Tosa_CustomOp : Tosa_Op<"custom"> {
2010
2010
StrAttr:$operator_name,
2011
2011
StrAttr:$domain_name,
2012
2012
StrAttr:$implementation_attrs,
2013
- Variadic<Tosa_Tensor>:$inputs
2013
+ Variadic<Tosa_Tensor>:$input_list
2014
2014
);
2015
2015
2016
2016
let results = (outs
2017
- Variadic<Tosa_Tensor>:$outputs
2017
+ Variadic<Tosa_Tensor>:$output_list
2018
2018
);
2019
2019
2020
2020
let assemblyFormat = "operands attr-dict `:` functional-type(operands, results)";
You can’t perform that action at this time.
0 commit comments