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