aboutsummaryrefslogtreecommitdiff
path: root/docs/02_deserializer_serializer.dox
diff options
context:
space:
mode:
authorRyan OShea <Ryan.OShea2@arm.com>2020-02-12 16:15:27 +0000
committerRyan OShea <Ryan.OShea2@arm.com>2020-03-11 16:43:38 +0000
commitf3a43238858a91bbd3719efc5ae6e1a3992b2d23 (patch)
treee73a8c592a04da98856d353fc291f43cb11e0114 /docs/02_deserializer_serializer.dox
parentc2522c47c4f3b24167b7cefadb5616302d4535b0 (diff)
downloadarmnn-f3a43238858a91bbd3719efc5ae6e1a3992b2d23.tar.gz
IVGCVSW-3726 - Doxygen Beautification
* Added .dox files for main sections * Merged .md files into .dox files * Updated Doxyfile * Stylesheet for Doxygen Signed-off-by: Ryan OShea <Ryan.OShea2@arm.com> Change-Id: Ic13c28b3235fca91aeb463cd5063750aa6d85be8
Diffstat (limited to 'docs/02_deserializer_serializer.dox')
-rw-r--r--docs/02_deserializer_serializer.dox182
1 files changed, 182 insertions, 0 deletions
diff --git a/docs/02_deserializer_serializer.dox b/docs/02_deserializer_serializer.dox
new file mode 100644
index 0000000000..1cd0516a1e
--- /dev/null
+++ b/docs/02_deserializer_serializer.dox
@@ -0,0 +1,182 @@
+/// Copyright (c) 2017 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 serializers The ArmNN Serializer and Deserializer
+@tableofcontents
+
+@section S8_serializer The ArmNN Serializer
+
+The `armnnSerializer` is a library for serializing an Arm NN network to a stream.
+
+## The layers that ArmNN SDK Serializer currently supports.
+
+This reference guide provides a list of layers which can be serialized currently by the Arm NN SDK.
+
+## 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
+- Floor
+- FullyConnected
+- Gather
+- Input
+- InstanceNormalization
+- L2Normalization
+- LogSoftmax
+- Lstm
+- Maximum
+- Mean
+- Merge
+- Minimum
+- Multiplication
+- Normalization
+- Output
+- Pad
+- Permute
+- Pooling2d
+- Prelu
+- Quantize
+- QuantizedLstm
+- Reshape
+- Resize
+- Slice
+- Softmax
+- SpaceToBatchNd
+- SpaceToDepth
+- Splitter
+- Stack
+- StandIn
+- StridedSlice
+- Subtraction
+- Switch
+- TransposeConvolution2d
+
+More machine learning layers will be supported in future releases.
+
+## 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
+- Abs will deserialize as ElementwiseUnary
+- Rsqrt will deserialize as ElementwiseUnary
+<br/><br/><br/><br/>
+
+@section S9_deserializer The ArmNN Deserializer
+
+The `armnnDeserializer` is a library for loading neural networks defined by Arm NN FlatBuffers files
+into the Arm NN runtime.
+
+## The layers that ArmNN SDK Deserializer currently supports.
+
+This reference guide provides a list of layers which can be deserialized currently by the Arm NN SDK.
+
+## 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
+- Floor
+- FullyConnected
+- Gather
+- Input
+- InstanceNormalization
+- L2Normalization
+- LogSoftmax
+- Lstm
+- Maximum
+- Mean
+- Merge
+- Minimum
+- Multiplication
+- Normalization
+- Output
+- Pad
+- Permute
+- Pooling2d
+- Prelu
+- Quantize
+- QuantizedLstm
+- Reshape
+- Rsqrt
+- Slice
+- Softmax
+- SpaceToBatchNd
+- SpaceToDepth
+- Splitter
+- Stack
+- StandIn
+- StridedSlice
+- Subtraction
+- Switch
+- TransposeConvolution2d
+- Resize
+
+More machine learning layers will be supported in future releases.
+
+## 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