https://mooseframework.inl.gov
Namespaces | Functions
PerfGraphRegistry.C File Reference

Go to the source code of this file.

Namespaces

 moose
 
 moose::internal
 

Functions

PerfGraphRegistry & moose::internal::getPerfGraphRegistry ()
 Get the global PerfGraphRegistry singleton. More...
 
void dataStore (std::ostream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)
 
void dataLoad (std::istream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)
 

Function Documentation

◆ dataLoad()

void dataLoad ( std::istream &  stream,
moose::internal::PerfGraphSectionInfo info,
void context 
)

Definition at line 79 of file PerfGraphRegistry.C.

80 {
81  dataLoad(stream, info._id, context);
82  dataLoad(stream, info._name, context);
83  dataLoad(stream, info._level, context);
84  dataLoad(stream, info._live_message, context);
85  dataLoad(stream, info._print_dots, context);
86 }
MPI_Info info
void dataLoad(std::istream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)

◆ dataStore()

void dataStore ( std::ostream &  stream,
moose::internal::PerfGraphSectionInfo info,
void context 
)

Definition at line 69 of file PerfGraphRegistry.C.

70 {
71  dataStore(stream, info._id, context);
72  dataStore(stream, info._name, context);
73  dataStore(stream, info._level, context);
74  dataStore(stream, info._live_message, context);
75  dataStore(stream, info._print_dots, context);
76 }
MPI_Info info
void dataStore(std::ostream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)