From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/classarmnn_1_1_workload_data_collector.xhtml | 213 +++++++++++++++++++++ 1 file changed, 213 insertions(+) create mode 100644 21.02/classarmnn_1_1_workload_data_collector.xhtml (limited to '21.02/classarmnn_1_1_workload_data_collector.xhtml') diff --git a/21.02/classarmnn_1_1_workload_data_collector.xhtml b/21.02/classarmnn_1_1_workload_data_collector.xhtml new file mode 100644 index 0000000000..00806283c2 --- /dev/null +++ b/21.02/classarmnn_1_1_workload_data_collector.xhtml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + +ArmNN: WorkloadDataCollector Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
WorkloadDataCollector Class Reference
+
+
+ +

#include <WorkloadDataCollector.hpp>

+ + + + + + +

+Public Member Functions

 WorkloadDataCollector (std::vector< ITensorHandle *> &handles, std::vector< TensorInfo > &infos)
 
void Push (ITensorHandle *handle, const TensorInfo &info)
 
+

Detailed Description

+
+

Definition at line 15 of file WorkloadDataCollector.hpp.

+

Constructor & Destructor Documentation

+ +

◆ WorkloadDataCollector()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
WorkloadDataCollector (std::vector< ITensorHandle *> & handles,
std::vector< TensorInfo > & infos 
)
+
+inline
+
+ +

Definition at line 18 of file WorkloadDataCollector.hpp.

+
19  : m_Handles(handles)
20  , m_Infos(infos)
21  {
22  }
+
+
+

Member Function Documentation

+ +

◆ Push()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void Push (ITensorHandlehandle,
const TensorInfoinfo 
)
+
+inline
+
+ +

Definition at line 24 of file WorkloadDataCollector.hpp.

+ +

Referenced by OutputHandler::CollectWorkloadOutputs(), and Layer::Layer().

+
25  {
26  m_Handles.push_back(handle);
27  m_Infos.push_back(info);
28  }
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1