From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml | 330 +++++++++++++++++++++++++++ 1 file changed, 330 insertions(+) create mode 100644 21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml (limited to '21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml') diff --git a/21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml b/21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml new file mode 100644 index 0000000000..bdabdc1120 --- /dev/null +++ b/21.02/classarmnn_1_1_q_symm_s8_encoder.xhtml @@ -0,0 +1,330 @@ + + + + + + + + + + + + + +ArmNN: QSymmS8Encoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
QSymmS8Encoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for QSymmS8Encoder:
+
+
+ + +TypedIterator< int8_t, Encoder< float > > +Encoder< float > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 QSymmS8Encoder (int8_t *data, const float scale, const int32_t offset)
 
 QSymmS8Encoder (const float scale, const int32_t offset)
 
void Set (float right) override
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< int8_t, Encoder< float > >
 TypedIterator (int8_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
 
TypedIteratorSetIndex (unsigned int index, unsigned int axisIndex=0) override
 
- Public Member Functions inherited from Encoder< float >
 Encoder ()
 
virtual ~Encoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from TypedIterator< int8_t, Encoder< float > >
int8_t * m_Iterator
 
int8_t * m_Start
 
+

Detailed Description

+
+

Definition at line 600 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ QSymmS8Encoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
QSymmS8Encoder (int8_t * data,
const float scale,
const int32_t offset 
)
+
+inline
+
+ +

Definition at line 603 of file BaseIterator.hpp.

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

◆ QSymmS8Encoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
QSymmS8Encoder (const float scale,
const int32_t offset 
)
+
+inline
+
+ +

Definition at line 606 of file BaseIterator.hpp.

+
607  : QSymmS8Encoder(nullptr, scale, offset) {}
QSymmS8Encoder(int8_t *data, const float scale, const int32_t offset)
+
+
+
+

Member Function Documentation

+ +

◆ Get()

+ +
+
+ + + + + +
+ + + + + + + +
float Get () const
+
+inlineoverridevirtual
+
+ +

Implements Encoder< float >.

+ +

Definition at line 614 of file BaseIterator.hpp.

+ +

References armnn::Dequantize.

+ +
+
+ +

◆ Set()

+ +
+
+ + + + + +
+ + + + + + + + +
void Set (float right)
+
+inlineoverridevirtual
+
+ +

Implements Encoder< float >.

+ +

Definition at line 609 of file BaseIterator.hpp.

+
610  {
611  *m_Iterator = armnn::Quantize<int8_t>(right, m_Scale, m_Offset);
612  }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1