aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/MeanLayer.hpp
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/MeanLayer.hpp
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/MeanLayer.hpp')
-rw-r--r--src/armnn/layers/MeanLayer.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/armnn/layers/MeanLayer.hpp b/src/armnn/layers/MeanLayer.hpp
index 87998bfc08..3bde7c6fcc 100644
--- a/src/armnn/layers/MeanLayer.hpp
+++ b/src/armnn/layers/MeanLayer.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
+// Copyright © 2017-2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -29,6 +29,12 @@ public:
/// @param [in] shapeInferenceMethod Indicates if output shape shall be overwritten or just validated.
void ValidateTensorShapesFromInputs() override;
+ /// By default returns inputShapes if the number of inputs are equal to number of outputs,
+ /// otherwise infers the output shapes from given input shapes and layer properties.
+ /// @param [in] inputShapes The input shapes layer has.
+ /// @return A vector to the inferred output shape.
+ std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;
+
void ExecuteStrategy(IStrategy& strategy) const override;
protected: