SST
7.1.0
StructuralSimulationToolkit
|
Represents the configuration of a generic component. More...
#include <configGraph.h>
Public Member Functions | |
const ComponentId_t & | key () const |
void | print (std::ostream &os) const |
Print Component information. | |
ConfigComponent | cloneWithoutLinks () const |
ConfigComponent | cloneWithoutLinksOrParams () const |
void | setRank (RankInfo r) |
void | setWeight (double w) |
void | setCoordinates (const std::vector< double > &c) |
void | addParameter (const std::string &key, const std::string &value, bool overwrite) |
ConfigComponent * | addSubComponent (ComponentId_t, const std::string &name, const std::string &type, int slot) |
ConfigComponent * | findSubComponent (ComponentId_t) |
const ConfigComponent * | findSubComponent (ComponentId_t) const |
void | enableStatistic (const std::string &statisticName) |
void | addStatisticParameter (const std::string &statisticName, const std::string ¶m, const std::string &value) |
void | setStatisticParameters (const std::string &statisticName, const Params ¶ms) |
std::vector< LinkId_t > | allLinks () const |
void | serialize_order (SST::Core::Serialization::serializer &ser) override |
ImplementSerializable(SST::ConfigComponent) private | ConfigComponent (ComponentId_t id, std::string name, std::string type, float weight, RankInfo rank) |
Create a new Component. | |
ConfigComponent (ComponentId_t id, std::string name, int slot_num, std::string type, float weight, RankInfo rank) | |
Public Member Functions inherited from SST::Core::Serialization::serializable | |
virtual const char * | cls_name () const =0 |
virtual uint32_t | cls_id () const =0 |
virtual std::string | serialization_name () const =0 |
Data Fields | |
ComponentId_t | id |
std::string | name |
int | slot_num |
std::string | type |
float | weight |
RankInfo | rank |
std::vector< LinkId_t > | links |
Params | params |
std::vector< Statistics::StatisticInfo > | enabledStatistics |
std::vector< ConfigComponent > | subComponents |
std::vector< double > | coords |
Additional Inherited Members | |
Protected Types inherited from SST::Core::Serialization::serializable | |
enum | cxn_flag_t { ConstructorFlag } |
Static Protected Member Functions inherited from SST::Core::Serialization::serializable | |
static void | serializable_abort (uint32_t line, const char *file, const char *func, const char *obj) |
Represents the configuration of a generic component.
std::vector<Statistics::StatisticInfo> SST::ConfigComponent::enabledStatistics |
List of statistics to be enabled
Referenced by print().
ComponentId_t SST::ConfigComponent::id |
Unique ID of this component
Referenced by SST::ConfigGraph::addLink(), SST::ConfigGraph::checkForStructuralErrors(), SST::Simulation::performWireUp(), print(), and SST::ConfigStatGroup::verifyStatsAndComponents().
std::vector<LinkId_t> SST::ConfigComponent::links |
List of links connected
Referenced by SST::ConfigGraph::addLink(), and SST::ConfigGraph::checkForStructuralErrors().
std::string SST::ConfigComponent::name |
Name of this component, or slot name for subcomp
Referenced by SST::ConfigGraph::checkForStructuralErrors(), SST::Simulation::performWireUp(), print(), and SST::ConfigStatGroup::verifyStatsAndComponents().
Params SST::ConfigComponent::params |
Set of Parameters
Referenced by SST::Simulation::performWireUp(), and print().
RankInfo SST::ConfigComponent::rank |
Parallel Rank for this component
Referenced by SST::ConfigGraph::addLink(), SST::Simulation::performWireUp(), and print().
int SST::ConfigComponent::slot_num |
Slot number. Only valid for subcomponents
Referenced by print().
std::vector<ConfigComponent> SST::ConfigComponent::subComponents |
List of subcomponents
Referenced by print().
std::string SST::ConfigComponent::type |
Type of this component
Referenced by SST::ConfigGraph::checkForStructuralErrors(), SST::Simulation::performWireUp(), print(), and SST::ConfigStatGroup::verifyStatsAndComponents().
float SST::ConfigComponent::weight |
Parititoning weight for this component
Referenced by SST::ConfigGraph::addLink(), and print().