aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/PadLayer.hpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2020-08-11 23:00:18 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2020-08-11 22:43:11 +0000
commitca44ffc43cbe6972f8cfc2a803626418554195c2 (patch)
tree588a9067eb19341de0bfccc89c1b6175617f2aea /src/armnn/layers/PadLayer.hpp
parent4d682747d0f04804cd5f07bf46032f0cdb65e388 (diff)
downloadarmnn-ca44ffc43cbe6972f8cfc2a803626418554195c2.tar.gz
IVGCVSW-5207 Add to PadLayer the functions to validate and infer shapes
Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I63a6da418862b0a843637d73cbe178086f23bc84
Diffstat (limited to 'src/armnn/layers/PadLayer.hpp')
-rw-r--r--src/armnn/layers/PadLayer.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/armnn/layers/PadLayer.hpp b/src/armnn/layers/PadLayer.hpp
index 16cdbf57d4..5664997597 100644
--- a/src/armnn/layers/PadLayer.hpp
+++ b/src/armnn/layers/PadLayer.hpp
@@ -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 Accept(ILayerVisitor& visitor) const override;
protected: