OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright 2015 the V8 project authors. All rights reserved. | 2 # Copyright 2015 the V8 project authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Script to re-generate SimdJs.json from a SimdJs.json.template. | 6 # Script to re-generate SimdJs.json from a SimdJs.json.template. |
7 | 7 |
8 import json | 8 import json |
9 import os | 9 import os |
10 import re | 10 import re |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 run_js = open( | 23 run_js = open( |
24 os.path.join(SCRIPT_DIR, 'data', 'src', 'benchmarks', 'run.js')).read() | 24 os.path.join(SCRIPT_DIR, 'data', 'src', 'benchmarks', 'run.js')).read() |
25 tests = re.findall("load \\(\\'([^']+)[.]js\\'\\)", run_js) | 25 tests = re.findall("load \\(\\'([^']+)[.]js\\'\\)", run_js) |
26 tests = [t for t in tests if t not in SKIP_FILES] | 26 tests = [t for t in tests if t not in SKIP_FILES] |
27 | 27 |
28 output = { | 28 output = { |
29 'name': 'SIMDJS', | 29 'name': 'SIMDJS', |
30 'run_count': 5, | 30 'run_count': 5, |
31 'run_count_arm': 3, | 31 'run_count_arm': 3, |
32 'run_count_android_arm': 3, | 32 'run_count_android_arm': 1, |
33 'run_count_android_arm64': 3, | 33 'run_count_android_arm64': 3, |
34 'timeout_arm': 120, | 34 'timeout_arm': 120, |
35 'timeout_android_arm': 120, | 35 'timeout_android_arm': 180, |
36 'timeout_android_arm64': 120, | 36 'timeout_android_arm64': 120, |
37 'units': 'ms', | 37 'units': 'ms', |
38 'resources': [ | 38 'resources': [ |
39 'test/simdjs/data/src/benchmarks/base.js', | 39 'test/simdjs/data/src/benchmarks/base.js', |
40 'test/simdjs/data/src/ecmascript_simd.js', | 40 'test/simdjs/data/src/ecmascript_simd.js', |
41 'test/simdjs/harness-adapt.js', | 41 'test/simdjs/harness-adapt.js', |
42 'test/simdjs/harness-finish.js' | 42 'test/simdjs/harness-finish.js' |
43 ] + ['test/simdjs/data/src/benchmarks/%s.js' % t for t in tests], | 43 ] + ['test/simdjs/data/src/benchmarks/%s.js' % t for t in tests], |
44 'flags': ['--harmony-object', 'test/simdjs/harness-adapt.js'], | 44 'flags': ['--harmony-object', 'test/simdjs/harness-adapt.js'], |
45 'path': ['../../'], | 45 'path': ['../../'], |
46 'tests': [ | 46 'tests': [ |
47 { | 47 { |
48 'name': test, | 48 'name': test, |
49 'main': 'test/simdjs/harness-finish.js', | 49 'main': 'test/simdjs/harness-finish.js', |
50 'flags': ['test/simdjs/data/src/benchmarks/%s.js' % test], | 50 'flags': ['test/simdjs/data/src/benchmarks/%s.js' % test], |
51 'results_regexp': '%s\\([ ]*([0-9.]+)(ms)?\\)', | 51 'results_regexp': '%s\\([ ]*([0-9.]+)(ms)?\\)', |
52 'tests': [ | 52 'tests': [ |
53 {'name': 'SIMD'}, | 53 {'name': 'SIMD'}, |
54 {'name': 'Non-SIMD'}, | 54 {'name': 'Non-SIMD'}, |
55 {'name': 'Speedup', 'units': 'score'}, | |
56 {'name': 'Iterations', 'units': 'count'} | |
57 ] | 55 ] |
58 } | 56 } |
59 for test in tests], | 57 for test in tests], |
60 } | 58 } |
61 | 59 |
62 with open(os.path.join(SCRIPT_DIR, 'SimdJs.json'), 'w') as fh: | 60 with open(os.path.join(SCRIPT_DIR, 'SimdJs.json'), 'w') as fh: |
63 fh.write(json.dumps(output, separators=(',',': '), indent=2, sort_keys=True)) | 61 fh.write(json.dumps(output, separators=(',',': '), indent=2, sort_keys=True)) |
OLD | NEW |