aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-02-11 13:24:38 +0000
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-02-14 17:53:55 +0000
commit5b2159e43a5e078053e706883e3af44ae733b5b9 (patch)
tree6486b631f32c5f903ba609907ef3aa25002e3daa /include
parentec333914d5d38079083bcdb7fc88a54a19ebaa87 (diff)
downloadarmnn-5b2159e43a5e078053e706883e3af44ae733b5b9.tar.gz
IVGCVSW-2620 Support static quantization of Constant
* Added VisitConstantLayer to QuantizerVisitor * Added unit tests and refactored QuantizerTest.cpp * Code cleanup Change-Id: I118fd2be085fc98879c5cfaa09698a7c98ba13f0 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'include')
-rw-r--r--include/armnn/INetwork.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index aaca13bba9..a59000b334 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -266,7 +266,7 @@ public:
/// @param name - Optional name for the layer.
/// @return - Interface for configuring the layer.
virtual IConnectableLayer* AddConstantLayer(const ConstTensor& input,
- const char* name = nullptr) = 0;
+ const char* name = nullptr) = 0;
/// Adds a reshape layer to the network.
/// @param reshapeDescriptor - Parameters for the reshape operation.