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

#include <NeonLogicalNotWorkload.hpp>

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

Public Member Functions

 NeonLogicalNotWorkload (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 18 of file NeonLogicalNotWorkload.hpp.

Constructor & Destructor Documentation

◆ NeonLogicalNotWorkload()

Definition at line 30 of file NeonLogicalNotWorkload.cpp.

32 : NeonBaseWorkload<ElementwiseUnaryQueueDescriptor>(descriptor, info)
33{
34 // Report Profiling Details
35 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonLogicalNotWorkload_Construct",
36 descriptor.m_Parameters,
37 info,
38 this->GetGuid());
39
40 m_Data.ValidateInputsOutputs("NeonLogicalNotWorkload", 1, 1);
41
42 arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
43 arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
44
45 m_LogicalNotLayer.configure(&input, &output);
46}
#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 48 of file NeonLogicalNotWorkload.cpp.

49{
50 ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID("NeonLogicalNotWorkload_Execute");
51 m_LogicalNotLayer.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: