ArmNN
 25.11
Loading...
Searching...
No Matches
NeonGatherWorkload Class Reference

#include <NeonGatherWorkload.hpp>

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

Public Member Functions

 NeonGatherWorkload (const GatherQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual void Execute () const override
Public Member Functions inherited from NeonBaseWorkload< GatherQueueDescriptor >
 NeonBaseWorkload (const GatherQueueDescriptor &descriptor, const WorkloadInfo &info)
void ReplaceInputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
void ReplaceOutputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
Public Member Functions inherited from BaseWorkload< GatherQueueDescriptor >
 BaseWorkload (const GatherQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual const std::string & GetName () const override
void PostAllocationConfigure () override
const GatherQueueDescriptorGetData () const
arm::pipe::ProfilingGuid GetGuid () const final
virtual bool SupportsTensorHandleReplacement () const override
Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()

Additional Inherited Members

Protected Member Functions inherited from NeonBaseWorkload< GatherQueueDescriptor >
virtual void Reconfigure ()
Protected Attributes inherited from BaseWorkload< GatherQueueDescriptor >
GatherQueueDescriptor m_Data
const arm::pipe::ProfilingGuid m_Guid
const std::string m_Name

Detailed Description

Definition at line 19 of file NeonGatherWorkload.hpp.

Constructor & Destructor Documentation

◆ NeonGatherWorkload()

NeonGatherWorkload ( const GatherQueueDescriptor & descriptor,
const WorkloadInfo & info )

Definition at line 27 of file NeonGatherWorkload.cpp.

29 : NeonBaseWorkload<GatherQueueDescriptor>(descriptor, info)
30{
31 // Report Profiling Details
32 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonGatherWorkload_Construct",
33 descriptor.m_Parameters,
34 info,
35 this->GetGuid());
36
37 m_Data.ValidateInputsOutputs("NeonGatherWorkload", 2, 1);
38
39 arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
40 arm_compute::ITensor& indices = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
41 arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
42
43 int aclAxis = ComputeAclAxis(descriptor.m_Parameters.m_Axis, info.m_InputTensorInfos[0]);
44
45 m_Layer.configure(&input, &indices, &output, aclAxis);
46}
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
int ComputeAclAxis(const int &armnnAxis, const armnn::TensorInfo &tensor)
Function to convert ArmNN axis (left to right) to ACL axis (right to left) ranging from [-rank,...

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, armnn::ComputeAclAxis(), armnn::info, GatherDescriptor::m_Axis, BaseWorkload< GatherQueueDescriptor >::m_Data, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, NeonBaseWorkload< GatherQueueDescriptor >::NeonBaseWorkload(), and armnn::PolymorphicDowncast().

Member Function Documentation

◆ Execute()

void Execute ( ) const
overridevirtual

Implements IWorkload.

Definition at line 48 of file NeonGatherWorkload.cpp.

49{
50 ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID("NeonGatherWorkload_Execute");
51 m_Layer.run();
52}
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.

References ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID.


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