https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Namespaces | Functions
PerfGraphRegistry.C File Reference

Go to the source code of this file.

Namespaces

namespace  moose
 
namespace  moose::internal
 

Functions

PerfGraphRegistrymoose::internal::getPerfGraphRegistry ()
 Get the global PerfGraphRegistry singleton.
 
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}
void dataLoad(std::istream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)
MPI_Info info

Referenced by dataLoad().

◆ 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}
void dataStore(std::ostream &stream, moose::internal::PerfGraphSectionInfo &info, void *context)

Referenced by dataStore().