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