From cb0630959aeae05bc2ae9f6d80cf5f5983a8fb77 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 23 Nov 2022 11:05:29 +0000 Subject: IVGCVSW-7075 Update Doxygen for 22.11 Release Signed-off-by: Nikhil Raj Change-Id: Ib5669e8fd3739d1b10f5dd694d020d51799896dc --- .../classarmnn_1_1_neon_logical_and_workload.xhtml | 255 +++++++++++++++++++++ 1 file changed, 255 insertions(+) create mode 100644 22.11/classarmnn_1_1_neon_logical_and_workload.xhtml (limited to '22.11/classarmnn_1_1_neon_logical_and_workload.xhtml') diff --git a/22.11/classarmnn_1_1_neon_logical_and_workload.xhtml b/22.11/classarmnn_1_1_neon_logical_and_workload.xhtml new file mode 100644 index 0000000000..54492546c9 --- /dev/null +++ b/22.11/classarmnn_1_1_neon_logical_and_workload.xhtml @@ -0,0 +1,255 @@ + + + + + + + + + + + + + +ArmNN: NeonLogicalAndWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonLogicalAndWorkload Class Reference
+
+
+ +

#include <NeonLogicalAndWorkload.hpp>

+
+Inheritance diagram for NeonLogicalAndWorkload:
+
+
+ + +NeonBaseWorkload< LogicalBinaryQueueDescriptor > +BaseWorkload< LogicalBinaryQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 NeonLogicalAndWorkload (const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual void Execute () const override
 
- Public Member Functions inherited from NeonBaseWorkload< LogicalBinaryQueueDescriptor >
 NeonBaseWorkload (const LogicalBinaryQueueDescriptor &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< LogicalBinaryQueueDescriptor >
 BaseWorkload (const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const LogicalBinaryQueueDescriptorGetData () 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< LogicalBinaryQueueDescriptor >
virtual void Reconfigure ()
 
- Protected Attributes inherited from BaseWorkload< LogicalBinaryQueueDescriptor >
LogicalBinaryQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 20 of file NeonLogicalAndWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ NeonLogicalAndWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
NeonLogicalAndWorkload (const LogicalBinaryQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 32 of file NeonLogicalAndWorkload.cpp.

+ +

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, BaseWorkload< LogicalBinaryQueueDescriptor >::m_Data, QueueDescriptor::m_Inputs, QueueDescriptor::m_Outputs, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, and QueueDescriptor::ValidateInputsOutputs().

+
34  : NeonBaseWorkload<LogicalBinaryQueueDescriptor>(descriptor, info)
35 {
36  // Report Profiling Details
37  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonLogicalAndWorkload_Construct",
38  descriptor.m_Parameters,
39  info,
40  this->GetGuid());
41 
42  m_Data.ValidateInputsOutputs("NeonLogicalAndWorkload", 2, 1);
43 
44  arm_compute::ITensor& input0 = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
45  arm_compute::ITensor& input1 = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
46  arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
47 
48  m_LogicalAndLayer.configure(&input0, &input1, &output);
49 }
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+ +
std::vector< ITensorHandle * > m_Outputs
+ +
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:227
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

+ +
+
+ + + + + +
+ + + + + + + +
void Execute () const
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 51 of file NeonLogicalAndWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID, and BaseWorkload< LogicalBinaryQueueDescriptor >::GetGuid().

+
52 {
53  ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonLogicalAndWorkload_Execute", this->GetGuid());
54  m_LogicalAndLayer.run();
55 }
arm::pipe::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:61
+
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID(name, guid)
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1