aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfLiteParser/TfLiteParser.hpp
diff options
context:
space:
mode:
authorKeith Davis <keith.davis@arm.com>2020-01-22 11:57:54 +0000
committerKeith Davis Arm <keith.davis@arm.com>2020-01-28 17:15:32 +0000
commitd305e1a203077bdbf2e3955abd252904127675a4 (patch)
tree6c375c3ad2f0b62ca70b0914845d9fd4279f10d6 /src/armnnTfLiteParser/TfLiteParser.hpp
parentb0efc60fa5740b34f1896a3c3e979f4dfd44fa2e (diff)
downloadarmnn-d305e1a203077bdbf2e3955abd252904127675a4.tar.gz
IVGCVSW-4335 Add support for per-channel QSymm8 to TfLite parser
Signed-off-by: Keith Davis <keith.davis@arm.com> Change-Id: I52f777f56138a27655a821aff376ecd0d3d23511
Diffstat (limited to 'src/armnnTfLiteParser/TfLiteParser.hpp')
-rw-r--r--src/armnnTfLiteParser/TfLiteParser.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/armnnTfLiteParser/TfLiteParser.hpp b/src/armnnTfLiteParser/TfLiteParser.hpp
index 42ea1a0372..a34e35fad1 100644
--- a/src/armnnTfLiteParser/TfLiteParser.hpp
+++ b/src/armnnTfLiteParser/TfLiteParser.hpp
@@ -166,12 +166,14 @@ private:
// Convenience constructors
SupportedDataStorage(std::unique_ptr<float[]>&& data);
SupportedDataStorage(std::unique_ptr<uint8_t[]>&& data);
+ SupportedDataStorage(std::unique_ptr<int8_t[]>&& data);
SupportedDataStorage(std::unique_ptr<int32_t[]>&& data);
private:
// Pointers to the data buffers
std::unique_ptr<float[]> m_FloatData;
std::unique_ptr<uint8_t[]> m_Uint8Data;
+ std::unique_ptr<int8_t[]> m_Int8Data;
std::unique_ptr<int32_t[]> m_Int32Data;
};