aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/NormalizationLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/NormalizationLayer.cpp')
-rw-r--r--src/armnn/layers/NormalizationLayer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/armnn/layers/NormalizationLayer.cpp b/src/armnn/layers/NormalizationLayer.cpp
index 44179fd534..9011ece821 100644
--- a/src/armnn/layers/NormalizationLayer.cpp
+++ b/src/armnn/layers/NormalizationLayer.cpp
@@ -29,8 +29,10 @@ NormalizationLayer* NormalizationLayer::Clone(Graph& graph) const
return CloneBase<NormalizationLayer>(graph, m_Param, GetName());
}
-void NormalizationLayer::ValidateTensorShapesFromInputs()
+void NormalizationLayer::ValidateTensorShapesFromInputs(ShapeInferenceMethod shapeInferenceMethod)
{
+ IgnoreUnused(shapeInferenceMethod);
+
VerifyLayerConnections(1, CHECK_LOCATION());
auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });