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 --- ...armnn_1_1gatordmock_1_1_counter_directory.xhtml | 227 +++++++++++++++++++++ 1 file changed, 227 insertions(+) create mode 100644 20.02/structarmnn_1_1gatordmock_1_1_counter_directory.xhtml (limited to '20.02/structarmnn_1_1gatordmock_1_1_counter_directory.xhtml') diff --git a/20.02/structarmnn_1_1gatordmock_1_1_counter_directory.xhtml b/20.02/structarmnn_1_1gatordmock_1_1_counter_directory.xhtml new file mode 100644 index 0000000000..f7ccf2f546 --- /dev/null +++ b/20.02/structarmnn_1_1gatordmock_1_1_counter_directory.xhtml @@ -0,0 +1,227 @@ + + + + + + + + + + + + + +ArmNN: CounterDirectory Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
CounterDirectory Struct Reference
+
+
+ +

#include <CounterDirectory.hpp>

+ + + + +

+Public Member Functions

void print () const
 
+ + + + + + + +

+Public Attributes

std::vector< CategoryRecordm_Categories
 
std::vector< CounterSetRecordm_CounterSets
 
std::vector< DeviceRecordm_DeviceRecords
 
+

Detailed Description

+
+

Definition at line 229 of file CounterDirectory.hpp.

+

Member Function Documentation

+ +

◆ print()

+ +
+
+ + + + + +
+ + + + + + + +
void print () const
+
+inline
+
+ +

Definition at line 235 of file CounterDirectory.hpp.

+ +

References CategoryRecord::print(), CounterSetRecord::printContents(), DeviceRecord::printContents(), CounterSetRecord::printHeader(), and DeviceRecord::printHeader().

+
236  {
238  std::for_each(m_DeviceRecords.begin(), m_DeviceRecords.end(),
239  std::mem_fun_ref(&DeviceRecord::printContents));
240 
242  std::for_each(m_CounterSets.begin(), m_CounterSets.end(),
243  std::mem_fun_ref(&CounterSetRecord::printContents));
244 
245  std::for_each(m_Categories.begin(), m_Categories.end(),
246  std::mem_fun_ref(&CategoryRecord::print));
247  std::cout << "\n";
248  }
+ +
std::vector< CounterSetRecord > m_CounterSets
+ + + +
std::vector< CategoryRecord > m_Categories
+
std::vector< DeviceRecord > m_DeviceRecords
+
+
+
+

Member Data Documentation

+ +

◆ m_Categories

+ +
+
+ + + + +
std::vector<CategoryRecord> m_Categories
+
+ +

Definition at line 231 of file CounterDirectory.hpp.

+ +
+
+ +

◆ m_CounterSets

+ +
+
+ + + + +
std::vector<CounterSetRecord> m_CounterSets
+
+ +

Definition at line 232 of file CounterDirectory.hpp.

+ +
+
+ +

◆ m_DeviceRecords

+ +
+
+ + + + +
std::vector<DeviceRecord> m_DeviceRecords
+
+ +

Definition at line 233 of file CounterDirectory.hpp.

+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1