aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2018-12-20 16:19:12 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2018-12-20 17:06:47 +0000
commitf446432f4c21a64ffb92552c5e1906194fb98558 (patch)
treeee241e0816f02b7ee8a6c1be9cbf7b18eb3d0f26 /include
parent2262bbd746907b28f5a5c2f36c153503884a8b8f (diff)
downloadarmnn-f446432f4c21a64ffb92552c5e1906194fb98558.tar.gz
IVGCVSW-2164 Added ACL implementation of SpaceToBatchNd operation to ArmNN
!android-nn-driver:428 Change-Id: I42e59ad96d2c80f46b085182855d34b710a74dfe
Diffstat (limited to 'include')
-rw-r--r--include/armnn/Descriptors.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp
index 8fbd32a76e..9a33cc002a 100644
--- a/include/armnn/Descriptors.hpp
+++ b/include/armnn/Descriptors.hpp
@@ -360,7 +360,9 @@ struct ReshapeDescriptor
struct SpaceToBatchNdDescriptor
{
SpaceToBatchNdDescriptor()
- : m_DataLayout(DataLayout::NCHW)
+ : m_BlockShape({1, 1})
+ , m_PadList({{0, 0}, {0, 0}})
+ , m_DataLayout(DataLayout::NCHW)
{}
SpaceToBatchNdDescriptor(const std::vector<unsigned int>& blockShape,