From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- .../classarmnn_1_1_first_input_typed_workload.html | 196 +++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 Documentation/classarmnn_1_1_first_input_typed_workload.html (limited to 'Documentation/classarmnn_1_1_first_input_typed_workload.html') diff --git a/Documentation/classarmnn_1_1_first_input_typed_workload.html b/Documentation/classarmnn_1_1_first_input_typed_workload.html new file mode 100644 index 0000000000..25c67ea17f --- /dev/null +++ b/Documentation/classarmnn_1_1_first_input_typed_workload.html @@ -0,0 +1,196 @@ + + + + + + + +ArmNN: FirstInputTypedWorkload< QueueDescriptor, DataType > Class Template Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
FirstInputTypedWorkload< QueueDescriptor, DataType > Class Template Reference
+
+
+ +

#include <Workload.hpp>

+
+Inheritance diagram for FirstInputTypedWorkload< QueueDescriptor, DataType >:
+
+
+ + +BaseWorkload< QueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 FirstInputTypedWorkload (const QueueDescriptor &descriptor, const WorkloadInfo &info)
 
- Public Member Functions inherited from BaseWorkload< QueueDescriptor >
 BaseWorkload (const QueueDescriptor &descriptor, const WorkloadInfo &info)
 
void PostAllocationConfigure () override
 
const QueueDescriptorGetData () const
 
profiling::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void Execute () const =0
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + + + + +

+Additional Inherited Members

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

Detailed Description

+

template<typename QueueDescriptor, armnn::DataType DataType>
+class armnn::FirstInputTypedWorkload< QueueDescriptor, DataType >

+ + +

Definition at line 130 of file Workload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ FirstInputTypedWorkload()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FirstInputTypedWorkload (const QueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+inline
+
+ +

Definition at line 134 of file Workload.hpp.

+ +

References armnn::Float16, WorkloadInfo::m_InputTensorInfos, and WorkloadInfo::m_OutputTensorInfos.

+
135  : BaseWorkload<QueueDescriptor>(descriptor, info)
136  {
137  if (!info.m_InputTensorInfos.empty())
138  {
139  BOOST_ASSERT_MSG(info.m_InputTensorInfos.front().GetDataType() == DataType,
140  "Trying to create workload with incorrect type");
141  }
142 
143  BOOST_ASSERT_MSG(std::all_of(info.m_OutputTensorInfos.begin(),
144  info.m_OutputTensorInfos.end(),
145  [&](auto it){
146  return it.GetDataType() == DataType;
147  }),
148  "Trying to create workload with incorrect type");
149  }
+
DataType
Definition: Types.hpp:32
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1