blob: ef52368365977d34f0927079b8c58b93619c5413 [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
Teresa Charlin50de4fa2021-05-31 18:47:33 +01002// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#pragma once
6
7#include <array>
Matthew Bentham47bfac42019-03-25 12:30:56 +00008#include <functional>
janeil01c4946c72019-11-07 09:32:28 +00009#include <stdint.h>
Keith Davise813d672021-04-22 10:10:34 +010010#include <chrono>
Jim Flynn44db7c32019-03-22 15:58:39 +000011#include "BackendId.hpp"
12#include "Exceptions.hpp"
Derek Lambertif90c56d2020-01-10 17:14:08 +000013#include "Deprecated.hpp"
telsoa014fcda012018-03-09 14:13:49 +000014
15namespace armnn
16{
17
Matthew Jacksondba634f2019-08-15 15:14:18 +010018constexpr unsigned int MaxNumOfTensorDimensions = 5U;
telsoa014fcda012018-03-09 14:13:49 +000019
Ryan OShea2bbfaa72020-02-12 16:15:27 +000020/// The lowest performance data capture interval we support is 10 miliseconds.
Colm Donelan02705242019-11-14 14:19:07 +000021constexpr unsigned int LOWEST_CAPTURE_PERIOD = 10000u;
22
Keith Davise813d672021-04-22 10:10:34 +010023/// Variable to control expire rate of priority queue
24constexpr unsigned int EXPIRE_RATE = 3U;
25
telsoa014fcda012018-03-09 14:13:49 +000026/// @enum Status enumeration
27/// @var Status::Successful
28/// @var Status::Failure
29enum class Status
30{
31 Success = 0,
32 Failure = 1
33};
34
35enum class DataType
36{
Keith Davise813d672021-04-22 10:10:34 +010037 Float16 = 0,
38 Float32 = 1,
Derek Lambertif90c56d2020-01-10 17:14:08 +000039 QAsymmU8 = 2,
ruoyan0120e984f2018-12-12 18:11:25 +000040 Signed32 = 3,
Keith Davise813d672021-04-22 10:10:34 +010041 Boolean = 4,
Derek Lambertif90c56d2020-01-10 17:14:08 +000042 QSymmS16 = 5,
Derek Lambertid466a542020-01-22 15:37:29 +000043 QuantizedSymm8PerAxis ARMNN_DEPRECATED_ENUM_MSG("Per Axis property inferred by number of scales in TensorInfo") = 6,
Keith Davise813d672021-04-22 10:10:34 +010044 QSymmS8 = 7,
Ryan OShea9add1202020-02-07 10:06:33 +000045 QAsymmS8 = 8,
Narumol Prangnawaratc3bf6ef2020-02-28 12:45:21 +000046 BFloat16 = 9,
Inki Daed4619e22020-09-10 15:33:54 +090047 Signed64 = 10,
Derek Lambertif90c56d2020-01-10 17:14:08 +000048
Derek Lamberti41e92b02020-01-21 13:43:21 +000049 QuantisedAsymm8 ARMNN_DEPRECATED_ENUM_MSG("Use DataType::QAsymmU8 instead.") = QAsymmU8,
50 QuantisedSymm16 ARMNN_DEPRECATED_ENUM_MSG("Use DataType::QSymmS16 instead.") = QSymmS16
telsoa014fcda012018-03-09 14:13:49 +000051};
52
Derek Lamberti0cff1632018-09-18 16:02:25 +010053enum class DataLayout
54{
55 NCHW = 1,
Matthew Sloyanb63a3112021-09-08 13:05:51 +010056 NHWC = 2,
57 NDHWC = 3
Derek Lamberti0cff1632018-09-18 16:02:25 +010058};
59
Keith Davis4914d0c2021-08-18 17:14:05 +010060/// Define the behaviour of the internal profiler when outputting network details
61enum class ProfilingDetailsMethod
62{
63 Undefined = 0,
64 DetailsWithEvents = 1,
65 DetailsOnly = 2
66};
67
68
Keith Davise813d672021-04-22 10:10:34 +010069enum class QosExecPriority
70{
71 Low = 0,
72 Medium = 1,
73 High = 2
74};
75
telsoa014fcda012018-03-09 14:13:49 +000076enum class ActivationFunction
77{
78 Sigmoid = 0,
79 TanH = 1,
80 Linear = 2,
81 ReLu = 3,
Colm Donelan03fbeaf2020-02-26 15:39:23 +000082 BoundedReLu = 4, ///< min(a, max(b, input)) ReLu1 & ReLu6.
telsoa014fcda012018-03-09 14:13:49 +000083 SoftReLu = 5,
84 LeakyReLu = 6,
85 Abs = 7,
86 Sqrt = 8,
David Monahan3b3c3812020-02-25 09:03:29 +000087 Square = 9,
Colm Donelan03fbeaf2020-02-26 15:39:23 +000088 Elu = 10,
89 HardSwish = 11
telsoa014fcda012018-03-09 14:13:49 +000090};
91
Narumol Prangnawarat8d001d42019-09-09 15:01:18 +010092enum class ArgMinMaxFunction
93{
94 Min = 0,
95 Max = 1
96};
97
Aron Virginas-Tar77bfb5e2019-10-16 17:45:38 +010098enum class ComparisonOperation
99{
100 Equal = 0,
101 Greater = 1,
102 GreaterOrEqual = 2,
103 Less = 3,
104 LessOrEqual = 4,
105 NotEqual = 5
106};
107
James Conroyaba90cd2020-11-06 16:28:18 +0000108enum class LogicalBinaryOperation
109{
110 LogicalAnd = 0,
111 LogicalOr = 1
112};
113
josh minor4a3c6102020-01-06 16:40:46 -0600114enum class UnaryOperation
115{
James Conroyaba90cd2020-11-06 16:28:18 +0000116 Abs = 0,
117 Exp = 1,
118 Sqrt = 2,
119 Rsqrt = 3,
120 Neg = 4,
Teresa Charlin50de4fa2021-05-31 18:47:33 +0100121 LogicalNot = 5,
122 Log = 6,
123 Sin = 7
josh minor4a3c6102020-01-06 16:40:46 -0600124};
125
telsoa014fcda012018-03-09 14:13:49 +0000126enum class PoolingAlgorithm
127{
128 Max = 0,
129 Average = 1,
130 L2 = 2
131};
132
Sadik Armagan0c3ea5b2021-02-03 09:29:30 +0000133enum class ReduceOperation
134{
135 Sum = 0,
136 Max = 1,
137 Mean = 2,
Teresa Charlin4e3e8312021-08-05 12:34:37 +0100138 Min = 3,
139 Prod = 4
Sadik Armagan0c3ea5b2021-02-03 09:29:30 +0000140};
141
Teresa Charlina9075df2019-06-27 15:41:57 +0100142enum class ResizeMethod
143{
144 Bilinear = 0,
145 NearestNeighbor = 1
146};
147
Teresa Charlin11f6ace2020-06-23 18:30:57 +0100148enum class Dimensionality
149{
150 NotSpecified = 0,
151 Specified = 1,
152 Scalar = 2
153};
154
telsoa014fcda012018-03-09 14:13:49 +0000155///
156/// The padding method modifies the output of pooling layers.
157/// In both supported methods, the values are ignored (they are
telsoa01c577f2c2018-08-31 09:22:23 +0100158/// not even zeroes, which would make a difference for max pooling
telsoa014fcda012018-03-09 14:13:49 +0000159/// a tensor with negative values). The difference between
telsoa01c577f2c2018-08-31 09:22:23 +0100160/// IgnoreValue and Exclude is that the former counts the padding
telsoa014fcda012018-03-09 14:13:49 +0000161/// fields in the divisor of Average and L2 pooling, while
162/// Exclude does not.
163///
164enum class PaddingMethod
165{
telsoa01c577f2c2018-08-31 09:22:23 +0100166 /// The padding fields count, but are ignored
David Beckdcb751f2018-10-03 11:42:42 +0100167 IgnoreValue = 0,
telsoa01c577f2c2018-08-31 09:22:23 +0100168 /// The padding fields don't count and are ignored
David Beckdcb751f2018-10-03 11:42:42 +0100169 Exclude = 1
telsoa014fcda012018-03-09 14:13:49 +0000170};
171
172enum class NormalizationAlgorithmChannel
173{
174 Across = 0,
175 Within = 1
176};
177
178enum class NormalizationAlgorithmMethod
179{
David Beckdcb751f2018-10-03 11:42:42 +0100180 /// Krichevsky 2012: Local Brightness Normalization
181 LocalBrightness = 0,
182 /// Jarret 2009: Local Contrast Normalization
telsoa01c577f2c2018-08-31 09:22:23 +0100183 LocalContrast = 1
telsoa014fcda012018-03-09 14:13:49 +0000184};
185
186enum class OutputShapeRounding
187{
188 Floor = 0,
189 Ceiling = 1
190};
191
Teresa Charlincdc01492020-06-09 18:00:20 +0100192///
193/// The ShapeInferenceMethod modify how the output shapes are treated.
194/// When ValidateOnly is selected, the output shapes are inferred from the input parameters of the layer
195/// and any mismatch is reported.
196/// When InferAndValidate is selected 2 actions must be performed: (1)infer output shape from inputs and (2)validate the
197/// shapes as in ValidateOnly. This option has been added to work with tensors which rank or dimension sizes are not
198/// specified explicitly, however this information can be calculated from the inputs.
199///
200enum class ShapeInferenceMethod
201{
202 /// Validate all output shapes
203 ValidateOnly = 0,
204 /// Infer missing output shapes and validate all output shapes
205 InferAndValidate = 1
206};
207
Francis Murtagh73d3e2e2021-04-29 14:23:04 +0100208/// Define the Memory Source to reduce copies
209enum class MemorySource : uint32_t
210{
211 Undefined = 0,
212 Malloc = 1,
213 DmaBuf = 2,
214 DmaBufProtected = 4
215};
216
Sadik Armagan932cf3f2021-09-15 09:22:11 +0100217enum class MemBlockStrategyType
218{
219 // MemBlocks can be packed on the Y axis only.
220 // In other words MemBlocks with overlapping lifetimes cannot use the same MemBin,
221 // equivalent to blob or pooling memory management.
222 SingleAxisPacking = 0,
223
224 // MemBlocks can be packed on the Y and X axis.
225 // In other words MemBlocks with overlapping lifetimes can use the same MemBin,
226 // equivalent to offset or slab memory management.
227 MultiAxisPacking = 1
228};
229
David Beck9efb57d2018-11-05 13:40:33 +0000230/// Each backend should implement an IBackend.
231class IBackend
232{
233protected:
234 IBackend() {}
235 virtual ~IBackend() {}
236
237public:
238 virtual const BackendId& GetId() const = 0;
239};
240
241using IBackendSharedPtr = std::shared_ptr<IBackend>;
242using IBackendUniquePtr = std::unique_ptr<IBackend, void(*)(IBackend* backend)>;
243
Sadik Armaganf0a6dec2021-03-25 07:46:55 +0000244/// BackendCapability class
245enum class BackendCapability : uint32_t
246{
247 /// Constant weights can be accessed through the descriptors,
248 /// On the other hand, non-const weights can be accessed through inputs.
249 NonConstWeights,
250
Sadik Armaganaede8ca2021-03-31 16:12:13 +0100251 /// Asynchronous Execution.
252 AsyncExecution,
253
Sadik Armaganf0a6dec2021-03-25 07:46:55 +0000254 // add new enum values here
255};
256
David Beckdcb751f2018-10-03 11:42:42 +0100257/// Device specific knowledge to be passed to the optimizer.
telsoa01c577f2c2018-08-31 09:22:23 +0100258class IDeviceSpec
telsoa014fcda012018-03-09 14:13:49 +0000259{
telsoa01c577f2c2018-08-31 09:22:23 +0100260protected:
Matteo Martincigh9c5d33a2019-02-07 17:52:41 +0000261 IDeviceSpec() {}
262 virtual ~IDeviceSpec() {}
Narumol Prangnawarat87106762019-05-03 15:54:39 +0100263public:
264 virtual const BackendIdSet& GetSupportedBackends() const = 0;
telsoa014fcda012018-03-09 14:13:49 +0000265};
266
267/// Type of identifiers for bindable layers (inputs, outputs).
268using LayerBindingId = int;
Finn Williamsf37b9702021-09-01 18:06:04 +0100269using ImportedInputId = unsigned int;
telsoa014fcda012018-03-09 14:13:49 +0000270
271class PermutationVector
272{
273public:
274 using ValueType = unsigned int;
275 using SizeType = unsigned int;
276 using ArrayType = std::array<ValueType, MaxNumOfTensorDimensions>;
277 using ConstIterator = typename ArrayType::const_iterator;
278
telsoa01c577f2c2018-08-31 09:22:23 +0100279 /// @param dimMappings - Indicates how to translate tensor elements from a given source into the target destination,
telsoa014fcda012018-03-09 14:13:49 +0000280 /// when source and target potentially have different memory layouts.
281 ///
telsoa01c577f2c2018-08-31 09:22:23 +0100282 /// E.g. For a 4-d tensor laid out in a memory with the format (Batch Element, Height, Width, Channels),
telsoa014fcda012018-03-09 14:13:49 +0000283 /// which is to be passed as an input to ArmNN, each source dimension is mapped to the corresponding
284 /// ArmNN dimension. The Batch dimension remains the same (0 -> 0). The source Height dimension is mapped
285 /// to the location of the ArmNN Height dimension (1 -> 2). Similar arguments are made for the Width and
286 /// Channels (2 -> 3 and 3 -> 1). This will lead to @ref m_DimMappings pointing to the following array:
287 /// [ 0, 2, 3, 1 ].
288 ///
289 /// Note that the mapping should be reversed if considering the case of ArmNN 4-d outputs (Batch Element,
290 /// Channels, Height, Width) being written to a destination with the format mentioned above. We now have
291 /// 0 -> 0, 2 -> 1, 3 -> 2, 1 -> 3, which, when reordered, lead to the following @ref m_DimMappings contents:
292 /// [ 0, 3, 1, 2 ].
293 ///
294 PermutationVector(const ValueType *dimMappings, SizeType numDimMappings);
295
296 PermutationVector(std::initializer_list<ValueType> dimMappings);
297
298 ValueType operator[](SizeType i) const { return m_DimMappings.at(i); }
299
300 SizeType GetSize() const { return m_NumDimMappings; }
301
302 ConstIterator begin() const { return m_DimMappings.begin(); }
Colm Donelan41e764c2021-05-27 16:43:25 +0100303 /**
304 *
305 * @return pointer one past the end of the number of mapping not the length of m_DimMappings.
306 */
307 ConstIterator end() const { return m_DimMappings.begin() + m_NumDimMappings; }
telsoa014fcda012018-03-09 14:13:49 +0000308
309 bool IsEqual(const PermutationVector& other) const
310 {
Matthew Jacksondba634f2019-08-15 15:14:18 +0100311 if (m_NumDimMappings != other.m_NumDimMappings) return false;
312 for (unsigned int i = 0; i < m_NumDimMappings; ++i)
313 {
314 if (m_DimMappings[i] != other.m_DimMappings[i]) return false;
315 }
316 return true;
telsoa014fcda012018-03-09 14:13:49 +0000317 }
318
319 bool IsInverse(const PermutationVector& other) const
320 {
321 bool isInverse = (GetSize() == other.GetSize());
322 for (SizeType i = 0; isInverse && (i < GetSize()); ++i)
323 {
324 isInverse = (m_DimMappings[other.m_DimMappings[i]] == i);
325 }
326 return isInverse;
327 }
328
329private:
330 ArrayType m_DimMappings;
331 /// Number of valid entries in @ref m_DimMappings
332 SizeType m_NumDimMappings;
333};
334
janeil013fec1ea2019-11-07 09:47:20 +0000335namespace profiling { class ProfilingGuid; }
336
telsoa01c577f2c2018-08-31 09:22:23 +0100337/// Define LayerGuid type.
janeil013fec1ea2019-11-07 09:47:20 +0000338using LayerGuid = profiling::ProfilingGuid;
surmeh01bceff2f2018-03-29 16:29:27 +0100339
Nattapat Chaimanowong6e948202019-03-22 14:01:46 +0000340class ITensorHandle;
341
Nattapat Chaimanowong317cae52019-03-28 10:29:12 +0000342/// Define the type of callback for the Debug layer to call
343/// @param guid - guid of layer connected to the input of the Debug layer
344/// @param slotIndex - index of the output slot connected to the input of the Debug layer
345/// @param tensorHandle - TensorHandle for the input tensor to the Debug layer
346using DebugCallbackFunction = std::function<void(LayerGuid guid, unsigned int slotIndex, ITensorHandle* tensorHandle)>;
Nattapat Chaimanowong6e948202019-03-22 14:01:46 +0000347
Keith Davise813d672021-04-22 10:10:34 +0100348/// Define a timer and associated inference ID for recording execution times
349using HighResolutionClock = std::chrono::high_resolution_clock::time_point;
350using InferenceTimingPair = std::pair<HighResolutionClock, HighResolutionClock>;
janeil01c4946c72019-11-07 09:32:28 +0000351
janeil01c4946c72019-11-07 09:32:28 +0000352
Finn Williamsb454c5c2021-02-09 15:56:23 +0000353/// This list uses X macro technique.
354/// See https://en.wikipedia.org/wiki/X_Macro for more info
355#define LIST_OF_LAYER_TYPE \
356 X(Activation) \
357 X(Addition) \
358 X(ArgMinMax) \
359 X(BatchNormalization) \
Keith Davis3ae3f972021-05-21 16:33:48 +0100360 X(BatchToSpaceNd) \
Finn Williamsb454c5c2021-02-09 15:56:23 +0000361 X(Comparison) \
362 X(Concat) \
363 X(Constant) \
364 X(ConvertBf16ToFp32) \
365 X(ConvertFp16ToFp32) \
366 X(ConvertFp32ToBf16) \
367 X(ConvertFp32ToFp16) \
368 X(Convolution2d) \
369 X(Debug) \
370 X(DepthToSpace) \
371 X(DepthwiseConvolution2d) \
372 X(Dequantize) \
373 X(DetectionPostProcess) \
374 X(Division) \
375 X(ElementwiseUnary) \
376 X(FakeQuantization) \
377 X(Fill) \
378 X(Floor) \
379 X(FullyConnected) \
380 X(Gather) \
381 X(Input) \
382 X(InstanceNormalization) \
383 X(L2Normalization) \
384 X(LogicalBinary) \
385 X(LogSoftmax) \
386 X(Lstm) \
387 X(QLstm) \
388 X(Map) \
389 X(Maximum) \
390 X(Mean) \
391 X(MemCopy) \
392 X(MemImport) \
393 X(Merge) \
394 X(Minimum) \
395 X(Multiplication) \
396 X(Normalization) \
397 X(Output) \
398 X(Pad) \
399 X(Permute) \
400 X(Pooling2d) \
401 X(PreCompiled) \
402 X(Prelu) \
403 X(Quantize) \
404 X(QuantizedLstm) \
405 X(Reshape) \
406 X(Rank) \
407 X(Resize) \
408 X(Reduce) \
409 X(Slice) \
410 X(Softmax) \
411 X(SpaceToBatchNd) \
412 X(SpaceToDepth) \
413 X(Splitter) \
414 X(Stack) \
415 X(StandIn) \
416 X(StridedSlice) \
417 X(Subtraction) \
418 X(Switch) \
419 X(Transpose) \
420 X(TransposeConvolution2d) \
mathad01b392e982021-04-07 12:07:30 +0100421 X(Unmap) \
Narumol Prangnawarat8ed39ae2021-07-15 16:16:25 +0100422 X(Cast) \
423 X(Shape) \
424 X(UnidirectionalSequenceLstm) \
Simon Obute51f67772021-09-03 15:50:13 +0100425 X(ChannelShuffle) \
Matthew Sloyanb63a3112021-09-08 13:05:51 +0100426 X(Convolution3d) \
427
Narumol Prangnawarat8ed39ae2021-07-15 16:16:25 +0100428// New layers should be added at last to minimize instability.
Keith Davis3ae3f972021-05-21 16:33:48 +0100429
Finn Williamsb454c5c2021-02-09 15:56:23 +0000430/// When adding a new layer, adapt also the LastLayer enum value in the
431/// enum class LayerType below
432enum class LayerType
433{
434#define X(name) name,
435 LIST_OF_LAYER_TYPE
436#undef X
437 FirstLayer = Activation,
Narumol Prangnawarat8ed39ae2021-07-15 16:16:25 +0100438 LastLayer = UnidirectionalSequenceLstm
Finn Williamsb454c5c2021-02-09 15:56:23 +0000439};
440
441const char* GetLayerTypeAsCString(LayerType type);
442
David Beck9df2d952018-10-10 15:11:44 +0100443} // namespace armnn