| 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 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 all_score_lists.append([]) | 70 all_score_lists.append([]) |
| 71 all_score_lists[i].append(score) | 71 all_score_lists[i].append(score) |
| 72 all_scores = [] | 72 all_scores = [] |
| 73 for score_list in all_score_lists: | 73 for score_list in all_score_lists: |
| 74 all_scores.append(statistics.GeometricMean(score_list)) | 74 all_scores.append(statistics.GeometricMean(score_list)) |
| 75 results.AddSummaryValue(list_of_scalar_values.ListOfScalarValues( | 75 results.AddSummaryValue(list_of_scalar_values.ListOfScalarValues( |
| 76 None, 'Score', 'score', all_scores)) | 76 None, 'Score', 'score', all_scores)) |
| 77 | 77 |
| 78 | 78 |
| 79 @benchmark.Disabled('android') | 79 @benchmark.Disabled('android') |
| 80 @benchmark.Owner(emails=['bmeurer@chromium.org', 'mvstanton@chromium.org']) |
| 80 class Jetstream(perf_benchmark.PerfBenchmark): | 81 class Jetstream(perf_benchmark.PerfBenchmark): |
| 81 test = _JetstreamMeasurement | 82 test = _JetstreamMeasurement |
| 82 | 83 |
| 83 @classmethod | 84 @classmethod |
| 84 def Name(cls): | 85 def Name(cls): |
| 85 return 'jetstream' | 86 return 'jetstream' |
| 86 | 87 |
| 87 def CreateStorySet(self, options): | 88 def CreateStorySet(self, options): |
| 88 ps = story.StorySet( | 89 ps = story.StorySet( |
| 89 archive_data_file='../page_sets/data/jetstream.json', | 90 archive_data_file='../page_sets/data/jetstream.json', |
| 90 base_dir=os.path.dirname(os.path.abspath(__file__)), | 91 base_dir=os.path.dirname(os.path.abspath(__file__)), |
| 91 cloud_storage_bucket=story.INTERNAL_BUCKET) | 92 cloud_storage_bucket=story.INTERNAL_BUCKET) |
| 92 ps.AddStory(page_module.Page( | 93 ps.AddStory(page_module.Page( |
| 93 'http://browserbench.org/JetStream/', ps, ps.base_dir, | 94 'http://browserbench.org/JetStream/', ps, ps.base_dir, |
| 94 make_javascript_deterministic=False)) | 95 make_javascript_deterministic=False)) |
| 95 return ps | 96 return ps |
| OLD | NEW |