aboutsummaryrefslogtreecommitdiff
path: root/docs/02_deserializer_serializer.dox
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2021-01-29 14:18:13 +0000
committerJan Eilers <jan.eilers@arm.com>2021-02-03 09:11:51 +0000
commit31a7c890207f80afc866f706d797267d78d05a0d (patch)
tree8b133170fbdf0d87a0a8a5b72c6eaf73fcbb2391 /docs/02_deserializer_serializer.dox
parent74a3cf5755b801cf258177e8e55b4cda64a0c351 (diff)
downloadarmnn-31a7c890207f80afc866f706d797267d78d05a0d.tar.gz
IVGCVSW-5605 Doxygen: Add the TfLite Delegate to Doxygen docu
* Moves TensorFlowLiteDelegateSupport.md to doxygen * Renames a few .dox files to represent the structure of the documentation * Adds sections for build and use guides * Integrates markdown guides for the delegate into doxygen Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I68b7a29239be88c0617da9bdfce5323ebf26f5bc
Diffstat (limited to 'docs/02_deserializer_serializer.dox')
-rw-r--r--docs/02_deserializer_serializer.dox192
1 files changed, 0 insertions, 192 deletions
diff --git a/docs/02_deserializer_serializer.dox b/docs/02_deserializer_serializer.dox
deleted file mode 100644
index e61d4a1441..0000000000
--- a/docs/02_deserializer_serializer.dox
+++ /dev/null
@@ -1,192 +0,0 @@
-/// Copyright (c) 2020 ARM Limited.
-///
-/// SPDX-License-Identifier: MIT
-///
-/// Permission is hereby granted, free of charge, to any person obtaining a copy
-/// of this software and associated documentation files (the "Software"), to deal
-/// in the Software without restriction, including without limitation the rights
-/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-/// copies of the Software, and to permit persons to whom the Software is
-/// furnished to do so, subject to the following conditions:
-///
-/// The above copyright notice and this permission notice shall be included in all
-/// copies or substantial portions of the Software.
-///
-/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-/// SOFTWARE.
-///
-
-namespace armnn
-{
-/**
-@page serializer Serializer
-@tableofcontents
-
-The `armnnSerializer` is a library for serializing an Arm NN network to a stream.
-
-@section serializersupport Supported Layers
-
-This reference guide provides a list of layers which can be serialized by the Arm NN SDK.
-
-@subsection serializersupportflully Fully supported
-
-The Arm NN SDK Serializer currently supports the following layers:
-
-- Activation
-- Addition
-- ArgMinMax
-- BatchToSpaceNd
-- BatchNormalization
-- Comparison
-- Concat
-- Constant
-- Convolution2d
-- DepthToSpace
-- DepthwiseConvolution2d
-- Dequantize
-- DetectionPostProcess
-- Division
-- ElementwiseUnary
-- Fill
-- Floor
-- FullyConnected
-- Gather
-- Input
-- InstanceNormalization
-- L2Normalization
-- Logical
-- LogSoftmax
-- Lstm
-- Maximum
-- Mean
-- Merge
-- Minimum
-- Multiplication
-- Normalization
-- Output
-- Pad
-- Permute
-- Pooling2d
-- Prelu
-- QLstm
-- Quantize
-- QuantizedLstm
-- Rank
-- Reshape
-- Resize
-- Slice
-- Softmax
-- SpaceToBatchNd
-- SpaceToDepth
-- Splitter
-- Stack
-- StandIn
-- StridedSlice
-- Subtraction
-- Switch
-- Transpose
-- TransposeConvolution2d
-
-More machine learning layers will be supported in future releases.
-
-@subsection serializersupportdeprecated Deprecated layers
-
-Some layers have been deprecated and replaced by others layers. In order to maintain backward compatibility, serializations of these deprecated layers will deserialize to the layers that have replaced them, as follows:
-
-- Abs will deserialize as ElementwiseUnary
-- Equal will deserialize as Comparison
-- Greater will deserialize as Comparison
-- Merger will deserialize as Concat
-- ResizeBilinear will deserialize as Resize
-- Rsqrt will deserialize as ElementwiseUnary
-<br/><br/><br/><br/>
-
-@page deserializer Deserializer
-@tableofcontents
-
-The `armnnDeserializer` is a library for loading neural networks defined by Arm NN FlatBuffers files
-into the Arm NN runtime.
-
-@section deserializersupport Supported Layers
-
-This reference guide provides a list of layers which can be deserialized by the Arm NN SDK.
-
-@subsection deserializersupportfully Fully supported
-
-The Arm NN SDK Deserialize parser currently supports the following layers:
-
-- Abs
-- Activation
-- Addition
-- ArgMinMax
-- BatchToSpaceNd
-- BatchNormalization
-- Concat
-- Comparison
-- Constant
-- Convolution2d
-- DepthToSpace
-- DepthwiseConvolution2d
-- Dequantize
-- DetectionPostProcess
-- Division
-- ElementwiseUnary
-- Fill
-- Floor
-- FullyConnected
-- Gather
-- Input
-- InstanceNormalization
-- L2Normalization
-- Logical
-- LogSoftmax
-- Lstm
-- Maximum
-- Mean
-- Merge
-- Minimum
-- Multiplication
-- Normalization
-- Output
-- Pad
-- Permute
-- Pooling2d
-- Prelu
-- Quantize
-- QLstm
-- QuantizedLstm
-- Rank
-- Reshape
-- Resize
-- ResizeBilinear
-- Rsqrt
-- Slice
-- Softmax
-- SpaceToBatchNd
-- SpaceToDepth
-- Splitter
-- Stack
-- StandIn
-- StridedSlice
-- Subtraction
-- Switch
-- TransposeConvolution2d
-
-More machine learning layers will be supported in future releases.
-
-@subsection deserializersupportdeprecated Deprecated layers
-
-Some layers have been deprecated and replaced by others layers. In order to maintain backward compatibility, serializations of these deprecated layers will deserialize to the layers that have replaced them, as follows:
-
-- Equal will deserialize as Comparison
-- Merger will deserialize as Concat
-- Greater will deserialize as Comparison
-- ResizeBilinear will deserialize as Resize
-
-**/
-} \ No newline at end of file