blob: ea91869f7efb892ae5cfa1292c645be645e9977c [file] [log] [blame]
Eric Kunze2364dcd2021-04-26 11:06:57 -07001
2// Copyright (c) 2020-2021, ARM Limited.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16/*
17 Syntax:
18 DEF_ATTRIBUTE(ATTRIBUTE_NAME, NUM_ARGS_IN_ATTRIBUTES, ARG0_TYPE, ARG0_SCALAR_OR_VECTOR, ARGS0_NAME, ...)
19
20 Description:
21 ATTRIBUTE_NAME: corresponding attribute name, must match corresponding "table XXXAttribute" in tosa.fbs
22 NUM_ARGS_IN_ATTRIBUTES: number of arguments in this attribute
23 ARG0_TYPE: data type of arg0 in attribute
24 ARG0_SCALAR_OR_VECTOR: is arg0 a scalar(S) or a vector(V)
25 ARG0_NAME: name of arg0
26 ...: variadic variables for more arguments, depending on NUM_ARGS_IN_ATTRIBUTES
27*/
28
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000029DEF_ATTRIBUTE(Pool, 5,
TatWai Chong7be71652022-05-10 17:26:20 -070030 int32_t, V, pad,
Eric Kunze2364dcd2021-04-26 11:06:57 -070031 int32_t, V, kernel,
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000032 int32_t, V, stride,
33 int32_t, S, input_zp,
34 int32_t, S, output_zp)
Eric Kunze2364dcd2021-04-26 11:06:57 -070035
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000036DEF_ATTRIBUTE(Conv, 5,
TatWai Chong7be71652022-05-10 17:26:20 -070037 int32_t, V, pad,
Eric Kunze2364dcd2021-04-26 11:06:57 -070038 int32_t, V, stride,
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000039 int32_t, V, dilation,
40 int32_t, S, input_zp,
41 int32_t, S, weight_zp)
Eric Kunze2364dcd2021-04-26 11:06:57 -070042
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000043DEF_ATTRIBUTE(TransposeConv, 5,
Eric Kunze7ffa1ff2022-06-01 17:26:48 -070044 int32_t, V, out_pad,
Eric Kunze2364dcd2021-04-26 11:06:57 -070045 int32_t, V, stride,
Eric Kunzebdcc3fe2022-06-07 05:17:37 +000046 int32_t, V, output_shape,
47 int32_t, S, input_zp,
48 int32_t, S, weight_zp)
Eric Kunze2364dcd2021-04-26 11:06:57 -070049
Kevin Cheng38d214c2021-10-15 15:49:19 -070050DEF_ATTRIBUTE(Pad, 3,
51 int32_t, V, padding,
52 int32_t, S, pad_const_int,
53 float, S, pad_const_fp)
Eric Kunze2364dcd2021-04-26 11:06:57 -070054
55DEF_ATTRIBUTE(Axis, 1,
56 int32_t, S, axis)
57
58DEF_ATTRIBUTE(Reshape, 1,
TatWai Chong7be71652022-05-10 17:26:20 -070059 int32_t, V, new_shape)
Eric Kunze2364dcd2021-04-26 11:06:57 -070060
61DEF_ATTRIBUTE(Slice, 2,
TatWai Chong7be71652022-05-10 17:26:20 -070062 int32_t, V, start,
Eric Kunze2364dcd2021-04-26 11:06:57 -070063 int32_t, V, size)
64
65DEF_ATTRIBUTE(Tile, 1,
66 int32_t, V, multiples)
67
68DEF_ATTRIBUTE(Resize, 7,
69 int32_t, V, output_size,
70 int32_t, V, stride,
71 int32_t, V, offset,
72 int32_t, S, shift,
73 float, V, stride_fp,
74 float, V, offset_fp,
75 ResizeMode, S, mode)
76
77DEF_ATTRIBUTE(Clamp, 4,
78 int32_t, S, min_int,
79 int32_t, S, max_int,
80 float, S, min_fp,
81 float, S, max_fp)
82
83DEF_ATTRIBUTE(Rescale, 7,
84 int32_t, S, input_zp,
85 int32_t, S, output_zp,
86 int32_t, V, multiplier,
87 int32_t, V, shift,
88 bool, S, scale32,
89 bool, S, double_round,
90 bool, S, per_channel)
91
92DEF_ATTRIBUTE(Mul, 1,
93 int32_t, S, shift)
94
95DEF_ATTRIBUTE(ArithmeticRightShift, 1,
96 bool, S, round)
97
98DEF_ATTRIBUTE(CondIf, 2,
99 string, S, then_branch,
100 string, S, else_branch)
101
102DEF_ATTRIBUTE(WhileLoop, 2,
103 string, S, cond_branch,
104 string, S, body_branch)
Kevin Cheng38d214c2021-10-15 15:49:19 -0700105
106DEF_ATTRIBUTE(Transpose, 1,
TatWai Chong7be71652022-05-10 17:26:20 -0700107 int32_t, V, perms)
Kevin Cheng38d214c2021-10-15 15:49:19 -0700108
109DEF_ATTRIBUTE(Table, 1,
TatWai Chong7be71652022-05-10 17:26:20 -0700110 int16_t, V, table)
Kevin Cheng38d214c2021-10-15 15:49:19 -0700111
Eric Kunzebdcc3fe2022-06-07 05:17:37 +0000112DEF_ATTRIBUTE(MatMul, 2,
113 int32_t, S, a_zp,
114 int32_t, S, b_zp)
115
116DEF_ATTRIBUTE(FullyConnected, 2,
117 int32_t, S, input_zp,
118 int32_t, S, weight_zp)
119
120DEF_ATTRIBUTE(Negate, 2,
121 int32_t, S, input1_zp,
122 int32_t, S, output_zp)