12 #ifndef SST_CORE_CORETEST_RNGCOMPONENT_H 13 #define SST_CORE_CORETEST_RNGCOMPONENT_H 15 #include "sst/core/component.h" 16 #include "sst/core/rng/rng.h" 22 namespace CoreTestRNGComponent {
28 SST_ELI_REGISTER_COMPONENT(
31 "coreTestRNGComponent",
32 SST_ELI_ELEMENT_VERSION(1,0,0),
33 "Random number generation component",
34 COMPONENT_CATEGORY_UNCATEGORIZED
37 SST_ELI_DOCUMENT_PARAMS(
38 {
"seed_w",
"The seed to use for the random number generator",
"7" },
39 {
"seed_z",
"The seed to use for the random number generator",
"5" },
40 {
"seed",
"The seed to use for the random number generator.",
"11" },
41 {
"rng",
"The random number generator to use (Marsaglia or Mersenne), default is Mersenne",
"Mersenne"},
42 {
"count",
"The number of random numbers to generate, default is 1000",
"1000" },
43 {
"verbose",
"Sets the output verbosity of the component",
"0" }
47 SST_ELI_DOCUMENT_STATISTICS(
51 SST_ELI_DOCUMENT_PORTS(
55 SST_ELI_DOCUMENT_SUBCOMPONENT_SLOTS(
68 virtual bool tick(SST::Cycle_t);
80 #endif // SST_CORE_CORETEST_RNGCOMPONENT_H Output object provides consistent method for outputting data to stdout, stderr and/or sst debug file...
Definition: output.h:53
Implements the base class for random number generators for the SST core.
Definition: rng.h:29
Definition: constant.h:21
Main component object for the simulation.
Definition: component.h:30
void setup()
Called after all components have been constructed and initialization has completed, but before simulation time has begun.
Definition: coreTest_RNGComponent.h:60
void finish()
Called after complete phase, but before objects are destroyed.
Definition: coreTest_RNGComponent.h:61
Parameter store.
Definition: params.h:55
Definition: coreTest_RNGComponent.h:24