aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/DebugLayer.cpp
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2022-05-30 11:08:52 +0100
committerNikhil Raj Arm <nikhil.raj@arm.com>2022-06-27 16:48:53 +0000
commit4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3 (patch)
tree927ab42094125d813b6acf01329a44db0e39c23a /src/armnn/layers/DebugLayer.cpp
parent3cb65014be65f54b55f3e7ceb2f0b7fd0d27cf5c (diff)
downloadarmnn-4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3.tar.gz
IVGCVSW-6981 Remove deprecated code 22.05 [Post Release]
Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: I9ccaefbe28ea572e9e2b4a2168574804667f7460
Diffstat (limited to 'src/armnn/layers/DebugLayer.cpp')
-rw-r--r--src/armnn/layers/DebugLayer.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/armnn/layers/DebugLayer.cpp b/src/armnn/layers/DebugLayer.cpp
index 90a55cbc40..57cf3b7cfd 100644
--- a/src/armnn/layers/DebugLayer.cpp
+++ b/src/armnn/layers/DebugLayer.cpp
@@ -52,13 +52,11 @@ void DebugLayer::ValidateTensorShapesFromInputs()
ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "DebugLayer");
}
-ARMNN_NO_DEPRECATE_WARN_BEGIN
-void DebugLayer::Accept(ILayerVisitor& visitor) const
+void DebugLayer::ExecuteStrategy(IStrategy& strategy) const
{
// by design debug layers are never in input graphs
- IgnoreUnused(visitor);
+ IgnoreUnused(strategy);
throw armnn::Exception("DebugLayer should never appear in an input graph");
}
-ARMNN_NO_DEPRECATE_WARN_END
} // namespace armnn