aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/LayerVisitorBase.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/LayerVisitorBase.hpp')
-rw-r--r--include/armnn/LayerVisitorBase.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/armnn/LayerVisitorBase.hpp b/include/armnn/LayerVisitorBase.hpp
index 0dc5e545e3..93ba7fe287 100644
--- a/include/armnn/LayerVisitorBase.hpp
+++ b/include/armnn/LayerVisitorBase.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2017 Arm Ltd. All rights reserved.
+// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -114,9 +114,14 @@ public:
const Optional<ConstTensor>&,
const char*) override { DefaultPolicy::Apply(__func__); }
+ ARMNN_DEPRECATED_MSG("Use VisitGatherLayer with descriptor instead")
void VisitGatherLayer(const IConnectableLayer*,
const char*) override { DefaultPolicy::Apply(__func__); }
+ void VisitGatherLayer(const IConnectableLayer*,
+ const GatherDescriptor&,
+ const char*) override { DefaultPolicy::Apply(__func__); }
+
void VisitGreaterLayer(const IConnectableLayer*,
const char*) override { DefaultPolicy::Apply(__func__); }