From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/classarmnn_1_1_cl_logical_or_workload.xhtml | 246 ++++++++++++++++++++++ 1 file changed, 246 insertions(+) create mode 100644 21.08/classarmnn_1_1_cl_logical_or_workload.xhtml (limited to '21.08/classarmnn_1_1_cl_logical_or_workload.xhtml') diff --git a/21.08/classarmnn_1_1_cl_logical_or_workload.xhtml b/21.08/classarmnn_1_1_cl_logical_or_workload.xhtml new file mode 100644 index 0000000000..7652882a45 --- /dev/null +++ b/21.08/classarmnn_1_1_cl_logical_or_workload.xhtml @@ -0,0 +1,246 @@ + + + + + + + + + + + + + +ArmNN: ClLogicalOrWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ClLogicalOrWorkload Class Reference
+
+
+ +

#include <ClLogicalOrWorkload.hpp>

+
+Inheritance diagram for ClLogicalOrWorkload:
+
+
+ + +BaseWorkload< LogicalBinaryQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 ClLogicalOrWorkload (const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
 
virtual void Execute () const override
 
- Public Member Functions inherited from BaseWorkload< LogicalBinaryQueueDescriptor >
 BaseWorkload (const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
void PostAllocationConfigure () override
 
const LogicalBinaryQueueDescriptorGetData () const
 
profiling::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< LogicalBinaryQueueDescriptor >
LogicalBinaryQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 20 of file ClLogicalOrWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ClLogicalOrWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
ClLogicalOrWorkload (const LogicalBinaryQueueDescriptordescriptor,
const WorkloadInfoinfo,
const arm_compute::CLCompileContext & clCompileContext 
)
+
+ +

Definition at line 34 of file ClLogicalOrWorkload.cpp.

+ +

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

+
37  : BaseWorkload<LogicalBinaryQueueDescriptor>(descriptor, info)
38 {
39  // Report Profiling Details
40  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClLogicalOrWorkload_Construct",
41  descriptor.m_Parameters,
42  info,
43  this->GetGuid());
44 
45  m_Data.ValidateInputsOutputs("ClLogicalOrWorkload", 2, 1);
46 
47  arm_compute::ICLTensor& input0 = PolymorphicDowncast<ClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
48  arm_compute::ICLTensor& input1 = PolymorphicDowncast<ClTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
49  arm_compute::ICLTensor& output = PolymorphicDowncast<ClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
50 
51  m_LogicalOrLayer.configure(clCompileContext, &input0, &input1, &output);
52 }
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:226
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 54 of file ClLogicalOrWorkload.cpp.

+ +

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

+
55 {
56  ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClLogicalOrWorkload_Execute", this->GetGuid());
57  m_LogicalOrLayer.run();
58 }
#define ARMNN_SCOPED_PROFILING_EVENT_CL_GUID(name, guid)
+
profiling::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:55
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1