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

#include <NeonExpWorkload.hpp>

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

Public Member Functions

 NeonExpWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual void Execute () const override
Public Member Functions inherited from NeonBaseWorkload< ElementwiseUnaryQueueDescriptor >
 NeonBaseWorkload (const ElementwiseUnaryQueueDescriptor &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< ElementwiseUnaryQueueDescriptor >
 BaseWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual const std::string & GetName () const override
void PostAllocationConfigure () override
const ElementwiseUnaryQueueDescriptorGetData () 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< ElementwiseUnaryQueueDescriptor >
virtual void Reconfigure ()
Protected Attributes inherited from BaseWorkload< ElementwiseUnaryQueueDescriptor >
ElementwiseUnaryQueueDescriptor m_Data
const arm::pipe::ProfilingGuid m_Guid
const std::string m_Name

Detailed Description

Definition at line 17 of file NeonExpWorkload.hpp.

Constructor & Destructor Documentation

◆ NeonExpWorkload()

NeonExpWorkload ( const ElementwiseUnaryQueueDescriptor & descriptor,
const WorkloadInfo & info )

Definition at line 25 of file NeonExpWorkload.cpp.

26 : NeonBaseWorkload<ElementwiseUnaryQueueDescriptor>(descriptor, info)
27{
28 // Report Profiling Details
29 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonExpWorkload_Construct",
30 descriptor.m_Parameters,
31 info,
32 this->GetGuid());
33
34 m_Data.ValidateInputsOutputs("NeonExpWorkload", 1, 1);
35
36 arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
37 arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
38
39 m_ExpLayer.configure(&input, &output);
40}
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, armnn::info, BaseWorkload< ElementwiseUnaryQueueDescriptor >::m_Data, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, NeonBaseWorkload< ElementwiseUnaryQueueDescriptor >::NeonBaseWorkload(), and armnn::PolymorphicDowncast().

Member Function Documentation

◆ Execute()

void Execute ( ) const
overridevirtual

Implements IWorkload.

Definition at line 42 of file NeonExpWorkload.cpp.

43{
44 ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID("NeonExpWorkload_Execute");
45 m_ExpLayer.run();
46}
#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: