aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/SerializerSupport.md
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-10-17 16:11:54 +0100
committerÁron Virginás-Tar <aron.virginas-tar@arm.com>2019-10-21 10:54:45 +0000
commite80ebd101b516751a798aa1b1d669e9117a32266 (patch)
tree9f113060aaa2157941f726af6ec93ea8e9357df8 /src/armnnSerializer/SerializerSupport.md
parent77bfb5e32faadb1383d48364a6f54adbff84ad80 (diff)
downloadarmnn-e80ebd101b516751a798aa1b1d669e9117a32266.tar.gz
IVGCVSW-3992 Add serialization support for ComparisonLayer
* Added serialization support and serialization-deserialization test for Comparison * Added backward compatibility tests for Equal and Greater, to make sure they are serialized and deserialized as Comparison * Refactored serialization tests and reduced code duplication by taking advantage of operator==() recently added for Descriptors Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com> Change-Id: Id0fd94ef4b17e4e51c8005e585ea3c47f9c1bd8d
Diffstat (limited to 'src/armnnSerializer/SerializerSupport.md')
-rw-r--r--src/armnnSerializer/SerializerSupport.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/armnnSerializer/SerializerSupport.md b/src/armnnSerializer/SerializerSupport.md
index 2def918f21..4b12f9ca23 100644
--- a/src/armnnSerializer/SerializerSupport.md
+++ b/src/armnnSerializer/SerializerSupport.md
@@ -20,11 +20,9 @@ The Arm NN SDK Serializer currently supports the following layers:
* Dequantize
* DetectionPostProcess
* Division
-* Equal
* Floor
* FullyConnected
* Gather
-* Greater
* Input
* InstanceNormalization
* L2Normalization
@@ -45,7 +43,6 @@ The Arm NN SDK Serializer currently supports the following layers:
* QuantizedLstm
* Reshape
* Resize
-* ResizeBilinear
* Rsqrt
* Slice
* Softmax
@@ -60,6 +57,11 @@ The Arm NN SDK Serializer currently supports the following layers:
More machine learning layers will be supported in future releases.
-Note: Merger layer has been renamed Concat. Serializations of the old
- format with Merger layers will deserialize to Concat layers to
- maintain backward compatibility.
+## 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