From e80ebd101b516751a798aa1b1d669e9117a32266 Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Thu, 17 Oct 2019 16:11:54 +0100 Subject: 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 Change-Id: Id0fd94ef4b17e4e51c8005e585ea3c47f9c1bd8d --- src/armnnSerializer/SerializerSupport.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/armnnSerializer/SerializerSupport.md') 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 -- cgit v1.2.1