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/INetwork.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/armnn/INetwork.hpp') diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp index b61206fae1..7c1fbdbd49 100644 --- a/include/armnn/INetwork.hpp +++ b/include/armnn/INetwork.hpp @@ -353,6 +353,11 @@ public: virtual IConnectableLayer* AddPadLayer(const PadDescriptor& padDescriptor, const char* name = nullptr) = 0; + /// Add a quantize layer to the network + ///@param name - Optional name for the layer. + /// @return - Interface for configuring the layer. + virtual IConnectableLayer* AddQuantizeLayer(const char* name = nullptr) = 0; + /// Adds a strided slice layer to the network. /// @param StridedSliceDescriptor - Parameters for the strided slice operation. /// @param name - Optional name for the layer. -- cgit v1.2.1