ArmNN
 26.01
Loading...
Searching...
No Matches
QASymm8Decoder Class Reference

#include <BaseIterator.hpp>

Inheritance diagram for QASymm8Decoder:
[legend]
Collaboration diagram for QASymm8Decoder:
[legend]

Public Member Functions

 QASymm8Decoder (const uint8_t *data, const float scale, const int32_t offset)
 
 QASymm8Decoder (const float scale, const int32_t offset)
 
float Get () const override
 
std::vector< float > DecodeTensor (const TensorShape &tensorShape, const bool) override
 
- Public Member Functions inherited from TypedIterator< const uint8_t, Decoder< float > >
 TypedIterator (const uint8_t *data=nullptr)
 
void Reset (void *data) override
 
TypedIteratoroperator++ () override
 
TypedIteratoroperator+= (const unsigned int increment) override
 
TypedIteratoroperator-= (const unsigned int increment) override
 
TypedIteratoroperator[] (const unsigned int index) override
 
- Public Member Functions inherited from Decoder< float >
 Decoder ()
 
virtual ~Decoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 

Additional Inherited Members

- Protected Attributes inherited from TypedIterator< const uint8_t, Decoder< float > >
const uint8_t * m_Iterator
 
const uint8_t * m_Start
 

Detailed Description

Definition at line 111 of file BaseIterator.hpp.

Constructor & Destructor Documentation

◆ QASymm8Decoder() [1/2]

QASymm8Decoder ( const uint8_t * data,
const float scale,
const int32_t offset )
inline

Definition at line 114 of file BaseIterator.hpp.

115 : TypedIterator(data), m_Scale(scale), m_Offset(offset) {}

◆ QASymm8Decoder() [2/2]

QASymm8Decoder ( const float scale,
const int32_t offset )
inline

Definition at line 117 of file BaseIterator.hpp.

118 : QASymm8Decoder(nullptr, scale, offset) {}
QASymm8Decoder(const uint8_t *data, const float scale, const int32_t offset)

Member Function Documentation

◆ DecodeTensor()

std::vector< float > DecodeTensor ( const TensorShape & tensorShape,
const bool  )
inlineoverridevirtual

Implements Decoder< float >.

Definition at line 124 of file BaseIterator.hpp.

125 {
126 const unsigned int size = tensorShape.GetNumElements();
127 std::vector<float> decodedTensor;
128 decodedTensor.reserve(size);
129
130 for (uint32_t i = 0; i < size; ++i)
131 {
132 this->operator[](i);
133 decodedTensor.emplace_back(armnn::Dequantize(*m_Iterator, m_Scale, m_Offset));
134 }
135
136 return decodedTensor;
137 }
TypedIterator & operator[](const unsigned int index) override

References armnn::Dequantize, TensorShape::GetNumElements(), TypedIterator< const uint8_t, Decoder< float > >::m_Iterator, and TypedIterator< const uint8_t, Decoder< float > >::operator[]().

◆ Get()

float Get ( ) const
inlineoverridevirtual

Implements Decoder< float >.

Definition at line 120 of file BaseIterator.hpp.

121 {
122 return armnn::Dequantize(*m_Iterator, m_Scale, m_Offset);
123 }

References armnn::Dequantize, and TypedIterator< const uint8_t, Decoder< float > >::m_Iterator.


The documentation for this class was generated from the following file: