From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1_workload_data_collector.xhtml | 213 +++++++++++++++++++++ 1 file changed, 213 insertions(+) create mode 100644 20.02/classarmnn_1_1_workload_data_collector.xhtml (limited to '20.02/classarmnn_1_1_workload_data_collector.xhtml') diff --git a/20.02/classarmnn_1_1_workload_data_collector.xhtml b/20.02/classarmnn_1_1_workload_data_collector.xhtml new file mode 100644 index 0000000000..dc099d08b6 --- /dev/null +++ b/20.02/classarmnn_1_1_workload_data_collector.xhtml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + +ArmNN: WorkloadDataCollector Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.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