34 template<
typename IType>
44 virtual IType
Get()
const = 0;
49 template<
typename IType>
59 virtual void Set(IType right) = 0;
61 virtual IType
Get()
const = 0;
64 template<
typename T,
typename Base>
120 float Get()
const override
127 std::vector<float> decodedTensor;
128 decodedTensor.reserve(size);
130 for (uint32_t i = 0; i < size; ++i)
136 return decodedTensor;
142 const int32_t m_Offset;
154 float Get()
const override
161 std::vector<float> decodedTensor;
162 decodedTensor.reserve(size);
164 for (uint32_t i = 0; i < size; ++i)
170 return decodedTensor;
175 const int32_t m_Offset;
188 float Get()
const override
195 std::vector<float> decodedTensor;
196 decodedTensor.reserve(size);
198 for (uint32_t i = 0; i < size; ++i)
204 return decodedTensor;
209 const int32_t m_Offset;
222 float Get()
const override
229 std::vector<float> decodedTensor;
230 decodedTensor.reserve(size);
232 for (uint32_t i = 0; i < size; ++i)
238 return decodedTensor;
243 const int32_t m_Offset;
256 float Get()
const override
265 std::vector<float> decodedTensor;
266 decodedTensor.reserve(size);
268 for (uint32_t i = 0; i < size; ++i)
273 decodedTensor.emplace_back(val);
276 return decodedTensor;
291 float Get()
const override
298 std::vector<float> decodedTensor;
300 decodedTensor.reserve(size);
303 return decodedTensor;
316 float Get()
const override
318 return static_cast<float>(*m_Iterator) * m_Scale;
323 std::vector<float> decodedTensor;
324 decodedTensor.reserve(size);
326 for (uint32_t i = 0; i < size; ++i)
329 decodedTensor.emplace_back(
static_cast<float>(*
m_Iterator) * m_Scale);
332 return decodedTensor;
349 float Get()
const override
351 return static_cast<float>(*m_Iterator);
356 std::vector<float> decodedTensor;
357 decodedTensor.reserve(size);
359 for (uint32_t i = 0; i < size; ++i)
362 decodedTensor.emplace_back(
static_cast<float>(*
m_Iterator));
365 return decodedTensor;
378 int32_t
Get()
const override
385 std::vector<float> decodedTensor;
386 decodedTensor.reserve(size);
388 for (uint32_t i = 0; i < size; ++i)
391 decodedTensor.emplace_back(
static_cast<float>(*
m_Iterator));
394 return decodedTensor;
407 double_t
Get()
const override
409 return static_cast<double_t
>(*m_Iterator);
414 std::vector<float> decodedTensor;
415 decodedTensor.reserve(size);
417 for (uint32_t i = 0; i < size; ++i)
420 decodedTensor.emplace_back(
static_cast<float>(*
m_Iterator));
423 return decodedTensor;
436 float Get()
const override
443 std::vector<float> decodedTensor;
444 decodedTensor.reserve(size);
446 for (uint32_t i = 0; i < size; ++i)
452 return decodedTensor;
473 std::vector<float> decodedTensor;
474 decodedTensor.reserve(size);
476 for (uint32_t i = 0; i < size; ++i)
482 return decodedTensor;
495 void Set(
float right)
override
497 *
m_Iterator = armnn::Quantize<uint8_t>(right, m_Scale, m_Offset);
500 float Get()
const override
507 const int32_t m_Offset;
519 void Set(
float right)
override
521 *
m_Iterator = armnn::Quantize<int8_t>(right, m_Scale, m_Offset);
524 float Get()
const override
531 const int32_t m_Offset;
543 void Set(
float right)
override
545 *
m_Iterator = armnn::Quantize<int8_t>(right, m_Scale, m_Offset);
548 float Get()
const override
555 const int32_t m_Offset;
567 void Set(
float right)
override
569 *
m_Iterator = armnn::Quantize<int16_t>(right, m_Scale, m_Offset);
572 float Get()
const override
579 const int32_t m_Offset;
591 void Set(
float right)
override
596 float Get()
const override
613 void Set(
float right)
override
618 float Get()
const override
633 void Set(
float right)
override
638 float Get()
const override
640 return static_cast<float>(*m_Iterator);
653 void Set(int32_t right)
override
658 int32_t
Get()
const override
673 void Set(
double right)
override
678 double_t
Get()
const override
680 return static_cast<double>(*m_Iterator);
693 void Set(
bool right)
override
706 template<
typename T,
typename Base>
711 unsigned int axisFactor = 0,
712 unsigned int axisDimensionality=0)
723 const unsigned int axis = 0)
798 :
PerAxisIterator(data, tensorInfo.GetShape(), tensorInfo.GetQuantizationDim().value()),
799 m_Scales(tensorInfo.GetQuantizationScales()), m_Offset(tensorInfo.GetQuantizationOffset())
802 float Get()
const override
816 std::vector<float> decodedTensor;
817 decodedTensor.reserve(size);
819 for (uint32_t i = 0; i < size; ++i)
824 return decodedTensor;
828 std::vector<float> m_Scales;
829 const int32_t m_Offset;
836 :
PerAxisIterator(data, tensorInfo.GetShape(), tensorInfo.GetQuantizationDim().value()),
837 m_Scale(tensorInfo.GetQuantizationScales()), m_Offset(tensorInfo.GetQuantizationOffset())
857 std::vector<float> m_Scale;
858 const int32_t m_Offset;
865 :
PerAxisIterator(data, tensorInfo.GetShape(), tensorInfo.GetQuantizationDim().value()),
866 m_Scales(tensorInfo.GetQuantizationScales())
869 float Get()
const override
881 bool isDepthwise)
override
885 const uint32_t stepSize = isDepthwise ?
886 tensorShape[2] * tensorShape[3] : tensorShape.
GetNumElements() / tensorShape[0];
888 const uint32_t stepNum = size / stepSize;
890 std::vector<float> decodedTensor;
891 decodedTensor.reserve(size);
896 for (uint32_t step = 0; step < stepNum; ++step)
899 for (uint32_t i = 0; i < stepSize; ++i)
901 unsigned int index = step * stepSize + i;
906 return decodedTensor;
910 std::vector<float> m_Scales;
917 unsigned int axisFactor,
unsigned int axisDimensionality)
918 :
PerAxisIterator(data, axisFactor, axisDimensionality), m_Scale(scale) {}
937 std::vector<float> m_Scale;
#define ARMNN_THROW_INVALIDARG_MSG_IF_FALSE(_cond, _str)
virtual BaseIterator & operator-=(const unsigned int increment)=0
virtual BaseIterator & operator[](const unsigned int index)=0
virtual BaseIterator & operator++()=0
virtual BaseIterator & operator+=(const unsigned int increment)=0
BooleanDecoderBool(const uint8_t *data)
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
bool Get() const override
BooleanDecoder(const uint8_t *data)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
BooleanEncoder(uint8_t *data)
void Set(bool right) override
bool Get() const override
virtual void Reset(void *)=0
virtual std::vector< float > DecodeTensor(const TensorShape &tensorShape, bool isDepthwise=false)=0
virtual IType Get() const =0
virtual void Reset(void *)=0
virtual IType Get() const =0
virtual void Set(IType right)=0
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
Float16Decoder(const Half *data)
float Get() const override
Float16Encoder(Half *data)
void Set(float right) override
Float32Decoder(const float *data)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
Float32Encoder(float *data)
float Get() const override
void Set(float right) override
Int32Decoder(const int32_t *data)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
Int32Encoder(int32_t *data)
float Get() const override
void Set(float right) override
Int32ToInt32tDecoder(const int32_t *data)
int32_t Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
void Set(int32_t right) override
int32_t Get() const override
Int32ToInt32tEncoder(int32_t *data)
double_t Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
Int64Decoder(const int64_t *data)
void Set(double right) override
double_t Get() const override
Int64Encoder(int64_t *data)
PerAxisIterator for per-axis quantization.
PerAxisIterator & operator+=(const unsigned int increment) override
PerAxisIterator & operator++() override
PerAxisIterator & operator[](const unsigned int index) override
void Reset(void *data) override
PerAxisIterator & operator-=(const unsigned int decrement) override
unsigned int m_AxisDimensionality
PerAxisIterator(T *data=nullptr, const armnn::TensorShape &tensorShape=TensorShape(), const unsigned int axis=0)
PerAxisIterator(T *data=nullptr, unsigned int axisFactor=0, unsigned int axisDimensionality=0)
unsigned int m_AxisFactor
PerAxisIterator & SetIndexOnMem(const unsigned int index)
QASymm8Decoder(const uint8_t *data, const float scale, const int32_t offset)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
QASymm8Decoder(const float scale, const int32_t offset)
QASymm8Encoder(uint8_t *data, const float scale, const int32_t offset)
QASymm8Encoder(const float scale, const int32_t offset)
float Get() const override
void Set(float right) override
QASymmS8Decoder(const float scale, const int32_t offset)
QASymmS8Decoder(const int8_t *data, const float scale, const int32_t offset)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
QASymmS8Encoder(const float scale, const int32_t offset)
QASymmS8Encoder(int8_t *data, const float scale, const int32_t offset)
float Get() const override
void Set(float right) override
QSymm16Decoder(const int16_t *data, const float scale, const int32_t offset)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
QSymm16Decoder(const float scale, const int32_t offset)
QSymm16Encoder(const float scale, const int32_t offset)
QSymm16Encoder(int16_t *data, const float scale, const int32_t offset)
float Get() const override
void Set(float right) override
QSymm16PerAxisEncoder(int16_t *data, const std::vector< float > &scale, unsigned int axisFactor, unsigned int axisDimensionality)
QSymm8PerAxisDecoder(const int8_t *data, const armnn::TensorInfo &tensorInfo)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
QSymm8PerAxisEncoder(int8_t *data, const armnn::TensorInfo &tensorInfo)
QSymmS8Decoder(const float scale, const int32_t offset)
QSymmS8Decoder(const int8_t *data, const float scale, const int32_t offset)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
QSymmS8Encoder(int8_t *data, const float scale, const int32_t offset)
float Get() const override
QSymmS8Encoder(const float scale, const int32_t offset)
void Set(float right) override
ScaledInt32Decoder(const int32_t *data, const float scale)
float Get() const override
std::vector< float > DecodeTensor(const TensorShape &tensorShape, const bool) override
ScaledInt32Decoder(const float scale)
std::vector< float > DecodeTensor(const TensorShape &tensorShape, bool isDepthwise) override
ScaledInt32PerAxisDecoder(const int32_t *data, const armnn::TensorInfo tensorInfo)
float Get() const override
unsigned int GetNumElements() const
Function that calculates the tensor elements by multiplying all dimension size which are Specified.
TypedIterator & operator-=(const unsigned int increment) override
void Reset(void *data) override
TypedIterator & operator++() override
TypedIterator(T *data=nullptr)
TypedIterator & operator[](const unsigned int index) override
TypedIterator & operator+=(const unsigned int increment) override
static void ConvertFloat16To32(const void *srcFloat16Buffer, size_t numElements, float *dstFloat32Buffer)
static void ConvertFloat32To16(const float *srcFloat32Buffer, size_t numElements, void *dstFloat16Buffer)
Converts a buffer of FP32 values to FP16, and stores in the given dstFloat16Buffer.
Copyright (c) 2021 ARM Limited and Contributors.
float Dequantize(QuantizedType value, float scale, int32_t offset)
Dequantize an 8-bit data type into a floating point data type.
unsigned int GetNumElementsAfter(const armnn::TensorShape &shape, unsigned int axis)