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

#include <BaseIterator.hpp>

+
+Inheritance diagram for BFloat16Decoder:
+
+
+ + +TypedIterator< const BFloat16, Decoder< float > > +Decoder< float > +BaseIterator + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 BFloat16Decoder (const BFloat16 *data)
 
 BFloat16Decoder ()
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< const BFloat16, Decoder< float > >
 TypedIterator (const BFloat16 *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 BFloat16, Decoder< float > >
const BFloat16m_Iterator
 
const BFloat16m_Start
 
+

Detailed Description

+
+

Definition at line 196 of file BaseIterator.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BFloat16Decoder() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + +
BFloat16Decoder (const BFloat16data)
+
+inline
+
+ +

Definition at line 199 of file BaseIterator.hpp.

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

◆ BFloat16Decoder() [2/2]

+ +
+
+ + + + + +
+ + + + + + + +
BFloat16Decoder ()
+
+inline
+
+ +

Definition at line 202 of file BaseIterator.hpp.

+
203  : BFloat16Decoder(nullptr) {}
+
+
+
+

Member Function Documentation

+ +

◆ Get()

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

Implements Decoder< float >.

+ +

Definition at line 205 of file BaseIterator.hpp.

+ +

References FloatingPointConverter::ConvertBFloat16ToFloat32().

+
206  {
207  float val = 0.f;
209  return val;
210  }
+
static void ConvertBFloat16ToFloat32(const void *srcBFloat16Buffer, size_t numElements, float *dstFloat32Buffer)
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1