SST
13.1.0
Structural Simulation Toolkit
|
Main control class for a SST Simulation. More...
#include <simulation_impl.h>
Public Types | |
enum | ShutdownMode_t { SHUTDOWN_CLEAN , SHUTDOWN_SIGNAL , SHUTDOWN_EMERGENCY } |
typedef std::map< std::pair< SimTime_t, int >, Clock * > | clockMap_t |
typedef std::map< std::pair< SimTime_t, int >, OneShot * > | oneShotMap_t |
Public Member Functions | |
SimulationRunMode | getSimulationMode () const override |
Get the run mode of the simulation (e.g. More... | |
SimTime_t | getCurrentSimCycle () const override |
Return the current simulation time as a cycle count. More... | |
SimTime_t | getEndSimCycle () const override |
Return the end simulation time as a cycle count. | |
int | getCurrentPriority () const override |
Return the current priority. | |
UnitAlgebra | getElapsedSimTime () const override |
Return the elapsed simulation time as a time. | |
UnitAlgebra | getEndSimTime () const override |
Return the end simulation time as a time. | |
RankInfo | getRank () const override |
Get this instance's parallel rank. | |
RankInfo | getNumRanks () const override |
Get the number of parallel ranks in the simulation. | |
std::string & | getOutputDirectory () override |
Returns the output directory of the simulation. More... | |
virtual void | requireLibrary (const std::string &name) override |
Signifies that a library is required for this simulation. More... | |
virtual void | printStatus (bool fullStatus) override |
Causes the current status of the simulation to be printed to stderr. More... | |
virtual double | getRunPhaseElapsedRealTime () const override |
Get the amount of real-time spent executing the run phase of the simulation. More... | |
virtual double | getInitPhaseElapsedRealTime () const override |
Get the amount of real-time spent executing the init phase of the simulation. More... | |
virtual double | getCompletePhaseElapsedRealTime () const override |
Get the amount of real-time spent executing the complete phase of the simulation. More... | |
void | insertActivity (SimTime_t time, Activity *ev) |
Insert an activity to fire at a specified time. | |
Exit * | getExit () const |
Return the exit event. | |
void | processGraphInfo (ConfigGraph &graph, const RankInfo &myRank, SimTime_t min_part) |
Processes the ConfigGraph to pull out any need information about relationships among the threads. | |
int | initializeStatisticEngine (ConfigGraph &graph) |
int | prepareLinks (ConfigGraph &graph, const RankInfo &myRank, SimTime_t min_part) |
int | performWireUp (ConfigGraph &graph, const RankInfo &myRank, SimTime_t min_part) |
void | exchangeLinkInfo () |
void | setStopAtCycle (Config *cfg) |
Set cycle count, which, if reached, will cause the simulation to halt. | |
void | initialize () |
Perform the init() phase of simulation. | |
void | complete () |
Perform the complete() phase of simulation. | |
void | setup () |
Perform the setup() and run phases of the simulation. | |
void | run () |
void | finish () |
void | adjustTimeAtSimEnd () |
Adjust clocks and time to reflect precise simulation end time which may differ in parallel simulations from the time simulation end is detected. | |
bool | isIndependentThread () |
void | printProfilingInfo (FILE *fp) |
void | printPerformanceInfo () |
TimeConverter * | registerOneShot (const std::string &timeDelay, OneShot::HandlerBase *handler, int priority) |
Register a OneShot event to be called after a time delay Note: OneShot cannot be canceled, and will always callback after the timedelay. | |
TimeConverter * | registerOneShot (const UnitAlgebra &timeDelay, OneShot::HandlerBase *handler, int priority) |
const std::vector< SimTime_t > & | getInterThreadLatencies () const |
SimTime_t | getInterThreadMinLatency () const |
LinkMap * | getComponentLinkMap (ComponentId_t id) const |
const ComponentInfoMap & | getComponentInfoMap (void) |
Returns reference to the Component Info Map. | |
BaseComponent * | getComponent (const ComponentId_t &id) const |
returns the component with the given ID | |
ComponentInfo * | getComponentInfo (const ComponentId_t &id) const |
returns the ComponentInfo object for the given ID | |
void | setOutputDirectory (const std::string &outDir) |
Set the output directory for this simulation. More... | |
bool | isWireUpFinished () |
Returns true when the Wireup is finished. | |
uint64_t | getTimeVortexMaxDepth () const |
uint64_t | getTimeVortexCurrentDepth () const |
uint64_t | getSyncQueueDataSize () const |
TimeConverter * | registerClock (const std::string &freq, Clock::HandlerBase *handler, int priority) |
Register a handler to be called on a set frequency. | |
TimeConverter * | registerClock (const UnitAlgebra &freq, Clock::HandlerBase *handler, int priority) |
TimeConverter * | registerClock (TimeConverter *tcFreq, Clock::HandlerBase *handler, int priority) |
void | unregisterClock (TimeConverter *tc, Clock::HandlerBase *handler, int priority) |
Remove a clock handler from the list of active clock handlers. | |
Cycle_t | reregisterClock (TimeConverter *tc, Clock::HandlerBase *handler, int priority) |
Reactivate an existing clock and handler. More... | |
Cycle_t | getNextClockCycle (TimeConverter *tc, int priority=CLOCKPRIORITY) |
Returns the next Cycle that the TImeConverter would fire. | |
Statistics::StatisticProcessingEngine * | getStatisticsProcessingEngine (void) |
Return the Statistic Processing Engine associated with this Simulation. | |
friend | int ::main (int argc, char **argv) |
Simulation_impl (Config *config, RankInfo my_rank, RankInfo num_ranks) | |
Simulation_impl (Simulation_impl const &) | |
void | operator= (Simulation_impl const &) |
TimeConverter * | minPartToTC (SimTime_t cycles) const |
Get a handle to a TimeConverter. More... | |
Component * | createComponent (ComponentId_t id, const std::string &name, Params ¶ms) |
TimeVortex * | getTimeVortex () const |
void | endSimulation (void) |
Normal Shutdown. | |
void | endSimulation (SimTime_t end) |
void | intializeProfileTools (const std::string &config) |
Performance Tracking Information. | |
template<typename T > | |
std::vector< T * > | getProfileTool (std::string point) |
Static Public Member Functions | |
static Simulation_impl * | getSimulation () |
Return a pointer to the singleton instance of the Simulation. | |
static TimeLord * | getTimeLord (void) |
Return the TimeLord associated with this Simulation. | |
static Output & | getSimulationOutput () |
Return the base simulation Output class instance. | |
static Simulation_impl * | createSimulation (Config *config, RankInfo my_rank, RankInfo num_ranks) |
Create new simulation. More... | |
static void | shutdown () |
Used to signify the end of simulation. More... | |
static void | setSignal (int signal) |
Sets an internal flag for signaling the simulation. More... | |
static TimeConverter * | getMinPartTC () |
static SimTime_t | getLocalMinimumNextActivityTime () |
Gets the minimum next activity time across all TimeVortices in the Rank. | |
static void | resizeBarriers (uint32_t nthr) |
static void | emergencyShutdown () |
Emergency Shutdown Called when a SIGINT or SIGTERM has been seen. | |
Data Fields | |
bool | direct_interthread |
TimeVortex * | timeVortex |
TimeConverter * | threadMinPartTC |
Activity * | current_activity |
std::vector< SimTime_t > | interThreadLatencies |
SimTime_t | interThreadMinLatency |
SyncManager * | syncManager |
ComponentInfoMap | compInfoMap |
clockMap_t | clockMap |
oneShotMap_t | oneShotMap |
SimulatorHeartbeat * | m_heartbeat |
bool | endSim |
bool | independent |
unsigned int | untimed_phase |
volatile sig_atomic_t | lastRecvdSignal |
ShutdownMode_t | shutdown_mode |
bool | wireUpFinished |
SST::Statistics::StatisticProcessingEngine | stat_engine |
Statistics Engine. | |
std::map< std::string, SST::Profile::ProfileTool * > | profile_tools |
std::map< std::string, std::vector< std::string > > | profiler_map |
uint64_t | clockDivisor = 1e6 |
std::string | clockResolution = "us" |
SimulationRunMode | runMode |
SimTime_t | currentSimCycle |
int | currentPriority |
SimTime_t | endSimCycle |
RankInfo | my_rank |
RankInfo | num_ranks |
std::string | output_directory |
double | run_phase_start_time |
double | run_phase_total_time |
double | init_phase_start_time |
double | init_phase_total_time |
double | complete_phase_start_time |
double | complete_phase_total_time |
Static Public Attributes | |
static Factory * | factory |
Factory used to generate the simulation components. | |
static Core::ThreadSafe::Barrier | initBarrier |
static Core::ThreadSafe::Barrier | completeBarrier |
static Core::ThreadSafe::Barrier | setupBarrier |
static Core::ThreadSafe::Barrier | runBarrier |
static Core::ThreadSafe::Barrier | exitBarrier |
static Core::ThreadSafe::Barrier | finishBarrier |
static std::mutex | simulationMutex |
static Core::ThreadSafe::Spinlock | cross_thread_lock |
static std::map< LinkId_t, Link * > | cross_thread_links |
static SimTime_t | minPart |
static TimeConverter * | minPartTC = nullptr |
static Exit * | m_exit |
static std::atomic< int > | untimed_msg_count |
static TimeLord | timeLord |
TimeLord of the simulation. | |
static Output | sim_output |
Output. | |
static SharedRegionManager * | sharedRegionManager |
static std::unordered_map< std::thread::id, Simulation_impl * > | instanceMap |
static std::vector< Simulation_impl * > | instanceVec |
Friends | |
class | Link |
class | Action |
class | Output |
class | SyncManager |
void | wait_my_turn_start () |
void | wait_my_turn_end () |
Additional Inherited Members | |
Protected Member Functions inherited from SST::Simulation | |
Simulation (Simulation const &) | |
void | operator= (Simulation const &) |
Main control class for a SST Simulation.
Provides base features for managing the simulation
typedef std::map<std::pair<SimTime_t, int>, Clock*> SST::Simulation_impl::clockMap_t |
Map of times to clocks
typedef std::map<std::pair<SimTime_t, int>, OneShot*> SST::Simulation_impl::oneShotMap_t |
Map of times to OneShots
|
static |
Create new simulation.
config | - Configuration of the simulation |
my_rank | - Parallel Rank of this simulation object |
num_ranks | - How many Ranks are in the simulation |
References SST::Config::enabledProfiling(), and intializeProfileTools().
|
overridevirtual |
Get the amount of real-time spent executing the complete phase of the simulation.
Implements SST::Simulation.
|
overridevirtual |
Return the current simulation time as a cycle count.
Simulation functions.
Non-static functions
Implements SST::Simulation.
Referenced by SST::Exit::refDec(), SST::Clock::schedule(), and SST::Clock::updateCurrentCycle().
|
overridevirtual |
Get the amount of real-time spent executing the init phase of the simulation.
Implements SST::Simulation.
|
inlineoverridevirtual |
Returns the output directory of the simulation.
Implements SST::Simulation.
|
overridevirtual |
Get the amount of real-time spent executing the run phase of the simulation.
Implements SST::Simulation.
|
inlineoverridevirtual |
TimeConverter * SST::Simulation_impl::minPartToTC | ( | SimTime_t | cycles | ) | const |
Get a handle to a TimeConverter.
Simulation_impl functions.
cycles | Frequency which is the base of the TimeConverter |
Referenced by processGraphInfo().
|
overridevirtual |
Causes the current status of the simulation to be printed to stderr.
fullStatus | - if true, call printStatus() on all components as well as print the base Simulation's status |
Implements SST::Simulation.
References SST::Output::output(), SST::TimeVortex::print(), and SST::Output::STDERR.
|
overridevirtual |
Signifies that a library is required for this simulation.
name | Name of the library |
Implements SST::Simulation.
References factory.
Cycle_t SST::Simulation_impl::reregisterClock | ( | TimeConverter * | tc, |
Clock::HandlerBase * | handler, | ||
int | priority | ||
) |
Reactivate an existing clock and handler.
References SST::Output::fatal(), SST::TimeConverter::getFactor(), and SST::Output::STDERR.
|
inline |
Set the output directory for this simulation.
outDir | Path of directory to place simulation outputs in |
|
static |
Sets an internal flag for signaling the simulation.
Used internally
|
static |
Used to signify the end of simulation.
Cleans up any existing Simulation Objects