From 6522cdcd8b07aa8f423f832305eed57d79891e92 Mon Sep 17 00:00:00 2001 From: Nattapat Chaimanowong Date: Fri, 1 Mar 2019 16:14:13 +0000 Subject: IVGCVSW-2705 Add Serializer and Deserializer for ResizeBilinear Change-Id: Ibc5689a2e00d38dc98ef39e50ed5dc3b91791e16 Signed-off-by: Nattapat Chaimanowong --- src/armnnSerializer/ArmnnSchema.fbs | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/armnnSerializer/ArmnnSchema.fbs') diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs index 410849ec8b..dea5889186 100644 --- a/src/armnnSerializer/ArmnnSchema.fbs +++ b/src/armnnSerializer/ArmnnSchema.fbs @@ -105,7 +105,8 @@ enum LayerType : uint { Rsqrt = 21, Floor = 22, BatchNormalization = 23, - Greater = 24 + Greater = 24, + ResizeBilinear = 25 } // Base layer table to be used as part of other layers @@ -364,6 +365,17 @@ table BatchNormalizationDescriptor { dataLayout:DataLayout; } +table ResizeBilinearLayer { + base:LayerBase; + descriptor:ResizeBilinearDescriptor; +} + +table ResizeBilinearDescriptor { + targetWidth:uint; + targetHeight:uint; + dataLayout:DataLayout; +} + union Layer { ActivationLayer, AdditionLayer, @@ -389,7 +401,8 @@ union Layer { PadLayer, RsqrtLayer, FloorLayer, - GreaterLayer + GreaterLayer, + ResizeBilinearLayer } table AnyLayer { -- cgit v1.2.1