ArmNN
 21.02
BaseTensor< MemoryType > Class Template Reference

#include <Tensor.hpp>

Public Member Functions

 BaseTensor ()
 Empty (invalid) constructor. More...
 
 BaseTensor (const TensorInfo &info, MemoryType memoryArea)
 Constructor from a raw memory pointer. More...
 
 BaseTensor (const BaseTensor &other)
 Tensors are copyable. More...
 
BaseTensoroperator= (const BaseTensor &)
 Tensors are copyable. More...
 
const TensorInfoGetInfo () const
 
TensorInfoGetInfo ()
 
const TensorShapeGetShape () const
 
TensorShapeGetShape ()
 
DataType GetDataType () const
 
unsigned int GetNumDimensions () const
 
unsigned int GetNumBytes () const
 
unsigned int GetNumElements () const
 
MemoryType GetMemoryArea () const
 

Protected Member Functions

 ~BaseTensor ()
 Protected destructor to stop users from making these (could still new one on the heap and then leak it...) More...
 

Protected Attributes

MemoryType m_MemoryArea
 

Detailed Description

template<typename MemoryType>
class armnn::BaseTensor< MemoryType >

Definition at line 264 of file Tensor.hpp.

Constructor & Destructor Documentation

◆ BaseTensor() [1/3]

Empty (invalid) constructor.

Definition at line 505 of file Tensor.cpp.

506  : m_MemoryArea(nullptr)
507 {
508 }
MemoryType m_MemoryArea
Definition: Tensor.hpp:299

◆ BaseTensor() [2/3]

BaseTensor ( const TensorInfo info,
MemoryType  memoryArea 
)

Constructor from a raw memory pointer.

Parameters
memoryArea- Region of CPU-addressable memory where tensor data will be stored. Must be valid while workloads are on the fly. Tensor instances do not claim ownership of referenced memory regions, that is, no attempt will be made by ArmNN to free these memory regions automatically.

Definition at line 511 of file Tensor.cpp.

512  : m_MemoryArea(memoryArea)
513  , m_Info(info)
514 {
515 }
MemoryType m_MemoryArea
Definition: Tensor.hpp:299

◆ BaseTensor() [3/3]

BaseTensor ( const BaseTensor< MemoryType > &  other)

Tensors are copyable.

◆ ~BaseTensor()

~BaseTensor ( )
inlineprotected

Protected destructor to stop users from making these (could still new one on the heap and then leak it...)

Definition at line 297 of file Tensor.hpp.

297 {}

Member Function Documentation

◆ GetDataType()

DataType GetDataType ( ) const
inline

Definition at line 287 of file Tensor.hpp.

Referenced by CompareConstTensor(), and armnn::ConvertWeightTensorFromArmnnToAcl().

287 { return m_Info.GetDataType(); }
DataType GetDataType() const
Definition: Tensor.hpp:194

◆ GetInfo() [1/2]

◆ GetInfo() [2/2]

TensorInfo& GetInfo ( )
inline

Definition at line 283 of file Tensor.hpp.

283 { return m_Info; }

◆ GetMemoryArea()

◆ GetNumBytes()

unsigned int GetNumBytes ( ) const
inline

◆ GetNumDimensions()

unsigned int GetNumDimensions ( ) const
inline

Definition at line 288 of file Tensor.hpp.

Referenced by TestLayerVisitor::CheckConstTensors().

288 { return m_Info.GetNumDimensions(); }
unsigned int GetNumDimensions() const
Definition: Tensor.hpp:191

◆ GetNumElements()

unsigned int GetNumElements ( ) const
inline

Definition at line 290 of file Tensor.hpp.

Referenced by TestLayerVisitor::CheckConstTensors(), and CompareConstTensor().

290 { return m_Info.GetNumElements(); }
unsigned int GetNumElements() const
Definition: Tensor.hpp:192

◆ GetShape() [1/2]

◆ GetShape() [2/2]

TensorShape& GetShape ( )
inline

Definition at line 285 of file Tensor.hpp.

285 { return m_Info.GetShape(); }
const TensorShape & GetShape() const
Definition: Tensor.hpp:187

◆ operator=()

BaseTensor< MemoryType > & operator= ( const BaseTensor< MemoryType > &  )

Tensors are copyable.

Definition at line 525 of file Tensor.cpp.

526 {
527  m_Info = other.m_Info;
528  m_MemoryArea = other.m_MemoryArea;
529  return *this;
530 }
MemoryType m_MemoryArea
Definition: Tensor.hpp:299

Member Data Documentation

◆ m_MemoryArea

MemoryType m_MemoryArea
protected

The documentation for this class was generated from the following files: