aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Descriptors.hpp
diff options
context:
space:
mode:
authorÉanna Ó Catháin <eanna.ocathain@arm.com>2018-11-14 11:26:23 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2018-11-14 12:00:22 +0000
commit262553e0d4e2571c8d7b3c57a7271c23a783e04b (patch)
tree05fa2b4b572a19e2de8eb3455f348416aca1eb0f /include/armnn/Descriptors.hpp
parent3aab7c301bcbc206169c12ac04162b1445b4d472 (diff)
downloadarmnn-262553e0d4e2571c8d7b3c57a7271c23a783e04b.tar.gz
IVGCVSW-2054: Fixing issue with InferOutputShape implementation in BatchToSpaceNdLayer.
* added Unit test Change-Id: I80f55e8c7afb39d96006c8dd027fc9683ea8182e
Diffstat (limited to 'include/armnn/Descriptors.hpp')
-rw-r--r--include/armnn/Descriptors.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp
index 32ac959808..396e427ee4 100644
--- a/include/armnn/Descriptors.hpp
+++ b/include/armnn/Descriptors.hpp
@@ -299,8 +299,7 @@ struct BatchNormalizationDescriptor
struct BatchToSpaceNdDescriptor
{
BatchToSpaceNdDescriptor()
- : m_BlockShape({0, 0})
- , m_Crops({{0, 0}, {0, 0}})
+ : m_Crops({{0, 0}, {0, 0}})
, m_DataLayout(DataLayout::NCHW)
{}