|
SST
15.1.0
StructuralSimulationToolkit
|
Main component object for the simulation. More...
#include <baseComponent.h>
Public Member Functions | |
| BaseComponent (ComponentId_t id) | |
| BaseComponent (const BaseComponent &)=delete | |
| BaseComponent & | operator= (const BaseComponent &)=delete |
| const std::string & | getType () const |
| ComponentId_t | getId () const |
| Returns unique component ID. | |
| uint8_t | getStatisticLoadLevel () const |
| Returns Component Statistic load level. | |
| virtual void | emergencyShutdown () |
| Called when SIGINT or SIGTERM has been seen. More... | |
| const std::string & | getName () const |
| Returns Component/SubComponent Name. | |
| const std::string & | getParentComponentName () const |
| Returns the name of the parent Component, or, if called on a Component, the name of that Component. More... | |
| virtual void | init (unsigned int UNUSED(phase)) |
| Used during the init phase. More... | |
| virtual void | complete (unsigned int UNUSED(phase)) |
| Used during the complete phase after the end of simulation. More... | |
| virtual void | setup () |
| Called after all components have been constructed and initialization has completed, but before simulation time has begun. More... | |
| virtual void | finish () |
| Called after complete phase, but before objects are destroyed. More... | |
| virtual bool | Status () |
| Currently unused function. | |
| virtual void | printStatus (Output &UNUSED(out)) |
| Called by the Simulation to request that the component print it's current status. More... | |
| UnitAlgebra | getCoreTimeBase () const |
| Get the core timebase. | |
| SimTime_t | getCurrentSimCycle () const |
| Return the current simulation time as a cycle count. | |
| int | getCurrentPriority () const |
| Return the current priority. | |
| UnitAlgebra | getElapsedSimTime () const |
| Return the elapsed simulation time as a time. | |
| SimTime_t | getEndSimCycle () const |
| Return the end simulation time as a cycle count. | |
| UnitAlgebra | getEndSimTime () const |
| Return the end simulation time as a time. | |
| RankInfo | getRank () const |
| Get this instance's parallel rank. | |
| RankInfo | getNumRanks () const |
| Get the number of parallel ranks in the simulation. | |
| Output & | getSimulationOutput () const |
| Return the base simulation Output class instance. | |
| SimTime_t | getCurrentSimTime (TimeConverter *tc) const |
| Return the simulated time since the simulation began in units specified by the parameter. More... | |
| SimTime_t | getCurrentSimTime (TimeConverter tc) const |
| SimTime_t | getCurrentSimTime () const |
| Return the simulated time since the simulation began in the default timebase. | |
| SimTime_t | getCurrentSimTime (const std::string &base) const |
| Return the simulated time since the simulation began in timebase specified. More... | |
| SimTime_t | getCurrentSimTimeNano () const |
| Utility function to return the time since the simulation began in nanoseconds. | |
| SimTime_t | getCurrentSimTimeMicro () const |
| Utility function to return the time since the simulation began in microseconds. | |
| SimTime_t | getCurrentSimTimeMilli () const |
| Utility function to return the time since the simulation began in milliseconds. | |
| double | getRunPhaseElapsedRealTime () const |
| Get the amount of real-time spent executing the run phase of the simulation. More... | |
| double | getInitPhaseElapsedRealTime () const |
| Get the amount of real-time spent executing the init phase of the simulation. More... | |
| double | getCompletePhaseElapsedRealTime () const |
| Get the amount of real-time spent executing the complete phase of the simulation. More... | |
| void | addWatchPoint (WatchPoint *pt) |
| Add a watch point to all handlers in the Component Tree. | |
| void | removeWatchPoint (WatchPoint *pt) |
| Remove a watch point from all handlers in the Component Tree. | |
| SubComponentSlotInfo * | getSubComponentSlotInfo (const std::string &name, bool fatalOnEmptyIndex=false) |
| const std::vector< double > & | getCoordinates () const |
| Retrieve the X,Y,Z coordinates of this component. | |
Public Member Functions inherited from SST::Core::Serialization::serializable_base | |
| virtual const char * | cls_name () const =0 |
| virtual void | serialize_order (serializer &ser)=0 |
| virtual uint32_t | cls_id () const =0 |
| virtual std::string | serialization_name () const =0 |
Protected Types | |
| using | StatCreateFunction = std::function< Statistics::StatisticBase *(BaseComponent *, Statistics::StatisticProcessingEngine *, const std::string &, const std::string &, Params &)> |
Protected Types inherited from SST::Core::Serialization::serializable_base | |
| enum | cxn_flag_t { ConstructorFlag } |
Protected Member Functions | |
| bool | isSimulationRunModeInit () const |
| Check to see if the run mode was set to INIT. More... | |
| bool | isSimulationRunModeRun () const |
| Check to see if the run mode was set to RUN. More... | |
| bool | isSimulationRunModeBoth () const |
| Check to see if the run mode was set to BOTH. More... | |
| std::string & | getOutputDirectory () const |
| Returns the output directory of the simulation. More... | |
| void | requireLibrary (const std::string &name) |
| Signifies that a library is required for this simulation. More... | |
| bool | isPortConnected (const std::string &name) const |
| Determine if a port name is connected to any links. | |
| Link * | configureLink (const std::string &name, TimeConverter *time_base, Event::HandlerBase *handler=nullptr) |
| Configure a Link. More... | |
| Link * | configureLink (const std::string &name, TimeConverter time_base, Event::HandlerBase *handler=nullptr) |
| Link * | configureLink (const std::string &name, const std::string &time_base, Event::HandlerBase *handler=nullptr) |
| Configure a Link. More... | |
| Link * | configureLink (const std::string &name, const UnitAlgebra &time_base, Event::HandlerBase *handler=nullptr) |
| Configure a Link. More... | |
| Link * | configureLink (const std::string &name, Event::HandlerBase *handler=nullptr) |
| Configure a Link. More... | |
| Link * | configureSelfLink (const std::string &name, TimeConverter *time_base, Event::HandlerBase *handler=nullptr) |
| Configure a SelfLink (Loopback link) More... | |
| Link * | configureSelfLink (const std::string &name, TimeConverter time_base, Event::HandlerBase *handler=nullptr) |
| Link * | configureSelfLink (const std::string &name, const std::string &time_base, Event::HandlerBase *handler=nullptr) |
| Configure a SelfLink (Loopback link) More... | |
| Link * | configureSelfLink (const std::string &name, const UnitAlgebra &time_base, Event::HandlerBase *handler=nullptr) |
| Configure a SelfLink (Loopback link) More... | |
| Link * | configureSelfLink (const std::string &name, Event::HandlerBase *handler=nullptr) |
| Configure a SelfLink (Loopback link) More... | |
| TimeConverter * | registerClock (const std::string &freq, Clock::HandlerBase *handler, bool regAll=true) |
| Registers a clock for this component. More... | |
| TimeConverter * | registerClock (const UnitAlgebra &freq, Clock::HandlerBase *handler, bool regAll=true) |
| Registers a clock for this component. More... | |
| TimeConverter * | registerClock (TimeConverter *tc, Clock::HandlerBase *handler, bool regAll=true) |
| Registers a clock for this component. More... | |
| TimeConverter * | registerClock (TimeConverter tc, Clock::HandlerBase *handler, bool regAll=true) |
| void | unregisterClock (TimeConverter *tc, Clock::HandlerBase *handler) |
| Removes a clock handler from the component. | |
| void | unregisterClock (TimeConverter tc, Clock::HandlerBase *handler) |
| Cycle_t | reregisterClock (TimeConverter *freq, Clock::HandlerBase *handler) |
| Reactivates an existing Clock and Handler. More... | |
| Cycle_t | reregisterClock (TimeConverter freq, Clock::HandlerBase *handler) |
| Cycle_t | getNextClockCycle (TimeConverter *freq) |
| Returns the next Cycle that the TimeConverter would fire If called prior to the simulation run loop, next Cycle is 0. More... | |
| Cycle_t | getNextClockCycle (TimeConverter freq) |
| TimeConverter * | registerTimeBase (const std::string &base, bool regAll=true) |
| Registers a default time base for the component and optionally sets the the component's links to that timebase. More... | |
| TimeConverter * | getTimeConverter (const std::string &base) const |
| TimeConverter * | getTimeConverter (const UnitAlgebra &base) const |
| bool | isStatisticShared (const std::string &stat_name, bool include_me=false) |
| void | initiateInteractive (const std::string &msg) |
| template<typename T > | |
| Statistics::Statistic< T > * | registerStatistic (SST::Params ¶ms, const std::string &stat_name, const std::string &stat_sub_id="") |
| Registers a statistic. More... | |
| template<typename T > | |
| Statistics::Statistic< T > * | registerStatistic (const std::string &stat_name, const std::string &stat_sub_id="") |
| template<typename... Args> | |
| Statistics::Statistic< std::tuple< Args... > > * | registerMultiStatistic (const std::string &stat_name, const std::string &stat_sub_id="") |
| template<typename... Args> | |
| Statistics::Statistic< std::tuple< Args... > > * | registerMultiStatistic (SST::Params ¶ms, const std::string &stat_name, const std::string &stat_sub_id="") |
| template<typename T > | |
| Statistics::Statistic< T > * | registerStatistic (const char *stat_name, const char *stat_sub_id="") |
| void | performStatisticOutput (Statistics::StatisticBase *stat) |
| Called by the Components and Subcomponent to perform a statistic Output. More... | |
| void | performGlobalStatisticOutput () |
| Performs a global statistic Output. More... | |
| template<typename T > | |
| T::ProfilePoint * | registerProfilePoint (const std::string &pointName) |
| Registers a profiling point. More... | |
| template<class T , class... ARGS> | |
| T * | loadModule (const std::string &type, Params ¶ms, ARGS... args) |
| Loads a module from an element Library. More... | |
| template<class T , class... ARGS> | |
| T * | loadComponentExtension (ARGS... args) |
| template<class T > | |
| bool | isSubComponentLoadableUsingAPI (const std::string &type) |
| Check to see if a given element type is loadable with a particular API. More... | |
| template<class T > | |
| bool | isUserSubComponentLoadableUsingAPI (const std::string &slot_name) |
| Check to see if the element type loaded by the user into the. More... | |
| template<class T , class... ARGS> | |
| T * | loadAnonymousSubComponent (const std::string &type, const std::string &slot_name, int slot_num, uint64_t share_flags, Params ¶ms, ARGS... args) |
| Loads an anonymous subcomponent (not defined in input file to SST run). More... | |
| template<class T > | |
| T * | loadUserSubComponent (const std::string &slot_name) |
| Loads a user defined subcomponent (defined in input file to SST run). More... | |
| template<class T , class... ARGS> | |
| T * | loadUserSubComponent (const std::string &slot_name, uint64_t share_flags, ARGS... args) |
| Loads a user defined subcomponent (defined in input file to SST run). More... | |
| void | fatal (uint32_t line, const char *file, const char *func, int exit_code, const char *format,...) const |
| Convenience function for reporting fatal conditions. More... | |
| void | sst_assert (bool condition, uint32_t line, const char *file, const char *func, int exit_code, const char *format,...) const |
| Convenience function for testing for and reporting fatal conditions. More... | |
| bool | isAnonymous () |
| bool | isUser () |
| void | setDefaultTimeBase (TimeConverter *tc) |
| Manually set the default defaultTimeBase. | |
| void | setDefaultTimeBase (TimeConverter tc) |
| Manually set the default defaultTimeBase. | |
| TimeConverter * | getDefaultTimeBase () |
| const TimeConverter * | getDefaultTimeBase () const |
| bool | doesSubComponentExist (const std::string &type) |
| uint8_t | getStatisticValidityAndLevel (const std::string &statisticName) const |
| std::vector< Profile::ComponentProfileTool * > | getComponentProfileTools (const std::string &point) |
| void | registerAsPrimaryComponent () |
| Register as a primary component, which allows the component to specify when it is and is not OK to end simulation. More... | |
| void | primaryComponentDoNotEndSim () |
| Tells the simulation that it should not exit. More... | |
| void | primaryComponentOKToEndSim () |
| Tells the simulation that it is now OK to end simulation. More... | |
Additional Inherited Members | |
Static Public Attributes inherited from SST::Core::Serialization::serializable_base | |
| static constexpr uint32_t | NullClsId = std::numeric_limits<uint32_t>::max() |
Static Protected Member Functions inherited from SST::Core::Serialization::serializable_base | |
| static void | serializable_abort (uint32_t line, const char *file, const char *func, const char *obj) |
Main component object for the simulation.
|
inlinevirtual |
Used during the complete phase after the end of simulation.
The method will be called each phase of complete. Complete phase ends when no components have sent any data.
Reimplemented in SST::Interfaces::SimpleNetwork, and SST::CoreTestOverhead::OverheadMeasure.
|
protected |
Configure a Link.
| name | - Port Name on which the link to configure is attached. |
| time_base | - Time Base of the link. If nullptr is passed in, then it will use the Component defaultTimeBase |
| handler | - Optional Handler to be called when an Event is received |
References SST::TimeConverter::getFactor(), and SST::TimeConverter::isInitialized().
Referenced by configureSelfLink().
|
protected |
Configure a Link.
| name | - Port Name on which the link to configure is attached. |
| time_base | - Time Base of the link as a string |
| handler | - Optional Handler to be called when an Event is received |
References SST::TimeConverter::getFactor(), SST::TimeLord::getTimeConverter(), and SST::Simulation_impl::getTimeLord().
|
protected |
Configure a Link.
| name | - Port Name on which the link to configure is attached. |
| time_base | - Time Base of the link as a UnitAlgebra |
| handler | - Optional Handler to be called when an Event is received |
References SST::TimeConverter::getFactor(), SST::TimeLord::getTimeConverter(), and SST::Simulation_impl::getTimeLord().
|
protected |
Configure a Link.
| name | - Port Name on which the link to configure is attached. |
| handler | - Optional Handler to be called when an Event is received |
References SST::TimeConverter::getFactor().
|
protected |
Configure a SelfLink (Loopback link)
| name | - Name of the self-link port |
| time_base | - Time Base of the link. If nullptr is passed in, then it will use the Component defaultTimeBase |
| handler | - Optional Handler to be called when an Event is received |
References configureLink().
|
protected |
Configure a SelfLink (Loopback link)
| name | - Name of the self-link port |
| time_base | - Time Base of the link as a string |
| handler | - Optional Handler to be called when an Event is received |
References configureLink().
|
protected |
Configure a SelfLink (Loopback link)
| name | - Name of the self-link port |
| time_base | - Time Base of the link as a UnitAlgebra |
| handler | - Optional Handler to be called when an Event is received |
References configureLink().
|
protected |
Configure a SelfLink (Loopback link)
| name | - Name of the self-link port |
| handler | - Optional Handler to be called when an Event is received |
References configureLink().
|
inlinevirtual |
Called when SIGINT or SIGTERM has been seen.
Allows components opportunity to clean up external state.
Reimplemented in SST::CoreTestCheckpoint::coreTestCheckpoint.
|
protected |
Convenience function for reporting fatal conditions.
The function will create a new Output object and call fatal() using the supplied parameters. Before calling Output::fatal(), the function will also print other information about the (sub)component that called fatal and about the simulation state.
From Output::fatal: Message will be sent to the output location and to stderr. The output will be prepended with the expanded prefix set in the object. NOTE: fatal() will call MPI_Abort(exit_code) to terminate simulation.
| line | Line number of calling function (use CALL_INFO macro) |
| file | File name calling function (use CALL_INFO macro) |
| func | Function name calling function (use CALL_INFO macro) |
| exit_code | The exit code used for termination of simulation. will be passed to MPI_Abort() |
| format | Format string. All valid formats for printf are available. |
| ... | Arguments for format. |
|
inlinevirtual |
Called after complete phase, but before objects are destroyed.
A good place to print out statistics.
Reimplemented in SST::Interfaces::SimpleNetwork, SST::CoreTestMemPoolTest::MemPoolTestComponent, SST::CoreTest::MessageMesh::EnclosingComponent, SST::CoreTestStatisticsComponent::StatisticsComponentFloat, SST::CoreTestComponent::coreTestComponent, SST::CoreTestComponent::coreTestComponentExtMain, SST::CoreTestCheckpoint::coreTestCheckpoint, SST::CoreTestPerfComponent::coreTestPerfComponent, SST::CoreTestSharedObjectsComponent::coreTestSharedObjectsComponent, SST::CoreTestModule::coreTestModuleLoader, SST::CoreTestStatisticsComponent::StatisticsComponentInt, SST::CoreTestDistribComponent::coreTestDistribComponent, SST::CoreTestParamComponent::coreTestParamComponent, SST::CoreTestRNGComponent::coreTestRNGComponent, SST::CoreTestLookupTableComponent::coreTestLookupTableComponent, SST::SubComponent, SST::CoreTestOverhead::OverheadMeasure, SST::CoreTestMessageGeneratorComponent::coreTestMessageGeneratorComponent, SST::CoreTestComponent::coreTestLinks, and SST::CoreTestClockerComponent::coreTestClockerComponent.
| double SST::BaseComponent::getCompletePhaseElapsedRealTime | ( | ) | const |
Get the amount of real-time spent executing the complete phase of the simulation.
| SimTime_t SST::BaseComponent::getCurrentSimTime | ( | TimeConverter * | tc | ) | const |
Return the simulated time since the simulation began in units specified by the parameter.
| tc | TimeConverter specifying the units |
References getCurrentSimTime().
Referenced by SST::PortModule::getCurrentSimTime().
| SimTime_t SST::BaseComponent::getCurrentSimTime | ( | const std::string & | base | ) | const |
Return the simulated time since the simulation began in timebase specified.
| base | Timebase frequency in SI Units |
References getCurrentSimTime(), SST::TimeLord::getTimeConverter(), and SST::Simulation_impl::getTimeLord().
| double SST::BaseComponent::getInitPhaseElapsedRealTime | ( | ) | const |
Get the amount of real-time spent executing the init phase of the simulation.
|
protected |
Returns the next Cycle that the TimeConverter would fire If called prior to the simulation run loop, next Cycle is 0.
If called after the simulation run loop completes (e.g., during complete() or finish()), next Cycle is one past the end time of the simulation. See Note in reregisterClock() for additional guidance when calling this function after simulation ends.
References SST::Simulation_impl::getNextClockCycle().
|
protected |
Returns the output directory of the simulation.
References SST::Simulation_impl::getOutputDirectory().
|
inline |
| double SST::BaseComponent::getRunPhaseElapsedRealTime | ( | ) | const |
Get the amount of real-time spent executing the run phase of the simulation.
|
inlinevirtual |
Used during the init phase.
The method will be called each phase of initialization. Initialization ends when no components have sent any data.
Reimplemented in SST::Interfaces::SimpleNetwork, SST::CoreTestOverhead::OverheadMeasure, and SST::SubComponent.
|
protected |
Check to see if the run mode was set to BOTH.
References SST::Simulation_impl::getSimulationMode().
|
protected |
Check to see if the run mode was set to INIT.
References SST::Simulation_impl::getSimulationMode().
|
protected |
Check to see if the run mode was set to RUN.
References SST::Simulation_impl::getSimulationMode().
|
inlineprotected |
Check to see if a given element type is loadable with a particular API.
| name | - Name of element to check in lib.name format |
|
inlineprotected |
Check to see if the element type loaded by the user into the.
specified slot is loadable with a particular API. This will only check slot index 0. If you need to check other slots, please use the SubComponentSlotInfo.
| slot_name | - Name of slot to check |
References SST::Output::fatal(), and SST::Output::STDERR.
|
inlineprotected |
Loads an anonymous subcomponent (not defined in input file to SST run).
| type | tyupe of subcomponent to load in lib.name format |
| slot_name | name of the slot to load subcomponent into |
| slot_num | index of the slot to load subcomponent into |
| share_flags | Share flags to be used by subcomponent |
| params | Params object to be passed to subcomponent |
| args | Arguments to be passed to constructor. This signature is defined in the API definition |
For ease in backward compatibility to old API, this call will try to load using new API and will fallback to old if unsuccessful.
|
inlineprotected |
Loads a module from an element Library.
| type | Fully Qualified library.moduleName |
| params | Parameters the module should use for configuration |
|
inlineprotected |
Loads a user defined subcomponent (defined in input file to SST run).
This version does not allow share flags (set to SHARE_NONE) or constructor arguments.
| slot_name | name of the slot to load subcomponent into |
For ease in backward compatibility to old API, this call will try to load using new API and will fallback to old if unsuccessful.
|
inlineprotected |
Loads a user defined subcomponent (defined in input file to SST run).
| slot_name | name of the slot to load subcomponent into |
| share_flags | Share flags to be used by subcomponent |
| args | Arguments to be passed to constructor. This signature is defined in the API definition |
For ease in backward compatibility to old API, this call will try to load using new API and will fallback to old if unsuccessful.
References SST::Output::fatal(), and SST::Output::STDERR.
|
protected |
Performs a global statistic Output.
This routine will force ALL Components and Subcomponents to output their statistic information. This may lead to unexpected results if the statistic counts or data is reset on output. NOTE: Currently, this function will only output statistics that are on the same rank.
References SST::Simulation_impl::getStatisticsProcessingEngine(), and SST::Statistics::StatisticProcessingEngine::performGlobalStatisticOutput().
|
protected |
Called by the Components and Subcomponent to perform a statistic Output.
| stat | - Pointer to the statistic. |
References SST::Simulation_impl::getStatisticsProcessingEngine(), and SST::Statistics::StatisticProcessingEngine::performStatisticOutput().
|
protected |
Tells the simulation that it should not exit.
The component will remain in this state until a call to primaryComponentOKToEndSim(). A component may reenter the DoNotEndSime state by calling this function after calling primaryComponentOKToEndSim(), in which case, another call to primaryComponentOKToEndSim() will need to be called to end the simulation.
Calls to this function when already in the DoNotEndSime state, will be functionally ignored, but will generate a warning if verbose is turned on.
Calls to this function on non-primary components will be ignored and will generate a warning if verbose is turned on.
References SST::Simulation_impl::getExit(), getName(), SST::Simulation_impl::getRank(), SST::Simulation_impl::getSimulationOutput(), SST::Exit::refInc(), and SST::Output::verbose().
|
protected |
Tells the simulation that it is now OK to end simulation.
Simulation will not end until all primary components that have called primaryComponentDoNotEndSim() have called this function.
Calls to this function when already in the OKToEndSim state, will be functionally ignored, but will generate a warning if verbose is turned on.
Calls to this function on non-primary components will be ignored and will generate a warning if verbose is turned on.
References SST::Simulation_impl::getExit(), getName(), SST::Simulation_impl::getRank(), SST::Simulation_impl::getSimulationOutput(), SST::Exit::refDec(), and SST::Output::verbose().
|
inlinevirtual |
Called by the Simulation to request that the component print it's current status.
Useful for debugging.
| out | The Output class which should be used to print component status. |
|
protected |
Register as a primary component, which allows the component to specify when it is and is not OK to end simulation.
The simulator will not end simulation through use of the Exit object while any primary component has specified primaryComponentDoNotEndSim(). However, it is still possible for Actions other than Exit to end simulation. Once all primary components have specified primaryComponentOKToEndSim(), the Exit object will trigger and end simulation.
This must be called during simulation wireup (i.e during the constructor for the component), or a fatal error will occur.
If no component registers as a primary component, then the Exit object will not be used for that simulation and simulation termination must be accomplished through some other mechanism (e.g. –stopAt flag, or some other Action object).
References SST::Output::fatal(), getName(), SST::Simulation_impl::getSimulationOutput(), SST::Simulation_impl::isWireUpFinished(), and SST::Output::verbose().
|
protected |
Registers a clock for this component.
| freq | Frequency for the clock in SI units |
| handler | Pointer to Clock::HandlerBase which is to be invoked at the specified interval |
| regAll | Should this clock period be used as the default time base for all of the links connected to this component |
References SST::Simulation_impl::registerClock().
|
protected |
Registers a clock for this component.
| freq | Frequency for the clock as a UnitAlgebra object |
| handler | Pointer to Clock::HandlerBase which is to be invoked at the specified interval |
| regAll | Should this clock period be used as the default time base for all of the links connected to this component |
References SST::Simulation_impl::registerClock().
|
protected |
Registers a clock for this component.
| tc | TimeConverter object specifying the clock frequency |
| handler | Pointer to Clock::HandlerBase which is to be invoked at the specified interval |
| regAll | Should this clock period be used as the default time base for all of the links connected to this component |
References SST::Simulation_impl::registerClock().
|
inlineprotected |
Registers a profiling point.
This function will register a profiling point.
| point | Point to resgister |
|
inlineprotected |
Registers a statistic.
If Statistic is allowed to run (controlled by Python runtime parameters), then a statistic will be created and returned. If not allowed to run, then a NullStatistic will be returned. In either case, the returned value should be used for all future Statistic calls. The type of Statistic and the Collection Rate is set by Python runtime parameters. If no type is defined, then an Accumulator Statistic will be provided by default. If rate set to 0 or not provided, then the statistic will output results only at end of sim (if output is enabled).
| params | Parameter set to be passed to the statistic constructor. |
| stat_name | Primary name of the statistic. This name must match the defined ElementInfoStatistic in the component, and must also be enabled in the Python input file. |
| stat_sub_id | An additional sub name for the statistic |
|
protected |
Registers a default time base for the component and optionally sets the the component's links to that timebase.
Useful for components which do not have a clock, but would like a default timebase.
| base | Frequency for the clock in SI units |
| regAll | Should this clock period be used as the default time base for all of the links connected to this component |
References SST::TimeLord::getTimeConverter(), and SST::Simulation_impl::getTimeLord().
|
protected |
Signifies that a library is required for this simulation.
Causes the Factory to verify that the required library is loaded.
NOTE: This function should rarely be required, as most dependencies are automatically detected in the simulator core. However, if the component uses an event from another library that is not wholly defined in a header file, this call may be required to ensure that all the code from the event is loaded. Similarly, if you use a class from another library that does not have ELI information, this call may also be required to make sure all dependencies are loaded.
| name | Name of library this BaseComponent depends on |
References SST::Simulation_impl::requireLibrary().
|
protected |
Reactivates an existing Clock and Handler.
Note: If called after the simulation run loop (e.g., in finish() or complete()), will return the next time of the clock past when the simulation ended. There can be a small lag between simulation end and detection of simulation end during which clocks can run a few extra cycles. As a result, the return value just prior to simulation end may be greater than the value returned after simulation end.
References SST::Simulation_impl::reregisterClock().
|
inlinevirtual |
Called after all components have been constructed and initialization has completed, but before simulation time has begun.
Reimplemented in SST::Interfaces::SimpleNetwork, SST::CoreTestMemPoolTest::MemPoolTestComponent, SST::CoreTest::MessageMesh::EnclosingComponent, SST::CoreTestStatisticsComponent::StatisticsComponentFloat, SST::CoreTestComponent::coreTestComponent, SST::CoreTestComponent::coreTestComponentExtMain, SST::CoreTestCheckpoint::coreTestCheckpoint, SST::CoreTestPerfComponent::coreTestPerfComponent, SST::CoreTestSharedObjectsComponent::coreTestSharedObjectsComponent, SST::CoreTestModule::coreTestModuleLoader, SST::CoreTestStatisticsComponent::StatisticsComponentInt, SST::CoreTestDistribComponent::coreTestDistribComponent, SST::CoreTestParamComponent::coreTestParamComponent, SST::CoreTestRNGComponent::coreTestRNGComponent, SST::CoreTestLookupTableComponent::coreTestLookupTableComponent, SST::CoreTestMessageGeneratorComponent::coreTestMessageGeneratorComponent, SST::CoreTestOverhead::OverheadMeasure, SST::SubComponent, SST::CoreTestComponent::coreTestLinks, and SST::CoreTestClockerComponent::coreTestClockerComponent.
|
protected |
Convenience function for testing for and reporting fatal conditions.
If the condition holds, fatal() will be called, otherwise, the function will return. The function will create a new Output object and call fatal() using the supplied parameters. Before calling Output::fatal(), the function will also print other information about the (sub)component that called fatal and about the simulation state.
From Output::fatal: Message will be sent to the output location and to stderr. The output will be prepended with the expanded prefix set in the object. NOTE: fatal() will call MPI_Abort(exit_code) to terminate simulation.
| condition | on which to call fatal(); fatal() is called if the bool is false. |
| line | Line number of calling function (use CALL_INFO macro) |
| file | File name calling function (use CALL_INFO macro) |
| func | Function name calling function (use CALL_INFO macro) |
| exit_code | The exit code used for termination of simulation. will be passed to MPI_Abort() |
| format | Format string. All valid formats for printf are available. |
| ... | Arguments for format. |