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