From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- .../classarmnn_1_1_q_a_symm_s8_decoder.html | 283 +++++++++++++++++++++ 1 file changed, 283 insertions(+) create mode 100644 Documentation/classarmnn_1_1_q_a_symm_s8_decoder.html (limited to 'Documentation/classarmnn_1_1_q_a_symm_s8_decoder.html') diff --git a/Documentation/classarmnn_1_1_q_a_symm_s8_decoder.html b/Documentation/classarmnn_1_1_q_a_symm_s8_decoder.html new file mode 100644 index 0000000000..446cc729fe --- /dev/null +++ b/Documentation/classarmnn_1_1_q_a_symm_s8_decoder.html @@ -0,0 +1,283 @@ + + + + + + + +ArmNN: QASymmS8Decoder Class Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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 140 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 143 of file BaseIterator.hpp.

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

◆ QASymmS8Decoder() [2/2]

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

Definition at line 146 of file BaseIterator.hpp.

+
147  : 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 149 of file BaseIterator.hpp.

+ +

References armnn::Dequantize.

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