aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/DepthToSpaceLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/DepthToSpaceLayer.cpp')
-rw-r--r--src/armnn/layers/DepthToSpaceLayer.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/armnn/layers/DepthToSpaceLayer.cpp b/src/armnn/layers/DepthToSpaceLayer.cpp
index 033154e81d..2414b00e2f 100644
--- a/src/armnn/layers/DepthToSpaceLayer.cpp
+++ b/src/armnn/layers/DepthToSpaceLayer.cpp
@@ -75,11 +75,9 @@ void DepthToSpaceLayer::ValidateTensorShapesFromInputs()
ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "DepthToSpaceLayer");
}
-ARMNN_NO_DEPRECATE_WARN_BEGIN
-void DepthToSpaceLayer::Accept(ILayerVisitor& visitor) const
+void DepthToSpaceLayer::ExecuteStrategy(IStrategy& strategy) const
{
- visitor.VisitDepthToSpaceLayer(this, GetParameters(), GetName());
+ strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
}
-ARMNN_NO_DEPRECATE_WARN_END
} // namespace armnn