aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruno Goncalves <bruno.slackware@gmail.com>2019-04-26 21:03:24 -0300
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-05-14 07:36:33 +0000
commit22972f04d6aa5c4d1269ed3be8bc5fb7b508dcda (patch)
treebe61df59d9eb215bf1396a5a03797942066c6ba6 /include
parentacad04e3cb6abcdd9a3fcf4584db1cbedb52cb47 (diff)
downloadarmnn-22972f04d6aa5c4d1269ed3be8bc5fb7b508dcda.tar.gz
MLCE-101 Add dilation support for DepthWiseConv workload
Adds unit tests for dilated depthwise conv Change-Id: Iad0a1b33d07fb0ef8f9f6edf0fd0f83a5800a36d Signed-off-by: Bruno Goncalves <bruno.slackware@gmail.com> Signed-off-by: Matthew Bentham <matthew.bentham@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Descriptors.hpp4
1 files changed, 2 insertions, 2 deletions
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;