From 252cb1386ac561e2059eccc8dd035759e3d77a58 Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Fri, 5 Mar 2021 10:45:48 +0000 Subject: ABI archiving test * Experimental ABI break to allow review to be merged and trigger archiving script Signed-off-by: Francis Murtagh Change-Id: Ibae0d9e5f83f660d3909e1a60e4aac751597f2fa --- include/armnn/ILayerVisitor.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/armnn/ILayerVisitor.hpp b/include/armnn/ILayerVisitor.hpp index b5112a8f0b..fef5145d9d 100644 --- a/include/armnn/ILayerVisitor.hpp +++ b/include/armnn/ILayerVisitor.hpp @@ -28,6 +28,14 @@ public: virtual void VisitAbsLayer(const IConnectableLayer* layer, const char* name = nullptr) = 0; + /// Function an absolute layer should call back to when its Accept(ILayerVisitor&) + /// function is invoked. + /// @param layer - pointer to the layer which is calling back to this visit function. + /// @param name - Optional name for the layer. + ARMNN_DEPRECATED_MSG("Use VisitElementwiseUnaryLayer instead") + virtual void VisitAbsLayer3(const IConnectableLayer* layer, + const char* name = nullptr) = 0; + /// Function that an activation layer should call back to when its Accept(ILayerVisitor&) function is invoked. /// @param layer - pointer to the layer which is calling back to this visit function. /// @param activationDescriptor - ActivationDescriptor to configure the activation. -- cgit v1.2.1