From 22972f04d6aa5c4d1269ed3be8bc5fb7b508dcda Mon Sep 17 00:00:00 2001 From: Bruno Goncalves Date: Fri, 26 Apr 2019 21:03:24 -0300 Subject: MLCE-101 Add dilation support for DepthWiseConv workload Adds unit tests for dilated depthwise conv Change-Id: Iad0a1b33d07fb0ef8f9f6edf0fd0f83a5800a36d Signed-off-by: Bruno Goncalves Signed-off-by: Matthew Bentham --- include/armnn/Descriptors.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/armnn') diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp index cf31599ed1..5be59aaa03 100644 --- a/include/armnn/Descriptors.hpp +++ b/include/armnn/Descriptors.hpp @@ -330,9 +330,9 @@ struct DepthwiseConvolution2dDescriptor uint32_t m_StrideX; /// Stride value when proceeding through input for the height dimension. uint32_t m_StrideY; - /// Dilation along x axis + /// Dilation factor value for width dimension. uint32_t m_DilationX; - /// Dilation along y axis + /// Dilation factor value for height dimension. uint32_t m_DilationY; /// Enable/disable bias. bool m_BiasEnabled; -- cgit v1.2.1