aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/ReduceLayer.cpp
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2023-01-10 15:55:28 +0000
committermike.kelly <mike.kelly@arm.com>2023-01-12 14:46:46 +0000
commit377fb21e956ea68ffd234be47481002a0e46ee46 (patch)
tree3d82f8d43c36cd4054fd6e29d082599e6ef0be86 /src/armnn/layers/ReduceLayer.cpp
parent01f72693d39ed966ad06adadc8aac141bc395659 (diff)
downloadarmnn-377fb21e956ea68ffd234be47481002a0e46ee46.tar.gz
IVGCVSW-7244 ConcatLayer overlapping views on TFLiteParser
* Added ability to calculate dynamic tensors and propagate them through the model so that when those tensors are later used as inputs they have the right shapes. * Added InferOutputShapes to DetectionPostProcessLayer. * Added InferOutputShapes to MeanLayer. * Added InferOutputShapes to RankLayer. * Added InferOutputShapes to ReduceLayer. * Fixed typos in TfLiteParser. Signed-off-by: Mike Kelly <mike.kelly@arm.com> Change-Id: I880c0716938ef278f5dbf01a8a73a5cc99ce5ded
Diffstat (limited to 'src/armnn/layers/ReduceLayer.cpp')
-rw-r--r--src/armnn/layers/ReduceLayer.cpp21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/armnn/layers/ReduceLayer.cpp b/src/armnn/layers/ReduceLayer.cpp
index aa54bc8f0c..e411996ced 100644
--- a/src/armnn/layers/ReduceLayer.cpp
+++ b/src/armnn/layers/ReduceLayer.cpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2020 Samsung Electronics Co Ltd and Contributors. All rights reserved.
+// Copyright © 2020-2023 Samsung Electronics Co Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -53,6 +53,19 @@ void ReduceLayer::ValidateTensorShapesFromInputs()
ARMNN_ASSERT_MSG(input.GetNumDimensions() > 0 && input.GetNumDimensions() <= 4,
"ReduceLayer: Reduce supports up to 4D input.");
+ std::vector<TensorShape> inferredShapes = InferOutputShapes( {input.GetShape() });
+
+ ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "ReduceLayer");
+}
+
+std::vector<TensorShape> ReduceLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
+{
+ ARMNN_ASSERT(inputShapes.size() == 1);
+ const TensorShape& input = inputShapes[0];
+
+ ARMNN_ASSERT_MSG(input.GetNumDimensions() > 0 && input.GetNumDimensions() <= 4,
+ "ReduceLayer: Reduce supports up to 4D input.");
+
unsigned int rank = input.GetNumDimensions();
unsigned int outputRank = 0;
@@ -87,7 +100,7 @@ void ReduceLayer::ValidateTensorShapesFromInputs()
{
if (std::find(m_Param.m_vAxis.begin(), m_Param.m_vAxis.end(), i) == m_Param.m_vAxis.end())
{
- dimSizes[outputIndex] = armnn::numeric_cast<unsigned int>(input.GetShape()[i]);
+ dimSizes[outputIndex] = armnn::numeric_cast<unsigned int>(input[i]);
++outputIndex;
}
else if (m_Param.m_KeepDims)
@@ -97,9 +110,7 @@ void ReduceLayer::ValidateTensorShapesFromInputs()
}
}
}
- const TensorShape& inferredShape = TensorShape(outputRank, dimSizes.data());
-
- ValidateAndCopyShape(outputShape, inferredShape, m_ShapeInferenceMethod, "ReduceLayer");
+ return std::vector<TensorShape>({ TensorShape(outputRank, dimSizes.data()) });
}
void ReduceLayer::ExecuteStrategy(IStrategy& strategy) const