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 --- Documentation/classarmnn_1_1_float32_encoder.xhtml | 300 --------------------- 1 file changed, 300 deletions(-) delete mode 100644 Documentation/classarmnn_1_1_float32_encoder.xhtml (limited to 'Documentation/classarmnn_1_1_float32_encoder.xhtml') diff --git a/Documentation/classarmnn_1_1_float32_encoder.xhtml b/Documentation/classarmnn_1_1_float32_encoder.xhtml deleted file mode 100644 index 9fb5961439..0000000000 --- a/Documentation/classarmnn_1_1_float32_encoder.xhtml +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - - - - - - -ArmNN: Float32Encoder Class Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
Float32Encoder Class Reference
-
-
- -

#include <BaseIterator.hpp>

-
-Inheritance diagram for Float32Encoder:
-
-
- - -TypedIterator< float, Encoder< float > > -Encoder< float > -BaseIterator - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 Float32Encoder (float *data)
 
 Float32Encoder ()
 
void Set (float right) override
 
float Get () const override
 
- Public Member Functions inherited from TypedIterator< float, Encoder< float > >
 TypedIterator (float *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< float, Encoder< float > >
float * m_Iterator
 
float * m_Start
 
-

Detailed Description

-
-

Definition at line 418 of file BaseIterator.hpp.

-

Constructor & Destructor Documentation

- -

◆ Float32Encoder() [1/2]

- -
-
- - - - - -
- - - - - - - - -
Float32Encoder (float * data)
-
-inline
-
- -

Definition at line 421 of file BaseIterator.hpp.

-
422  : TypedIterator(data) {}
-
-
-
- -

◆ Float32Encoder() [2/2]

- -
-
- - - - - -
- - - - - - - -
Float32Encoder ()
-
-inline
-
- -

Definition at line 424 of file BaseIterator.hpp.

-
425  : Float32Encoder(nullptr) {}
-
-
-
-

Member Function Documentation

- -

◆ Get()

- -
-
- - - - - -
- - - - - - - -
float Get () const
-
-inlineoverridevirtual
-
- -

Implements Encoder< float >.

- -

Definition at line 432 of file BaseIterator.hpp.

-
433  {
434  return *m_Iterator;
435  }
-
-
-
- -

◆ Set()

- -
-
- - - - - -
- - - - - - - - -
void Set (float right)
-
-inlineoverridevirtual
-
- -

Implements Encoder< float >.

- -

Definition at line 427 of file BaseIterator.hpp.

-
428  {
429  *m_Iterator = right;
430  }
-
-
-
-
The documentation for this class was generated from the following file: -
-
- - - - -- cgit v1.2.1