aboutsummaryrefslogtreecommitdiff
path: root/include/attribute.def
blob: 38f6d29458f3c1ddc39723348437143cfb1b1d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106

// Copyright (c) 2020-2021, ARM Limited.
//
//    Licensed under the Apache License, Version 2.0 (the "License");
//    you may not use this file except in compliance with the License.
//    You may obtain a copy of the License at
//
//         http://www.apache.org/licenses/LICENSE-2.0
//
//    Unless required by applicable law or agreed to in writing, software
//    distributed under the License is distributed on an "AS IS" BASIS,
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//    See the License for the specific language governing permissions and
//    limitations under the License.

/*
  Syntax:
    DEF_ATTRIBUTE(ATTRIBUTE_NAME, NUM_ARGS_IN_ATTRIBUTES, ARG0_TYPE, ARG0_SCALAR_OR_VECTOR, ARGS0_NAME, ...)

  Description:
    ATTRIBUTE_NAME: corresponding attribute name, must match corresponding "table XXXAttribute" in tosa.fbs
    NUM_ARGS_IN_ATTRIBUTES: number of arguments in this attribute
    ARG0_TYPE: data type of arg0 in attribute
    ARG0_SCALAR_OR_VECTOR: is arg0 a scalar(S) or a vector(V)
    ARG0_NAME: name of arg0
    ...: variadic variables for more arguments, depending on NUM_ARGS_IN_ATTRIBUTES
*/

DEF_ATTRIBUTE(Pool, 3,
              int32_t, V, pad,
              int32_t, V, kernel,
              int32_t, V, stride)

DEF_ATTRIBUTE(Conv, 3,
              int32_t, V, pad,
              int32_t, V, stride,
              int32_t, V, dilation)

DEF_ATTRIBUTE(TransposeConv, 4,
              int32_t, V, outpad,
              int32_t, V, stride,
              int32_t, V, dilation,
              int32_t, V, output_shape)

DEF_ATTRIBUTE(Pad, 3,
              int32_t, V, padding,
              int32_t, S, pad_const_int,
              float, S, pad_const_fp)

DEF_ATTRIBUTE(Axis, 1,
              int32_t, S, axis)

DEF_ATTRIBUTE(Reshape, 1,
              int32_t, V, new_shape)

DEF_ATTRIBUTE(Slice, 2,
              int32_t, V, start,
              int32_t, V, size)

DEF_ATTRIBUTE(Tile, 1,
              int32_t, V, multiples)

DEF_ATTRIBUTE(Resize, 7,
              int32_t, V, output_size,
              int32_t, V, stride,
              int32_t, V, offset,
              int32_t, S, shift,
              float, V, stride_fp,
              float, V, offset_fp,
              ResizeMode, S, mode)

DEF_ATTRIBUTE(Clamp, 4,
              int32_t, S, min_int,
              int32_t, S, max_int,
              float, S, min_fp,
              float, S, max_fp)

DEF_ATTRIBUTE(Rescale, 7,
              int32_t, S, input_zp,
              int32_t, S, output_zp,
              int32_t, V, multiplier,
              int32_t, V, shift,
              bool, S, scale32,
              bool, S, double_round,
              bool, S, per_channel)

DEF_ATTRIBUTE(Mul, 1,
              int32_t, S, shift)

DEF_ATTRIBUTE(ArithmeticRightShift, 1,
              bool, S, round)

DEF_ATTRIBUTE(CondIf, 2,
              string, S, then_branch,
              string, S, else_branch)

DEF_ATTRIBUTE(WhileLoop, 2,
              string, S, cond_branch,
              string, S, body_branch)

DEF_ATTRIBUTE(Transpose, 1,
              int32_t, V, perms)

DEF_ATTRIBUTE(Table, 1,
              int16_t, V, table)