aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-02-07 17:51:09 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-02-08 12:23:05 +0000
commita8d572dc48f47e66cd7abd6ad9b2d3a0f40ea94b (patch)
tree5de7809a8fbc19d6d2a940a51a982bd633156945 /include
parente0a4ad8a8e6ef271883e8029985eeab16d838972 (diff)
downloadarmnn-a8d572dc48f47e66cd7abd6ad9b2d3a0f40ea94b.tar.gz
IVGCVSW-2607 Implement Input range override mechanism
* Added the OverrideInputRange method to the Quantizer API * Created OverrideInputRangeVisitor to implement the override mechanism * Moved the quantizer utility functions to the new NetworkQuantizerUtils files * Moved the map of quantization ranges out of the StaticRangeVisitor and into the NetworkQuantizer * Added unit tests * Code refactoring and cleanup Change-Id: I9c1d006c1b6a35fbc04584a832fbe489f8f9276d Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/armnn/INetworkQuantizer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/armnn/INetworkQuantizer.hpp b/include/armnn/INetworkQuantizer.hpp
index f3cc13ca35..5969fa4edf 100644
--- a/include/armnn/INetworkQuantizer.hpp
+++ b/include/armnn/INetworkQuantizer.hpp
@@ -7,9 +7,6 @@
#include <armnn/INetwork.hpp>
-#include <memory>
-
-
namespace armnn
{
@@ -23,11 +20,14 @@ public:
static INetworkQuantizerPtr Create(INetwork* inputNetwork); ///< Create Quantizer object wrapped in unique_ptr
static void Destroy(INetworkQuantizer* quantizer); ///< Destroy Quantizer object
+ /// Overrides the default quantization values for the input layer with the given id
+ virtual void OverrideInputRange(LayerBindingId layerId, float min, float max) = 0;
+
/// Extract final quantized network
virtual INetworkPtr ExportNetwork() = 0;
protected:
- virtual ~INetworkQuantizer() {};
+ virtual ~INetworkQuantizer() {}
};
} //namespace armnn