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_float16_decoder.xhtml | 270 +++++++++++++++++++++++++++++ 1 file changed, 270 insertions(+) create mode 100644 20.02/classarmnn_1_1_float16_decoder.xhtml (limited to '20.02/classarmnn_1_1_float16_decoder.xhtml') diff --git a/20.02/classarmnn_1_1_float16_decoder.xhtml b/20.02/classarmnn_1_1_float16_decoder.xhtml new file mode 100644 index 0000000000..478e45ed37 --- /dev/null +++ b/20.02/classarmnn_1_1_float16_decoder.xhtml @@ -0,0 +1,270 @@ + + + + + + + + + + + + + +ArmNN: Float16Decoder Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Float16Decoder Class Reference
+
+
+ +

#include <BaseIterator.hpp>

+
+Inheritance diagram for Float16Decoder:
+
+
+ + +TypedIterator< const Half, Decoder< float > > +Decoder< float > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Float16Decoder (const Half *data)
 
 Float16Decoder ()
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< const Half, Decoder< float > >
 TypedIterator (const Half *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 Half, Decoder< float > >
const Halfm_Iterator
 
const Halfm_Start
 
+

Detailed Description

+
+

Definition at line 213 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ Float16Decoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
Float16Decoder (const Halfdata)
+
+inline
+
+ +

Definition at line 216 of file BaseIterator.hpp.

+
217  : TypedIterator(data) {}
+
+
+
+ +

◆ Float16Decoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
Float16Decoder ()
+
+inline
+
+ +

Definition at line 219 of file BaseIterator.hpp.

+
220  : Float16Decoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

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

Implements Decoder< float >.

+ +

Definition at line 222 of file BaseIterator.hpp.

+ +

References FloatingPointConverter::ConvertFloat16To32().

+
223  {
224  float val = 0.f;
226  return val;
227  }
+
static void ConvertFloat16To32(const void *srcFloat16Buffer, size_t numElements, float *dstFloat32Buffer)
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1