SST
13.1.0
Structural Simulation Toolkit
|
Public Member Functions | |
StatisticOutputTextBase (Params &outputParameters) | |
Construct a StatOutputTxt. More... | |
Public Member Functions inherited from SST::Statistics::StatisticFieldsOutput | |
void | registerStatistic (StatisticBase *stat) override |
void | output (StatisticBase *statistic, bool endOfSimFlag) override |
void | startOutputGroup (StatisticGroup *group) override |
void | stopOutputGroup () override |
void | startRegisterGroup (StatisticGroup *group) override |
void | stopRegisterGroup () override |
StatisticFieldInfo * | getRegisteredField (fieldHandle_t fieldHandle) |
Return the information on a registered field via the field handle. More... | |
template<typename T > | |
StatisticFieldInfo * | getRegisteredField (const char *statisticName, const char *fieldName) |
Return the information on a registered field via known names. More... | |
FieldInfoArray_t & | getFieldInfoArray () |
Return the array of registered field infos. | |
template<typename T > | |
fieldHandle_t | registerField (const char *fieldName) |
Register a field to be output (templated function) More... | |
const char * | getFieldTypeShortName (fieldType_t type) |
Output field data. More... | |
Public Member Functions inherited from SST::Statistics::StatisticOutput | |
std::string & | getStatisticOutputName () |
Return the Statistic Output name. | |
Params & | getOutputParameters () |
Return the parameters for the StatisticOutput. | |
virtual bool | supportsDynamicRegistration () const |
Protected Member Functions | |
bool | checkOutputParameters () override |
Perform a check of provided parameters. More... | |
void | printUsage () override |
Print out usage for this Statistic Output. | |
void | startOfSimulation () override |
Indicate to Statistic Output that simulation started. More... | |
void | endOfSimulation () override |
Indicate to Statistic Output that simulation ended. More... | |
void | implStartOutputEntries (StatisticBase *statistic) override |
Implementation function for the start of output. More... | |
void | implStopOutputEntries () override |
Implementation function for the end of output. More... | |
void | outputField (fieldHandle_t fieldHandle, int32_t data) override |
Implementation functions for output. More... | |
void | outputField (fieldHandle_t fieldHandle, uint32_t data) override |
void | outputField (fieldHandle_t fieldHandle, int64_t data) override |
void | outputField (fieldHandle_t fieldHandle, uint64_t data) override |
void | outputField (fieldHandle_t fieldHandle, float data) override |
void | outputField (fieldHandle_t fieldHandle, double data) override |
Protected Member Functions inherited from SST::Statistics::StatisticFieldsOutput | |
StatisticFieldsOutput (Params &outputParameters) | |
Construct a base StatisticOutput. More... | |
virtual void | startRegisterFields (StatisticBase *statistic) |
These can be overriden, if necessary, but must be callable by the derived class. | |
virtual void | stopRegisterFields () |
virtual void | startOutputEntries (StatisticBase *statistic) |
virtual void | stopOutputEntries () |
Protected Member Functions inherited from SST::Statistics::StatisticOutput | |
StatisticOutput (Params &outputParameters) | |
Construct a base StatisticOutput. More... | |
void | setStatisticOutputName (const std::string &name) |
void | lock () |
void | unlock () |
Protected Attributes | |
bool | m_outputTopHeader |
bool | m_outputInlineHeader |
bool | m_outputSimTime |
bool | m_outputRank |
bool | m_useCompression |
Additional Inherited Members | |
Public Types inherited from SST::Statistics::StatisticOutput | |
using | fieldType_t = StatisticFieldInfo::fieldType_t |
using | fieldHandle_t = StatisticFieldInfo::fieldHandle_t |
using | FieldInfoArray_t = std::vector< StatisticFieldInfo * > |
using | FieldNameMap_t = std::unordered_map< std::string, fieldHandle_t > |
Static Public Member Functions inherited from SST::Statistics::StatisticOutput | |
static const std::vector< SST::ElementInfoParam > & | ELI_getParams () |
SST::Statistics::StatisticOutputTextBase::StatisticOutputTextBase | ( | Params & | outputParameters | ) |
|
overrideprotectedvirtual |
Perform a check of provided parameters.
Implements SST::Statistics::StatisticOutput.
References SST::Params::find(), and SST::Statistics::StatisticOutput::getOutputParameters().
|
overrideprotectedvirtual |
Indicate to Statistic Output that simulation ended.
Statistic output may perform any shutdown code here as necessary.
Implements SST::Statistics::StatisticOutput.
|
overrideprotectedvirtual |
Implementation function for the start of output.
This will be called by the Statistic Processing Engine to indicate that a Statistic is about to send data to the Statistic Output for processing.
statistic | - Pointer to the statistic object than the output can retrieve data from. |
Implements SST::Statistics::StatisticFieldsOutput.
References SST::Statistics::StatisticBase::getFullStatName(), SST::Simulation_impl::getSimulation(), and SST::Statistics::StatisticBase::getStatTypeName().
|
overrideprotectedvirtual |
Implementation function for the end of output.
This will be called by the Statistic Processing Engine to indicate that a Statistic is finished sending data to the Statistic Output for processing. The Statistic Output can perform any output related functions here.
Implements SST::Statistics::StatisticFieldsOutput.
|
overrideprotectedvirtual |
Implementation functions for output.
These will be called by the statistic to provide Statistic defined data to be output.
fieldHandle | - The handle to the registered statistic field. |
data | - The data related to the registered field to be output. |
Reimplemented from SST::Statistics::StatisticFieldsOutput.
References SST::Statistics::StatisticFieldInfo::getFieldName(), SST::Statistics::StatisticFieldInfo::getFieldType(), SST::Statistics::StatisticFieldsOutput::getFieldTypeShortName(), and SST::Statistics::StatisticFieldsOutput::getRegisteredField().
|
overrideprotectedvirtual |
Indicate to Statistic Output that simulation started.
Statistic output may perform any startup code here as necessary.
Implements SST::Statistics::StatisticOutput.
References SST::Statistics::StatisticFieldsOutput::getFieldInfoArray(), SST::Statistics::StatisticFieldInfo::getFieldName(), SST::Simulation_impl::getRank(), SST::Simulation_impl::getSimulation(), and SST::Statistics::StatisticFieldInfo::getStatName().