ArmNN
 20.02
NeonTensorHandle Class Reference

#include <NeonTensorHandle.hpp>

Inheritance diagram for NeonTensorHandle:
IAclTensorHandle ITensorHandle

Public Member Functions

 NeonTensorHandle (const TensorInfo &tensorInfo)
 
 NeonTensorHandle (const TensorInfo &tensorInfo, DataLayout dataLayout, MemorySourceFlags importFlags=static_cast< MemorySourceFlags >(MemorySource::Malloc))
 
arm_compute::ITensor & GetTensor () override
 
arm_compute::ITensor const & GetTensor () const override
 
virtual void Allocate () override
 Indicate to the memory manager that this resource is no longer active. More...
 
virtual void Manage () override
 Indicate to the memory manager that this resource is active. More...
 
virtual ITensorHandleGetParent () const override
 Get the parent tensor if this is a subtensor. More...
 
virtual arm_compute::DataType GetDataType () const override
 
virtual void SetMemoryGroup (const std::shared_ptr< arm_compute::IMemoryGroup > &memoryGroup) override
 
virtual const void * Map (bool) const override
 Map the tensor data for access. More...
 
virtual void Unmap () const override
 Unmap the tensor data. More...
 
TensorShape GetStrides () const override
 Get the strides for each dimension ordered from largest to smallest where the smallest value is the same as the size of a single element in the tensor. More...
 
TensorShape GetShape () const override
 Get the number of elements for each dimension ordered from slowest iterating dimension to fastest iterating dimension. More...
 
void SetImportFlags (MemorySourceFlags importFlags)
 
MemorySourceFlags GetImportFlags () const override
 Get flags describing supported import sources. More...
 
void SetImportEnabledFlag (bool importEnabledFlag)
 
virtual bool Import (void *memory, MemorySource source) override
 Import externally allocated memory. More...
 
- Public Member Functions inherited from ITensorHandle
virtual ~ITensorHandle ()
 
void * Map (bool blocking=true)
 Map the tensor data for access. More...
 
void Unmap ()
 Unmap the tensor data that was previously mapped with call to Map(). More...
 

Detailed Description

Definition at line 24 of file NeonTensorHandle.hpp.

Constructor & Destructor Documentation

◆ NeonTensorHandle() [1/2]

NeonTensorHandle ( const TensorInfo tensorInfo)
inline

Definition at line 27 of file NeonTensorHandle.hpp.

28  : m_ImportFlags(static_cast<MemorySourceFlags>(MemorySource::Malloc)),
29  m_Imported(false),
30  m_IsImportEnabled(false)
31  {
32  armnn::armcomputetensorutils::BuildArmComputeTensor(m_Tensor, tensorInfo);
33  }

◆ NeonTensorHandle() [2/2]

NeonTensorHandle ( const TensorInfo tensorInfo,
DataLayout  dataLayout,
MemorySourceFlags  importFlags = static_cast<MemorySourceFlags>(MemorySource::Malloc) 
)
inline

Definition at line 35 of file NeonTensorHandle.hpp.

38  : m_ImportFlags(importFlags),
39  m_Imported(false),
40  m_IsImportEnabled(false)
41 
42  {
43  armnn::armcomputetensorutils::BuildArmComputeTensor(m_Tensor, tensorInfo, dataLayout);
44  }

Member Function Documentation

◆ Allocate()

virtual void Allocate ( )
inlineoverridevirtual

Indicate to the memory manager that this resource is no longer active.

This is used to compute overlapping lifetimes of resources.

Implements ITensorHandle.

Definition at line 49 of file NeonTensorHandle.hpp.

50  {
51  // If we have enabled Importing, don't Allocate the tensor
52  if (!m_IsImportEnabled)
53  {
54  armnn::armcomputetensorutils::InitialiseArmComputeTensorEmpty(m_Tensor);
55  }
56  };

◆ GetDataType()

virtual arm_compute::DataType GetDataType ( ) const
inlineoverridevirtual

Implements IAclTensorHandle.

Definition at line 70 of file NeonTensorHandle.hpp.

Referenced by NeonTensorHandle::Import().

71  {
72  return m_Tensor.info()->data_type();
73  }

◆ GetImportFlags()

MemorySourceFlags GetImportFlags ( ) const
inlineoverridevirtual

Get flags describing supported import sources.

Reimplemented from ITensorHandle.

Definition at line 102 of file NeonTensorHandle.hpp.

103  {
104  return m_ImportFlags;
105  }

◆ GetParent()

virtual ITensorHandle* GetParent ( ) const
inlineoverridevirtual

Get the parent tensor if this is a subtensor.

Returns
a pointer to the parent tensor. Otherwise nullptr if not a subtensor.

Implements ITensorHandle.

Definition at line 68 of file NeonTensorHandle.hpp.

68 { return nullptr; }

◆ GetShape()

TensorShape GetShape ( ) const
inlineoverridevirtual

Get the number of elements for each dimension ordered from slowest iterating dimension to fastest iterating dimension.

Returns
a TensorShape filled with the number of elements for each dimension.

Implements ITensorHandle.

Definition at line 92 of file NeonTensorHandle.hpp.

93  {
94  return armcomputetensorutils::GetShape(m_Tensor.info()->tensor_shape());
95  }

◆ GetStrides()

