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

#include <ClGatherWorkload.hpp>

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

Public Member Functions

 ClGatherWorkload (const GatherQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
void Execute () const override
Public Member Functions inherited from ClBaseWorkload< GatherQueueDescriptor >
 ClBaseWorkload (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 ClBaseWorkload< 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 ClGatherWorkload.hpp.

Constructor & Destructor Documentation

◆ ClGatherWorkload()

ClGatherWorkload ( const GatherQueueDescriptor & descriptor,
const WorkloadInfo & info,
const arm_compute::CLCompileContext & clCompileContext )

Definition at line 29 of file ClGatherWorkload.cpp.

32 : ClBaseWorkload<GatherQueueDescriptor>(descriptor, info)
33{
34 // Report Profiling Details
35 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClGatherWorkload_Construct",
36 descriptor.m_Parameters,
37 info,
38 this->GetGuid());
39
40 m_Data.ValidateInputsOutputs("ClGatherWorkload", 2, 1);
41
42 arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
43 arm_compute::ICLTensor& indices = static_cast<IClTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
44 arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
45
46 int aclAxis = ComputeAclAxis(descriptor.m_Parameters.m_Axis, info.m_InputTensorInfos[0]);
47
48 {
49 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClGatherWorkload_configure");
50 m_Layer.configure(clCompileContext, &input, &indices, &output, aclAxis);
51 }
52};
#define ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
#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_SCOPED_PROFILING_EVENT_CL_NAME_GUID, ClBaseWorkload< GatherQueueDescriptor >::ClBaseWorkload(), armnn::ComputeAclAxis(), armnn::info, GatherDescriptor::m_Axis, BaseWorkload< GatherQueueDescriptor >::m_Data, and QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters.

Member Function Documentation

◆ Execute()

void Execute ( ) const
overridevirtual

Implements IWorkload.

Definition at line 54 of file ClGatherWorkload.cpp.

55{
56 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClGatherWorkload_Execute");
57 RunClFunction(m_Layer, CHECK_LOCATION());
58}
#define CHECK_LOCATION()
void RunClFunction(arm_compute::IFunction &function, const CheckLocation &location)

References ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID, CHECK_LOCATION, and armnn::RunClFunction().


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