![]() |
Belle II Software light-2505-deimos
|
Public Member Functions | |
| __init__ (self, stats, categories) | |
| __getitem__ (self, item) | |
Static Public Member Functions | |
| get_dict (function, categories) | |
Public Attributes | |
| name = stats.name | |
| Name property. | |
| time_sum = self.get_dict(stats.time_sum, categories) | |
| Time sum property. | |
| time_mean = self.get_dict(stats.time_mean, categories) | |
| Time mean property. | |
| time_stddev = self.get_dict(stats.time_stddev, categories) | |
| Time std property. | |
| memory_sum = self.get_dict(stats.memory_sum, categories) | |
| Memory sum property. | |
| memory_mean = self.get_dict(stats.memory_mean, categories) | |
| Memory mean property. | |
| memory_stddev = self.get_dict(stats.memory_stddev, categories) | |
| Memory std property. | |
| calls = self.get_dict(stats.calls, categories) | |
| Calls property. | |
Dictionary list holding the module statistics (like the C++ class ModuleStatistics)
Definition at line 13 of file entities.py.
| __init__ | ( | self, | |
| stats, | |||
| categories ) |
Create a new module statistics entity.
Definition at line 19 of file entities.py.
| __getitem__ | ( | self, | |
| item ) |
Convenience function for the display.
Definition at line 46 of file entities.py.
|
static |
Call the function on each information in the categories and return a dict name -> function(value)
Definition at line 39 of file entities.py.
| calls = self.get_dict(stats.calls, categories) |
Calls property.
Definition at line 36 of file entities.py.
| memory_mean = self.get_dict(stats.memory_mean, categories) |
Memory mean property.
Definition at line 32 of file entities.py.
| memory_stddev = self.get_dict(stats.memory_stddev, categories) |
Memory std property.
Definition at line 34 of file entities.py.
| memory_sum = self.get_dict(stats.memory_sum, categories) |
Memory sum property.
Definition at line 30 of file entities.py.
| name = stats.name |
Name property.
Definition at line 22 of file entities.py.
| time_mean = self.get_dict(stats.time_mean, categories) |
Time mean property.
Definition at line 26 of file entities.py.
| time_stddev = self.get_dict(stats.time_stddev, categories) |
Time std property.
Definition at line 28 of file entities.py.
| time_sum = self.get_dict(stats.time_sum, categories) |
Time sum property.
Definition at line 24 of file entities.py.