From a9cca6aa935b3e290181a05fdb2c5f5557a49c09 Mon Sep 17 00:00:00 2001 From: Derek Lamberti Date: Mon, 25 Mar 2019 15:41:58 +0000 Subject: IVGCVSW-2870 Support QuantizeLayer on frontend Change-Id: I2014a8d801f1f222d27a80dddf4f188ddcb3a5c9 Signed-off-by: Derek Lamberti --- include/armnn/ILayerVisitor.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/armnn/ILayerVisitor.hpp') diff --git a/include/armnn/ILayerVisitor.hpp b/include/armnn/ILayerVisitor.hpp index ce09246d07..76027f6eed 100644 --- a/include/armnn/ILayerVisitor.hpp +++ b/include/armnn/ILayerVisitor.hpp @@ -281,6 +281,12 @@ public: const PadDescriptor& padDescriptor, const char* name = nullptr) = 0; + /// Function a quantize 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. + virtual void VisitQuantizeLayer(const IConnectableLayer* layer, + const char* name = nullptr) = 0; + /// Function a strided slice 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 StridedSliceDescriptor - Parameters for the strided slice operation. -- cgit v1.2.1