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 @@ -2013,9 +2013,9 @@ def Tosa_CustomOp : Tosa_Op<"custom"> {
2013
2013
`implementation_attrs` is a string which is a backend and identifier specific
2014
2014
set of attributes to the custom operator.
2015
2015
2016
- `inputs ` is the set of tensor inputs to the custom operator.
2016
+ `input_list ` is the set of tensor inputs to the custom operator.
2017
2017
2018
- `outputs is the list of tensors returned by the operator. The number of operators
2018
+ `output_list` is the list of tensors returned by the operator. The number of operators
2019
2019
is backend specific.
2020
2020
2021
2021
Example:
@@ -2031,11 +2031,11 @@ def Tosa_CustomOp : Tosa_Op<"custom"> {
2031
2031
StrAttr:$operator_name,
2032
2032
StrAttr:$domain_name,
2033
2033
StrAttr:$implementation_attrs,
2034
- Variadic<Tosa_Tensor>:$inputs
2034
+ Variadic<Tosa_Tensor>:$input_list
2035
2035
);
2036
2036
2037
2037
let results = (outs
2038
- Variadic<Tosa_Tensor>:$outputs
2038
+ Variadic<Tosa_Tensor>:$output_list
2039
2039
);
2040
2040
2041
2041
let assemblyFormat = "operands attr-dict `:` functional-type(operands, results)";
You can’t perform that action at this time.
0 commit comments