ArmNN
 24.05
Int64Decoder Class Reference

#include <BaseIterator.hpp>

Inheritance diagram for Int64Decoder:
[legend]
Collaboration diagram for Int64Decoder:
[legend]

Public Member Functions

 Int64Decoder (const int64_t *data)
 
 Int64Decoder ()
 
double_t Get () const override
 
std::vector< float > DecodeTensor (const TensorShape &tensorShape, const bool) override
 
- Public Member Functions inherited from TypedIterator< const int64_t, Decoder< double_t > >
 TypedIterator (const int64_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
 
- Public Member Functions inherited from Decoder< double_t >
 Decoder ()
 
virtual ~Decoder ()
 
virtual double_t Get () const=0
 
- Public Member Functions inherited from BaseIterator
 BaseIterator ()
 
virtual ~BaseIterator ()
 

Additional Inherited Members

- Protected Attributes inherited from TypedIterator< const int64_t, Decoder< double_t > >
const int64_t * m_Iterator
 
const int64_t * m_Start
 

Detailed Description

Definition at line 398 of file BaseIterator.hpp.

Constructor & Destructor Documentation

◆ Int64Decoder() [1/2]

Int64Decoder ( const int64_t *  data)
inline

Definition at line 401 of file BaseIterator.hpp.

402  : TypedIterator(data) {}

◆ Int64Decoder() [2/2]

Int64Decoder ( )
inline

Definition at line 404 of file BaseIterator.hpp.

405  : Int64Decoder(nullptr) {}

Member Function Documentation

◆ DecodeTensor()

std::vector<float> DecodeTensor ( const TensorShape tensorShape,
const bool   
)
inlineoverridevirtual

Implements Decoder< double_t >.

Definition at line 411 of file BaseIterator.hpp.

412  {
413  const unsigned int size = tensorShape.GetNumElements();
414  std::vector<float> decodedTensor;
415  decodedTensor.reserve(size);
416 
417  for (uint32_t i = 0; i < size; ++i)
418  {
419  this->operator[](i);
420  decodedTensor.emplace_back(static_cast<float>(*m_Iterator));
421  }
422 
423  return decodedTensor;
424  }

References TensorShape::GetNumElements(), TypedIterator< const int64_t, Decoder< double_t > >::m_Iterator, and TypedIterator< const int64_t, Decoder< double_t > >::operator[]().

◆ Get()

double_t Get ( ) const
inlineoverride

Definition at line 407 of file BaseIterator.hpp.

408  {
409  return static_cast<double_t>(*m_Iterator);
410  }

The documentation for this class was generated from the following file:
armnn::TypedIterator< const int64_t, Decoder< double_t > >::m_Iterator
const int64_t * m_Iterator
Definition: BaseIterator.hpp:107
armnn::TypedIterator< const int64_t, Decoder< double_t > >::TypedIterator
TypedIterator(const int64_t *data=nullptr)
Definition: BaseIterator.hpp:68
armnn::TypedIterator< const int64_t, Decoder< double_t > >::operator[]
TypedIterator & operator[](const unsigned int index) override
Definition: BaseIterator.hpp:99
armnn::Int64Decoder::Int64Decoder
Int64Decoder()
Definition: BaseIterator.hpp:404