enableAllStatisticsForAllComponents
Enables all statistics for all Components in the simulation that have already been instanced.
Syntax
sst.enableAllStatisticsForAllComponents(stat_params_dict)
Parameters
- stat_params_dict (type: dict) OPTIONAL. Python dictionary that specified the statistic parameters. All statistics will get the same set of parameters.
- returns none
Examples
Example 1
import sst
sst.enableAllStatisticsForAllComponents()
Example 2
import sst
params = { "rate" : "500ns" } # Report statistics every 500ns
sst.enableAllStatisticsForAllComponents(params)
Import
import sst