From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml | 297 +++++++++++++++++++++++++ 1 file changed, 297 insertions(+) create mode 100644 20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml (limited to '20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml') diff --git a/20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml b/20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml new file mode 100644 index 0000000000..b8a908b621 --- /dev/null +++ b/20.02/classarmnn_1_1_q_a_symm_s8_decoder.xhtml @@ -0,0 +1,297 @@ + + + + + + + + + + + + + +ArmNN: QASymmS8Decoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
QASymmS8Decoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for QASymmS8Decoder:
+
+
+ + +TypedIterator< const int8_t, Decoder< float > > +Decoder< float > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 QASymmS8Decoder (const int8_t *data, const float scale, const int32_t offset)
 
 QASymmS8Decoder (const float scale, const int32_t offset)
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< const int8_t, Decoder< float > >
 TypedIterator (const 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 Decoder< float >
 Decoder ()
 
virtual ~Decoder ()
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 
+ + + + + + +

+Additional Inherited Members

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

Detailed Description

+
+

Definition at line 139 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ QASymmS8Decoder() [1/2]

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

Definition at line 142 of file BaseIterator.hpp.

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

◆ QASymmS8Decoder() [2/2]

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

Definition at line 145 of file BaseIterator.hpp.

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

Member Function Documentation

+ +

◆ Get()

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

Implements Decoder< float >.

+ +

Definition at line 148 of file BaseIterator.hpp.

+ +

References armnn::Dequantize.

+
149  {
150  return armnn::Dequantize(*m_Iterator, m_Scale, m_Offset);
151  }
+ +
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1