From 4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Mon, 30 May 2022 11:08:52 +0100 Subject: IVGCVSW-6981 Remove deprecated code 22.05 [Post Release] Signed-off-by: Nikhil Raj Change-Id: I9ccaefbe28ea572e9e2b4a2168574804667f7460 --- src/armnn/layers/SoftmaxLayer.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/armnn/layers/SoftmaxLayer.cpp') diff --git a/src/armnn/layers/SoftmaxLayer.cpp b/src/armnn/layers/SoftmaxLayer.cpp index a2930e6035..b1cb191511 100644 --- a/src/armnn/layers/SoftmaxLayer.cpp +++ b/src/armnn/layers/SoftmaxLayer.cpp @@ -46,11 +46,9 @@ void SoftmaxLayer::ValidateTensorShapesFromInputs() ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "SoftmaxLayer"); } -ARMNN_NO_DEPRECATE_WARN_BEGIN -void SoftmaxLayer::Accept(ILayerVisitor& visitor) const +void SoftmaxLayer::ExecuteStrategy(IStrategy& strategy) const { - visitor.VisitSoftmaxLayer(this, GetParameters(), GetName()); + strategy.ExecuteStrategy(this, GetParameters(), {}, GetName()); } -ARMNN_NO_DEPRECATE_WARN_END } // namespace armnn -- cgit v1.2.1