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: