Merge "perfboot: significant figures + units for summary" am: fe8dec0447
Original change: https://android-review.googlesource.com/c/platform/system/core/+/1386892 Change-Id: I0c3c4c09a23c9a9dd041b0d4d822d885bf1047b0
This commit is contained in:
commit
b76d1b8873
1 changed files with 3 additions and 3 deletions
|
|
@ -349,9 +349,9 @@ def print_summary(record_list, end_tag):
|
|||
# Filter out invalid data.
|
||||
end_times = [get_last_value(record, end_tag) for record in record_list
|
||||
if get_last_value(record, end_tag) != 0]
|
||||
print 'mean: ', mean(end_times)
|
||||
print 'median:', median(end_times)
|
||||
print 'standard deviation:', stddev(end_times)
|
||||
print 'mean:', int(round(mean(end_times))), 'ms'
|
||||
print 'median:', int(round(median(end_times))), 'ms'
|
||||
print 'standard deviation:', int(round(stddev(end_times))), 'ms'
|
||||
|
||||
|
||||
def do_iteration(device, interval_adjuster, event_tags_re, end_tag):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue