aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/QuantizerVisitor.hpp
diff options
context:
space:
mode:
authorruoyan01 <ruomei.yan@arm.com>2019-02-11 13:22:32 +0000
committerruoyan01 <ruomei.yan@arm.com>2019-02-11 14:11:54 +0000
commita40521a70e73d20a060fa2df0e83b02c4f1c6139 (patch)
tree1658dd761cb501b4c5b9b7993870534104cf82fc /src/armnn/QuantizerVisitor.hpp
parent0085978ac40ecd008195d635cd009a1d4f49fb74 (diff)
downloadarmnn-a40521a70e73d20a060fa2df0e83b02c4f1c6139.tar.gz
IVGCVSW-2625 Support static quantization of softmax
Change-Id: I216344ee10bbffadb648d4aef1d9a0d9dbb4a341 Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com> Signed-off-by: ruoyan01 <ruomei.yan@arm.com>
Diffstat (limited to 'src/armnn/QuantizerVisitor.hpp')
-rw-r--r--src/armnn/QuantizerVisitor.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/armnn/QuantizerVisitor.hpp b/src/armnn/QuantizerVisitor.hpp
index 8d8b787d89..44ebc052b6 100644
--- a/src/armnn/QuantizerVisitor.hpp
+++ b/src/armnn/QuantizerVisitor.hpp
@@ -58,6 +58,10 @@ public:
const Optional<ConstTensor>& biases,
const char* name = nullptr) override;
+ void VisitSoftmaxLayer(const IConnectableLayer* layer,
+ const SoftmaxDescriptor& softmaxDescriptor,
+ const char* name = nullptr) override;
+
/// Extract the quantized network
INetworkPtr RetrieveFinalNetwork() { return std::move(m_QuantizedNetwork); }