OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Runs Apple's JetStream benchmark. | 5 """Runs Apple's JetStream benchmark. |
6 | 6 |
7 JetStream combines a variety of JavaScript benchmarks, covering a variety of | 7 JetStream combines a variety of JavaScript benchmarks, covering a variety of |
8 advanced workloads and programming techniques, and reports a single score that | 8 advanced workloads and programming techniques, and reports a single score that |
9 balances them using geometric mean. | 9 balances them using geometric mean. |
10 | 10 |
11 Each benchmark measures a distinct workload, and no single optimization | 11 Each benchmark measures a distinct workload, and no single optimization |
12 technique is sufficient to speed up all benchmarks. Latency tests measure that | 12 technique is sufficient to speed up all benchmarks. Latency tests measure that |
13 a web application can start up quickly, ramp up to peak performance quickly, | 13 a web application can start up quickly, ramp up to peak performance quickly, |
14 and run smoothly without interruptions. Throughput tests measure the sustained | 14 and run smoothly without interruptions. Throughput tests measure the sustained |
15 peak performance of a web application, ignoring ramp-up time and spikes in | 15 peak performance of a web application, ignoring ramp-up time and spikes in |
16 smoothness. Some benchmarks demonstrate tradeoffs, and aggressive or | 16 smoothness. Some benchmarks demonstrate tradeoffs, and aggressive or |
17 specialized optimization for one benchmark might make another benchmark slower. | 17 specialized optimization for one benchmark might make another benchmark slower. |
18 """ | 18 """ |
19 | 19 |
20 import json | 20 import json |
21 import os | 21 import os |
22 | 22 |
23 from telemetry import benchmark | 23 from telemetry import benchmark |
24 from telemetry.page import page_set | 24 from telemetry.page import page_set |
25 from telemetry.page import page_test | 25 from telemetry.page import page_test |
26 from telemetry.util import statistics | 26 from telemetry.util import statistics |
27 from telemetry.value import list_of_scalar_values | 27 from telemetry.value import list_of_scalar_values |
28 from telemetry.value import scalar | |
29 | 28 |
30 | 29 |
31 class _JetstreamMeasurement(page_test.PageTest): | 30 class _JetstreamMeasurement(page_test.PageTest): |
32 def __init__(self): | 31 def __init__(self): |
33 super(_JetstreamMeasurement, self).__init__() | 32 super(_JetstreamMeasurement, self).__init__() |
34 | 33 |
35 def WillNavigateToPage(self, page, tab): | 34 def WillNavigateToPage(self, page, tab): |
36 page.script_to_evaluate_on_commit = """ | 35 page.script_to_evaluate_on_commit = """ |
37 var __results = []; | 36 var __results = []; |
38 var __real_log = window.console.log; | 37 var __real_log = window.console.log; |
(...skipping 13 matching lines...) Expand all Loading... |
52 })(); | 51 })(); |
53 """ | 52 """ |
54 | 53 |
55 tab.WaitForDocumentReadyStateToBeComplete() | 54 tab.WaitForDocumentReadyStateToBeComplete() |
56 tab.EvaluateJavaScript('JetStream.start()') | 55 tab.EvaluateJavaScript('JetStream.start()') |
57 tab.WaitForJavaScriptExpression(get_results_js, 600) | 56 tab.WaitForJavaScriptExpression(get_results_js, 600) |
58 | 57 |
59 result = tab.EvaluateJavaScript(get_results_js) | 58 result = tab.EvaluateJavaScript(get_results_js) |
60 result = json.loads(result.partition(': ')[2]) | 59 result = json.loads(result.partition(': ')[2]) |
61 | 60 |
62 all_scores = [] | 61 all_score_lists = [] |
63 for k, v in result.iteritems(): | 62 for k, v in result.iteritems(): |
64 results.AddValue(list_of_scalar_values.ListOfScalarValues( | 63 results.AddValue(list_of_scalar_values.ListOfScalarValues( |
65 results.current_page, k.replace('.', '_'), 'score', v['result'], | 64 results.current_page, k.replace('.', '_'), 'score', v['result'], |
66 important=False)) | 65 important=False)) |
67 # Collect all test scores to compute geometric mean. | 66 # Collect all test scores to compute geometric mean. |
68 all_scores.extend(v['result']) | 67 for i, score in enumerate(v['result']): |
69 total = statistics.GeometricMean(all_scores) | 68 if len(all_score_lists) <= i: |
70 results.AddSummaryValue( | 69 all_score_lists.append([]) |
71 scalar.ScalarValue(None, 'Score', 'score', total)) | 70 all_score_lists[i].append(score) |
| 71 all_scores = [] |
| 72 for score_list in all_score_lists: |
| 73 all_scores.append(statistics.GeometricMean(score_list)) |
| 74 results.AddSummaryValue(list_of_scalar_values.ListOfScalarValues( |
| 75 None, 'Score', 'score', all_scores)) |
72 | 76 |
73 | 77 |
74 @benchmark.Disabled('android', 'xp') # crbug.com/381742 | 78 @benchmark.Disabled('android', 'xp') # crbug.com/381742 |
75 class Jetstream(benchmark.Benchmark): | 79 class Jetstream(benchmark.Benchmark): |
76 test = _JetstreamMeasurement | 80 test = _JetstreamMeasurement |
77 | 81 |
78 def CreatePageSet(self, options): | 82 def CreatePageSet(self, options): |
79 ps = page_set.PageSet( | 83 ps = page_set.PageSet( |
80 archive_data_file='../page_sets/data/jetstream.json', | 84 archive_data_file='../page_sets/data/jetstream.json', |
81 make_javascript_deterministic=False, | 85 make_javascript_deterministic=False, |
82 file_path=os.path.abspath(__file__)) | 86 file_path=os.path.abspath(__file__)) |
83 ps.AddPageWithDefaultRunNavigate('http://browserbench.org/JetStream/') | 87 ps.AddPageWithDefaultRunNavigate('http://browserbench.org/JetStream/') |
84 return ps | 88 return ps |
OLD | NEW |