SST 16.0.0
Structural Simulation Toolkit
interactiveConsole.h
1// Copyright 2009-2026 NTESS. Under the terms
2// of Contract DE-NA0003525 with NTESS, the U.S.
3// Government retains certain rights in this software.
4//
5// Copyright (c) 2009-2026, NTESS
6// All rights reserved.
7//
8// This file is part of the SST software package. For license
9// information, see the LICENSE file in the top level directory of the
10// distribution.
11
12#ifndef SST_CORE_INTERACTIVE_CONSOLE_H
13#define SST_CORE_INTERACTIVE_CONSOLE_H
14
15#include "sst/core/action.h"
16#include "sst/core/cputimer.h"
17#include "sst/core/eli/elementinfo.h"
18#include "sst/core/output.h"
19#include "sst/core/rankInfo.h"
20#include "sst/core/sst_types.h"
21#include "sst/core/threadsafe.h"
22#include "sst/core/timeConverter.h"
23#include "sst/core/unitAlgebra.h"
24
25#include <cstdint>
26#include <set>
27#include <string>
28#include <vector>
29
30namespace SST {
31
32class Params;
33class Simulation;
34
35namespace Interactive {
36/* Utility functions needed to manage directories */
37
38
39} // namespace Interactive
40
41/**
42 \class CheckpointAction
43 A recurring event to trigger checkpoint generation
44*/
45class InteractiveConsole
46{
47public:
48 // Make this an ELI base
49 SST_ELI_DECLARE_BASE(InteractiveConsole)
50 SST_ELI_DECLARE_CTOR_EXTERN(SST::Params&)
52 ELI::ProvidesParams
53 )
54
55 /**
56 Create a new checkpoint object for the simulation core to initiate checkpoints
57 */
58 InteractiveConsole() = default;
59 virtual ~InteractiveConsole() = default;
60
61 /** Interactive Console execute return codes: Positive number is thread ID to switch to, negative is other state */
62 enum ICretcode { DONE = -1, SUMMARY = -2 };
63 /** Called by TimeVortex to trigger checkpoint on simulation clock interval - not used in parallel simulation */
64 virtual int execute(const std::string& msg) = 0;
65 /** Called by SyncManager to get summary info for each thread */
66 virtual void summary() = 0;
67
68protected:
69 // Functions that can be called by child class
70
71 // Informational functions
72 /** Get the core timebase */
74
75 /** Return the current simulation time as a cycle count*/
76 SimTime_t getCurrentSimCycle() const;
77
78 /** Return the elapsed simulation time as a time */
80
81 /** Return the end simulation time as a cycle count*/
82 SimTime_t getEndSimCycle() const;
83
84 /** Return the end simulation time as a time */
86
87 /** Get this instance's parallel rank */
88 RankInfo getRank() const;
89
90 /** Get the number of parallel ranks in the simulation */
91 RankInfo getNumRanks() const;
92
93 /** Return the base simulation Output class instance */
95
96 /** Return the max depth of the TimeVortex */
97 uint64_t getTimeVortexMaxDepth() const;
98
99 /** Return the size of the SyncQueue - per-rank */
100 uint64_t getSyncQueueDataSize() const;
101
102 /** Return MemPool usage information - per-rank */
103 void getMemPoolUsage(int64_t& bytes, int64_t& active_entries);
104
105 /** Get a TimeConverter */
106 TimeConverter getTimeConverter(const std::string& time);
107
108 /** Get the list of Components */
109 void getComponentList(std::vector<std::pair<std::string, SST::Component*>>& vec);
110
111 // Actions that an InteractiveAction can take
112
113 /**
114 Runs the simulation the specified number of core time base
115 units
116
117 @param time Time in units of core time base
118 */
119 void simulationRun(SimTime_t time);
120
121 /**
122 Schedules the action for execution at the current simulation
123 time plus time_offset
124
125 @param time_offset Time in units of core time base
126 */
127 void schedule_interactive(SimTime_t time_offset, const std::string& msg);
128
129 SST::Core::Serialization::ObjectMap* getComponentObjectMap();
130
131 void simulationShutdown();
132
133private:
134 InteractiveConsole(const InteractiveConsole&) = delete;
135 InteractiveConsole& operator=(const InteractiveConsole&) = delete;
136};
137
138} // namespace SST
139
140#ifndef SST_ELI_REGISTER_INTERACTIVE_CONSOLE
141#define SST_ELI_REGISTER_INTERACTIVE_CONSOLE(cls, lib, name, version, desc) \
142 SST_ELI_REGISTER_DERIVED(SST::InteractiveConsole,cls,lib,name,ELI_FORWARD_AS_ONE(version),desc)
143#endif
144
145
146#endif // SST_CORE_INTERACTIVE_CONSOLE_H
Base class for objects created by the serializer mapping mode used to map the variables for objects.
Definition objectMap.h:188
Output & getSimulationOutput() const
Return the base simulation Output class instance.
Definition interactiveConsole.cc:72
RankInfo getRank() const
Get this instance's parallel rank.
Definition interactiveConsole.cc:60
virtual void summary()=0
Called by SyncManager to get summary info for each thread.
UnitAlgebra getEndSimTime() const
Return the end simulation time as a time.
Definition interactiveConsole.cc:54
void getComponentList(std::vector< std::pair< std::string, SST::Component * > > &vec)
Get the list of Components.
void simulationRun(SimTime_t time)
Runs the simulation the specified number of core time base units.
ICretcode
Interactive Console execute return codes: Positive number is thread ID to switch to,...
Definition interactiveConsole.h:62
UnitAlgebra getElapsedSimTime() const
Return the elapsed simulation time as a time.
Definition interactiveConsole.cc:42
void schedule_interactive(SimTime_t time_offset, const std::string &msg)
Schedules the action for execution at the current simulation time plus time_offset.
Definition interactiveConsole.cc:102
virtual int execute(const std::string &msg)=0
Called by TimeVortex to trigger checkpoint on simulation clock interval - not used in parallel simula...
uint64_t getTimeVortexMaxDepth() const
Return the max depth of the TimeVortex.
Definition interactiveConsole.cc:78
SST_ELI_DECLARE_INFO_EXTERN(ELI::ProvidesParams) InteractiveConsole()=default
Create a new checkpoint object for the simulation core to initiate checkpoints.
RankInfo getNumRanks() const
Get the number of parallel ranks in the simulation.
Definition interactiveConsole.cc:66
SimTime_t getCurrentSimCycle() const
Return the current simulation time as a cycle count.
Definition interactiveConsole.cc:36
UnitAlgebra getCoreTimeBase() const
Get the core timebase.
Definition interactiveConsole.cc:30
uint64_t getSyncQueueDataSize() const
Return the size of the SyncQueue - per-rank.
Definition interactiveConsole.cc:90
SimTime_t getEndSimCycle() const
Return the end simulation time as a cycle count.
Definition interactiveConsole.cc:48
TimeConverter getTimeConverter(const std::string &time)
Get a TimeConverter.
Definition interactiveConsole.cc:96
void getMemPoolUsage(int64_t &bytes, int64_t &active_entries)
Return MemPool usage information - per-rank.
Definition interactiveConsole.cc:84
Output object provides consistent method for outputting data to stdout, stderr and/or sst debug file.
Definition output.h:58
Parameter store.
Definition params.h:65
Definition rankInfo.h:24
Main control class for a SST Simulation.
Definition simulation.h:121
A class to convert between a component's view of time and the core's view of time.
Definition timeConverter.h:31
Performs Unit math in full precision.
Definition unitAlgebra.h:107