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

#include <ClLogSoftmaxWorkload.hpp>

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

Public Member Functions

 ClLogSoftmaxWorkload (const LogSoftmaxQueueDescriptor &descriptor, const WorkloadInfo &info, std::shared_ptr< arm_compute::MemoryManagerOnDemand > &memoryManager, const arm_compute::CLCompileContext &clCompileContext)
void Execute () const override
Public Member Functions inherited from ClBaseWorkload< LogSoftmaxQueueDescriptor >
 ClBaseWorkload (const LogSoftmaxQueueDescriptor &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< LogSoftmaxQueueDescriptor >
 BaseWorkload (const LogSoftmaxQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual const std::string & GetName () const override
void PostAllocationConfigure () override
const LogSoftmaxQueueDescriptorGetData () 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< LogSoftmaxQueueDescriptor >
virtual void Reconfigure ()
Protected Attributes inherited from BaseWorkload< LogSoftmaxQueueDescriptor >
LogSoftmaxQueueDescriptor m_Data
const arm::pipe::ProfilingGuid m_Guid
const std::string m_Name

Detailed Description

Definition at line 24 of file ClLogSoftmaxWorkload.hpp.

Constructor & Destructor Documentation

◆ ClLogSoftmaxWorkload()

ClLogSoftmaxWorkload ( const LogSoftmaxQueueDescriptor & descriptor,
const WorkloadInfo & info,
std::shared_ptr< arm_compute::MemoryManagerOnDemand > & memoryManager,
const arm_compute::CLCompileContext & clCompileContext )

Definition at line 28 of file ClLogSoftmaxWorkload.cpp.

32 : ClBaseWorkload<LogSoftmaxQueueDescriptor>(descriptor, info)
33 , m_LogSoftmaxLayer(memoryManager)
34{
35 // Report Profiling Details
36 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClLogSoftmaxWorkload_Construct",
37 descriptor.m_Parameters,
38 info,
39 this->GetGuid());
40
41 m_Data.ValidateInputsOutputs("ClLogSoftmaxWorkload", 1, 1);
42
43 arm_compute::ICLTensor& input = static_cast<ClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
44 arm_compute::ICLTensor& output = static_cast<ClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
45
46 int aclAxis = ComputeAclAxis(m_Data.m_Parameters.m_Axis, info.m_InputTensorInfos[0]);
47
48 {
49 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClLogSoftmaxWorkload_configure");
50 m_LogSoftmaxLayer.configure(clCompileContext, &input, &output, m_Data.m_Parameters.m_Beta, 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< LogSoftmaxQueueDescriptor >::ClBaseWorkload(), armnn::ComputeAclAxis(), armnn::info, BaseWorkload< LogSoftmaxQueueDescriptor >::m_Data, and QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters.

Member Function Documentation

◆ Execute()

void Execute ( ) const
overridevirtual

Implements IWorkload.

Definition at line 54 of file ClLogSoftmaxWorkload.cpp.

55{
56 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClLogSoftmaxWorkload_Execute");
57 RunClFunction(m_LogSoftmaxLayer, 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: