aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2018-11-28 11:52:08 +0000
committerMike Kelly <mike.kelly@arm.com>2018-11-28 11:52:08 +0000
commit831faedd5d2f6306b23202fa4e450c6d241a44a0 (patch)
treead025f07969618a054144aa45333209399656cb5 /include
parent7e7261ed9a4f8d48c86e57044312e3df82189713 (diff)
downloadarmnn-831faedd5d2f6306b23202fa4e450c6d241a44a0.tar.gz
IVGCVSW-1199: BATCH_TO_SPACE_ND integrate Arm Compute CL
Change-Id: Ic772acf481caed6e8a6b99f68a63dfc2a34c24dc
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Descriptors.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp
index 22dd0d2991..c905eb2c97 100644
--- a/include/armnn/Descriptors.hpp
+++ b/include/armnn/Descriptors.hpp
@@ -303,7 +303,8 @@ struct BatchNormalizationDescriptor
struct BatchToSpaceNdDescriptor
{
BatchToSpaceNdDescriptor()
- : m_Crops({{0, 0}, {0, 0}})
+ : m_BlockShape({1, 1})
+ , m_Crops({{0, 0}, {0, 0}})
, m_DataLayout(DataLayout::NCHW)
{}