ArmNN
 21.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 230 of file CounterDirectory.hpp.

Member Function Documentation

◆ print()

void print ( ) const
inline

Definition at line 236 of file CounterDirectory.hpp.

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

237  {
239  std::for_each(m_DeviceRecords.begin(), m_DeviceRecords.end(),
240  std::mem_fun_ref(&DeviceRecord::printContents));
241 
243  std::for_each(m_CounterSets.begin(), m_CounterSets.end(),
244  std::mem_fun_ref(&CounterSetRecord::printContents));
245 
246  std::for_each(m_Categories.begin(), m_Categories.end(),
247  std::mem_fun_ref(&CategoryRecord::print));
248  std::cout << "\n";
249  }
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 232 of file CounterDirectory.hpp.

◆ m_CounterSets

std::vector<CounterSetRecord> m_CounterSets

Definition at line 233 of file CounterDirectory.hpp.

◆ m_DeviceRecords

std::vector<DeviceRecord> m_DeviceRecords

Definition at line 234 of file CounterDirectory.hpp.


The documentation for this struct was generated from the following file: