From 79ffdf57b12da6ed3fe70e62311af6c4661a9bd3 Mon Sep 17 00:00:00 2001 From: Conor Kennedy Date: Fri, 1 Mar 2019 14:24:54 +0000 Subject: IVGCVSW-2692 Add Serializer and Deserializer for Greater Change-Id: I344a1f36a8a4ab601dd4d62a0014c554ceb6a1c6 Signed-off-by: Conor Kennedy --- src/armnnSerializer/ArmnnSchema.fbs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/armnnSerializer/ArmnnSchema.fbs') diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs index f416912618..410849ec8b 100644 --- a/src/armnnSerializer/ArmnnSchema.fbs +++ b/src/armnnSerializer/ArmnnSchema.fbs @@ -104,7 +104,8 @@ enum LayerType : uint { Pad = 20, Rsqrt = 21, Floor = 22, - BatchNormalization = 23 + BatchNormalization = 23, + Greater = 24 } // Base layer table to be used as part of other layers @@ -184,6 +185,10 @@ table FullyConnectedDescriptor { transposeWeightsMatrix:bool = false; } +table GreaterLayer { + base:LayerBase; +} + table InputLayer { base:BindableLayerBase; } @@ -341,7 +346,6 @@ table PadDescriptor { padList:[uint]; } - table RsqrtLayer { base:LayerBase; } @@ -384,7 +388,8 @@ union Layer { NormalizationLayer, PadLayer, RsqrtLayer, - FloorLayer + FloorLayer, + GreaterLayer } table AnyLayer { -- cgit v1.2.1