TensorShape GetStrides ( ) const
inlineoverridevirtual

Get the strides for each dimension ordered from largest to smallest where the smallest value is the same as the size of a single element in the tensor.

Returns
a TensorShape filled with the strides for each dimension

Implements ITensorHandle.

Definition at line 87 of file NeonTensorHandle.hpp.

88  {
89  return armcomputetensorutils::GetStrides(m_Tensor.info()->strides_in_bytes());
90  }

◆ GetTensor() [1/2]

arm_compute::ITensor& GetTensor ( )
inlineoverridevirtual

Implements IAclTensorHandle.

Definition at line 46 of file NeonTensorHandle.hpp.

46 { return m_Tensor; }

◆ GetTensor() [2/2]

arm_compute::ITensor const& GetTensor ( ) const
inlineoverridevirtual

Implements IAclTensorHandle.

Definition at line 47 of file NeonTensorHandle.hpp.

47 { return m_Tensor; }

◆ Import()

virtual bool Import ( void *  memory,
MemorySource  source 
)
inlineoverridevirtual

Import externally allocated memory.

Parameters
memorybase address of the memory being imported.
sourcesource of the allocation for the memory being imported.
Returns
true on success or false on failure

Reimplemented from ITensorHandle.

Definition at line 112 of file NeonTensorHandle.hpp.

References NeonTensorHandle::GetDataType(), and armnn::Malloc.

113  {
114  if (m_ImportFlags & static_cast<MemorySourceFlags>(source))
115  {
116  if (source == MemorySource::Malloc && m_IsImportEnabled)
117  {
118  // Checks the 16 byte memory alignment
119  constexpr uintptr_t alignment = sizeof(size_t);
120  if (reinterpret_cast<uintptr_t>(memory) % alignment)
121  {
122  throw MemoryImportException("NeonTensorHandle::Import Attempting to import unaligned memory");
123  }
124 
125  // m_Tensor not yet Allocated
126  if (!m_Imported && !m_Tensor.buffer())
127  {
128  arm_compute::Status status = m_Tensor.allocator()->import_memory(memory);
129  // Use the overloaded bool operator of Status to check if it worked, if not throw an exception
130  // with the Status error message
131  m_Imported = bool(status);
132  if (!m_Imported)
133  {
134  throw MemoryImportException(status.error_description());
135  }
136  return m_Imported;
137  }
138 
139  // m_Tensor.buffer() initially allocated with Allocate().
140  if (!m_Imported && m_Tensor.buffer())
141  {
142  throw MemoryImportException(
143  "NeonTensorHandle::Import Attempting to import on an already allocated tensor");
144  }
145 
146  // m_Tensor.buffer() previously imported.
147  if (m_Imported)
148  {
149  arm_compute::Status status = m_Tensor.allocator()->import_memory(memory);
150  // Use the overloaded bool operator of Status to check if it worked, if not throw an exception
151  // with the Status error message
152  m_Imported = bool(status);
153  if (!m_Imported)
154  {
155  throw MemoryImportException(status.error_description());
156  }
157  return m_Imported;
158  }
159  }
160  }
161  return false;
162  }
Status
enumeration
Definition: Types.hpp:26

◆ Manage()

virtual void Manage ( )
inlineoverridevirtual

Indicate to the memory manager that this resource is active.

This is used to compute overlapping lifetimes of resources.

Implements ITensorHandle.

Definition at line 58 of file NeonTensorHandle.hpp.

59  {
60  // If we have enabled Importing, don't manage the tensor
61  if (!m_IsImportEnabled)
62  {
63  BOOST_ASSERT(m_MemoryGroup != nullptr);
64  m_MemoryGroup->manage(&m_Tensor);
65  }
66  }

◆ Map()

virtual const void* Map ( bool  blocking) const
inlineoverridevirtual

Map the tensor data for access.

Parameters
blockinghint to block the calling thread until all other accesses are complete. (backend dependent)
Returns
pointer to the first element of the mapped data.

Implements ITensorHandle.

Definition at line 80 of file NeonTensorHandle.hpp.

81  {
82  return static_cast<const void*>(m_Tensor.buffer() + m_Tensor.info()->offset_first_element_in_bytes());
83  }

◆ SetImportEnabledFlag()

void SetImportEnabledFlag ( bool  importEnabledFlag)
inline

Definition at line 107 of file NeonTensorHandle.hpp.

108  {
109  m_IsImportEnabled = importEnabledFlag;
110  }

◆ SetImportFlags()

void SetImportFlags ( MemorySourceFlags  importFlags)
inline

Definition at line 97 of file NeonTensorHandle.hpp.

98  {
99  m_ImportFlags = importFlags;
100  }

◆ SetMemoryGroup()

virtual void SetMemoryGroup ( const std::shared_ptr< arm_compute::IMemoryGroup > &  memoryGroup)
inlineoverridevirtual

Implements IAclTensorHandle.

Definition at line 75 of file NeonTensorHandle.hpp.

76  {
77  m_MemoryGroup = boost::polymorphic_pointer_downcast<arm_compute::MemoryGroup>(memoryGroup);
78  }

◆ Unmap()

virtual void Unmap ( ) const
inlineoverridevirtual

Unmap the tensor data.

Implements ITensorHandle.

Definition at line 85 of file NeonTensorHandle.hpp.

85 {}

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