◆ __init__()
def webkitpy.benchmark_runner.benchmark_results.BenchmarkResults.__init__ |
( |
|
self, |
|
|
|
results |
|
) |
| |
◆ format()
def webkitpy.benchmark_runner.benchmark_results.BenchmarkResults.format |
( |
|
self, |
|
|
|
scale_unit = True |
|
) |
| |
◆ aggregators
dictionary webkitpy.benchmark_runner.benchmark_results.BenchmarkResults.aggregators |
|
static |
Initial value:= {
'Total': (
lambda values:
sum(values)),
'Arithmetic': (
lambda values:
sum(values) /
len(values)),
'Geometric': (
lambda values: math.exp(
sum(
map(math.log, values)) /
len(values))),
}
◆ metric_to_unit
dictionary webkitpy.benchmark_runner.benchmark_results.BenchmarkResults.metric_to_unit |
|
static |
Initial value:= {
'FrameRate': 'fps',
'Runs': '/s',
'Time': 'ms',
'Duration': 'ms',
'Malloc': 'B',
'Heap': 'B',
'Allocations': 'B',
'Score': 'pt',
}
◆ SI_prefixes
list webkitpy.benchmark_runner.benchmark_results.BenchmarkResults.SI_prefixes = ['n', 'u', 'm', '', 'K', 'M', 'G', 'T', 'P', 'E'] |
|
static |
The documentation for this class was generated from the following file: