aboutsummaryrefslogtreecommitdiff
path: root/src/armnnSerializer/ArmnnSchema.fbs
diff options
context:
space:
mode:
authorMatthew Bentham <matthew.bentham@arm.com>2019-05-13 10:02:45 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-05-13 16:41:09 +0000
commitacad04e3cb6abcdd9a3fcf4584db1cbedb52cb47 (patch)
tree3e1497034566686e0648b1b17cbd0e8f72e91a94 /src/armnnSerializer/ArmnnSchema.fbs
parent49cb7d0568b7d4c81889a1791a4ca4e6bd5c8f32 (diff)
downloadarmnn-acad04e3cb6abcdd9a3fcf4584db1cbedb52cb47.tar.gz
MLCE-101 Add dilation parameter to serializer
Change-Id: I8142e179d38c7a2a9163cf3d30bd1f411e8e109c Signed-off-by: Matthew Bentham <matthew.bentham@arm.com>
Diffstat (limited to 'src/armnnSerializer/ArmnnSchema.fbs')
-rw-r--r--src/armnnSerializer/ArmnnSchema.fbs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/armnnSerializer/ArmnnSchema.fbs b/src/armnnSerializer/ArmnnSchema.fbs
index e8d72fc997..0419c4b883 100644
--- a/src/armnnSerializer/ArmnnSchema.fbs
+++ b/src/armnnSerializer/ArmnnSchema.fbs
@@ -172,6 +172,8 @@ table Convolution2dDescriptor {
padBottom:uint;
strideX:uint;
strideY:uint;
+ dilationX:uint = 1;
+ dilationY:uint = 1;
biasEnabled:bool = false;
dataLayout:DataLayout = NCHW;
}
@@ -296,6 +298,8 @@ table DepthwiseConvolution2dDescriptor {
padBottom:uint;
strideX:uint;
strideY:uint;
+ dilationX:uint = 1;
+ dilationY:uint = 1;
biasEnabled:bool = false;
dataLayout:DataLayout = NCHW;
}