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 --- ...rmnn_1_1gatordmock_1_1_counter_set_record.xhtml | 263 +++++++++++++++++++++ 1 file changed, 263 insertions(+) create mode 100644 21.02/structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml (limited to '21.02/structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml') diff --git a/21.02/structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml b/21.02/structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml new file mode 100644 index 0000000000..e385ef76df --- /dev/null +++ b/21.02/structarmnn_1_1gatordmock_1_1_counter_set_record.xhtml @@ -0,0 +1,263 @@ + + + + + + + + + + + + + +ArmNN: CounterSetRecord Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ + +
+ +

#include <CounterDirectory.hpp>

+ + + + +

+Public Member Functions

void printContents () const
 
+ + + +

+Static Public Member Functions

static void printHeader ()
 
+ + + + + + + +

+Public Attributes

uint16_t m_CounterSetUid
 
uint16_t m_CounterSetCount
 
std::string m_CounterSetName
 
+

Detailed Description

+
+

Definition at line 148 of file CounterDirectory.hpp.

+

Member Function Documentation

+ +

◆ printContents()

+ +
+
+ + + + + +
+ + + + + + + +
void printContents () const
+
+inline
+
+ +

Definition at line 173 of file CounterDirectory.hpp.

+ +

References armnn::profiling::CentreAlignFormatting().

+ +

Referenced by CounterDirectory::print().

+
174  {
175  std::string body;
176 
178  body.append(" | ");
179  body.append(gatordmock::CentreAlignFormatting(std::to_string(m_CounterSetUid), 13));
180  body.append(" | ");
181  body.append(gatordmock::CentreAlignFormatting(std::to_string(m_CounterSetCount), 10));
182  body.append("\n");
183 
184  std::cout << std::string(body.size(), '-') << "\n";
185 
186  std::cout<< body;
187  }
+ + +
std::string CentreAlignFormatting(const std::string &stringToPass, const int spacingWidth)
+
+
+
+ +

◆ printHeader()

+ +
+
+ + + + + +
+ + + + + + + +
static void printHeader ()
+
+inlinestatic
+
+ +

Definition at line 154 of file CounterDirectory.hpp.

+ +

References armnn::profiling::CentreAlignFormatting().

+ +

Referenced by CounterDirectory::print().

+
155  {
156  std::string header;
157 
158  header.append(gatordmock::CentreAlignFormatting("Counter set name", 20));
159  header.append(" | ");
160  header.append(gatordmock::CentreAlignFormatting("UID",13));
161  header.append(" | ");
162  header.append(gatordmock::CentreAlignFormatting("Count",10));
163  header.append("\n");
164 
165  std::cout << "\n" << "\n";
166  std::cout << gatordmock::CentreAlignFormatting("COUNTER SETS", static_cast<int>(header.size()));
167  std::cout << "\n";
168  std::cout << std::string(header.size(), '=') << "\n";
169 
170  std::cout<< header;
171  }
std::string CentreAlignFormatting(const std::string &stringToPass, const int spacingWidth)
+
+
+
+

Member Data Documentation

+ +

◆ m_CounterSetCount

+ +
+
+ + + + +
uint16_t m_CounterSetCount
+
+ +

Definition at line 151 of file CounterDirectory.hpp.

+ +
+
+ +

◆ m_CounterSetName

+ +
+
+ + + + +
std::string m_CounterSetName
+
+ +

Definition at line 152 of file CounterDirectory.hpp.

+ +
+
+ +

◆ m_CounterSetUid

+ +
+
+ + + + +
uint16_t m_CounterSetUid
+
+ +

Definition at line 150 of file CounterDirectory.hpp.

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