blob: c96c6f00d651084455ceb17b467d5ecf63f51e02 [file] [log] [blame]
Colm Donelan09026932022-09-14 18:04:00 +01001/// Copyright (c) 2022 ARM Limited and Contributors. All rights reserved.
2///
3/// SPDX-License-Identifier: MIT
4///
5
6namespace armnn
7{
8/**
9@page supportlibrary NNAPI Support Library
Colm Donelan09026932022-09-14 18:04:00 +010010
11
12@section supportlibraryintro About the NNAPI Support Library
13
14If you need help building the Arm NN NNAPI Support Library, please take a look at our [build guide](shim/BuildGuideShimSupportLibrary.md).
15
Colm Donelan09026932022-09-14 18:04:00 +010016@section sloptions Support Library Options
17
18The general list of runtime options are described in @subpage runtimeoptions
19
Nikhil Rajc377eb82023-08-01 15:00:39 +010020@section slfullysupported Supported Operators
21
22The NNAPI Support Library currently supports the following operators:
23
24- ABS
25
26- ADD
27
28- ARGMAX
29
30- ARGMIN
31
32- AVERAGE_POOL_2D
33
34- BATCH_MATMUL
35
36- BATCH_TO_SPACE_ND
37
38- CAST
39
40- CONCATENATION
41
42- CONV_2D
43
44- DEPTH_TO_SPACE
45
46- DEPTHWISE_CONV_2D
47
48- DEQUANTIZE
49
50- DIV
51
52- ELU
53
54- EQUAL
55
56- EXP
57
58- EXPAND_DIMS
59
60- FILL
61
62- FLOOR
63
64- FULLY_CONNECTED
65
66- GATHER
67
68- GREATER
69
70- GREATER_EQUAL
71
72- GROUPED_CONV_2D
73
74- HARD_SWISH
75
76- INSTANCE_NORMALIZATION
77
78- L2_NORMALIZATION
79
80- L2_POOL_2D
81
82- LESS
83
84- LESS_EQUAL
85
86- LOCAL_RESPONSE_NORMALIZATION
87
88- LOG
89
90- LOGICAL_AND
91
92- LOGICAL_NOT
93
94- LOGICAL_OR
95
96- LOGISTIC
97
98- LOG_SOFTMAX
99
100- LSTM
101
102- MAX_POOL_2D
103
104- MAXIMUM
105
106- MEAN
107
108- MINIMUM
109
110- MUL
111
112- NEG
113
114- NOT_EQUAL
115
116- PAD
117
118- PADV2
119
120- PRELU
121
122- POW
123
124- QUANTIZE
125
126- QUANTIZED_LSTM
127
128- QUANTIZED_16BIT_LSTM
129
130- RANK
131
132- REDUCE_MAX
133
134- REDUCE_MIN
135
136- REDUCE_PROD
137
138- REDUCE_SUM
139
140- RELU
141
142- RELU1
143
144- RELU6
145
146- RESHAPE
147
148- RESIZE_BILINEAR
149
150- RESIZE_NEAREST_NEIGHBOR
151
152- REVERSE
153
154- RSQRT
155
156- SIN
157
158- SOFTMAX
159
160- SPACE_TO_BATCH_ND
161
162- SPACE_TO_DEPTH
163
164- SQRT
165
166- SQUEEZE
167
168- STRIDED_SLICE
169
170- SUB
171
172- TILE
173
174- TRANSPOSE
175
176- TRANSPOSE_CONV_2D
177
178- TANH
179
Colm Donelan09026932022-09-14 18:04:00 +0100180**/
181}