From 262553e0d4e2571c8d7b3c57a7271c23a783e04b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89anna=20=C3=93=20Cath=C3=A1in?= Date: Wed, 14 Nov 2018 11:26:23 +0000 Subject: IVGCVSW-2054: Fixing issue with InferOutputShape implementation in BatchToSpaceNdLayer. * added Unit test Change-Id: I80f55e8c7afb39d96006c8dd027fc9683ea8182e --- src/armnn/layers/BatchToSpaceNdLayer.cpp | 35 +++++++++++++++++++++++++-- src/armnn/test/LayerValidateOutputTest.cpp | 38 ++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 src/armnn/test/LayerValidateOutputTest.cpp (limited to 'src/armnn') diff --git a/src/armnn/layers/BatchToSpaceNdLayer.cpp b/src/armnn/layers/BatchToSpaceNdLayer.cpp index 9366a8710b..aff818e664 100644 --- a/src/armnn/layers/BatchToSpaceNdLayer.cpp +++ b/src/armnn/layers/BatchToSpaceNdLayer.cpp @@ -66,10 +66,41 @@ std::vector BatchToSpaceNdLayer::InferOutputShapes(const std::vecto std::pair xCrops = crops[1]; unsigned int inputHeight = inputShape[dataLayout.GetHeightIndex()]; - unsigned int outputHeight = theBlockShape.at(0) * (inputHeight - (yCrops.first + yCrops.second)); + unsigned int outputHeight; + unsigned int yCropsTotal = yCrops.first + yCrops.second; + + BOOST_ASSERT_MSG(yCropsTotal <= inputHeight, + "BatchToSpaceLayer: Overall height crop should be less than or equal to the input height."); + + unsigned int croppedHeight = inputHeight - yCropsTotal; + + if (theBlockShape.at(0) > 0) + { + outputHeight = theBlockShape.at(0) * croppedHeight; + } + else + { + outputHeight = croppedHeight; + } + + unsigned int outputWidth; unsigned int inputWidth = inputShape[dataLayout.GetWidthIndex()]; - unsigned int outputWidth = theBlockShape.at(1) * (inputWidth - (xCrops.first + xCrops.second)); + + unsigned int xCropsTotal = xCrops.first + xCrops.second; + + BOOST_ASSERT_MSG(xCropsTotal <= inputWidth, + "BatchToSpaceLayer: Overall width crop should be less than or equal to the input width."); + unsigned int croppedWidth = inputWidth - xCropsTotal; + + if (theBlockShape.at(1) > 0) + { + outputWidth = theBlockShape.at(1) * croppedWidth; + } + else + { + outputWidth = croppedWidth; + } unsigned int outputBatchSize = overallSize / (outputHeight * outputWidth); diff --git a/src/armnn/test/LayerValidateOutputTest.cpp b/src/armnn/test/LayerValidateOutputTest.cpp new file mode 100644 index 0000000000..62b9c4a0d8 --- /dev/null +++ b/src/armnn/test/LayerValidateOutputTest.cpp @@ -0,0 +1,38 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// +#include + +#include +#include +#include +#include + + +BOOST_AUTO_TEST_SUITE(LayerValidateOutput) + +BOOST_AUTO_TEST_CASE(TestBatchToSpaceInferOutputShape) +{ + armnn::Graph graph; + + armnn::BatchToSpaceNdDescriptor descriptor; + std::vector theBlockShape = {2, 2}; + descriptor.m_BlockShape = theBlockShape; + descriptor.m_DataLayout = armnn::DataLayout::NHWC; + + armnn::BatchToSpaceNdLayer* const batchToSpaceLayer = + graph.AddLayer(descriptor, "batchToSpace"); + + std::vector shapes; + const std::vector theDimSizes = {4, 2, 2, 1}; + armnn::TensorShape shape(4, theDimSizes.data()); + shapes.push_back(shape); + + const std::vector expectedDimSizes = {1, 4, 4, 1}; + armnn::TensorShape expectedShape(4, expectedDimSizes.data()); + + BOOST_CHECK(expectedShape == batchToSpaceLayer->InferOutputShapes(shapes).at(0)); +} + +BOOST_AUTO_TEST_SUITE_END() \ No newline at end of file -- cgit v1.2.1