Ian Zerny | dcb172e | 2022-02-22 15:36:45 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 2 | # Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file |
| 3 | # for details. All rights reserved. Use of this source code is governed by a |
| 4 | # BSD-style license that can be found in the LICENSE file. |
| 5 | |
| 6 | # Script for running kotlin based benchmarks |
| 7 | |
| 8 | import optparse |
| 9 | import os |
| 10 | import subprocess |
| 11 | import sys |
| 12 | import toolhelper |
| 13 | import utils |
| 14 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 15 | BENCHMARK_ROOT = os.path.join(utils.REPO_ROOT, 'third_party', 'benchmarks', |
| 16 | 'kotlin-benches') |
| 17 | |
| 18 | BENCHMARK_PATTERN = '{benchmark}/kotlin/perf/build/libs/perf-1.0-BENCH.jar' |
| 19 | BENCHMARK_MAIN_CLASS = 'com.android.kt.bms.cli.Runner' |
| 20 | ART = os.path.join(utils.TOOLS_DIR, 'linux', 'art', 'bin', 'art') |
| 21 | |
| 22 | PROGUARD_CONF = """ |
| 23 | # From Android rules |
| 24 | -keepclasseswithmembers public class * { |
| 25 | public static void main(java.lang.String[]); |
| 26 | } |
| 27 | # Disable obfuscation to only focus on shrinking |
| 28 | -dontobfuscate |
| 29 | # Once we're ready for optimization, we might want to relax access modifiers. |
| 30 | -allowaccessmodification |
| 31 | """ |
| 32 | |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 33 | DEVICE_TEMP = '/data/local/temp/bench' |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 34 | |
| 35 | |
| 36 | def parse_options(): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 37 | result = optparse.OptionParser() |
| 38 | result.add_option('--api', |
| 39 | help='Android api level', |
| 40 | default='26', |
| 41 | choices=['21', '22', '23', '24', '25', '26']) |
| 42 | result.add_option('--benchmark', |
| 43 | help='The benchmark to run', |
| 44 | default='rgx', |
| 45 | choices=['rgx', 'deltablue', 'sta', 'empty']) |
| 46 | result.add_option('--use-device', |
| 47 | help='Run the benchmark on an attaced device', |
| 48 | default=False, |
| 49 | action='store_true') |
| 50 | return result.parse_args() |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 51 | |
| 52 | |
| 53 | def get_jar_for_benchmark(benchmark): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 54 | return os.path.join(BENCHMARK_ROOT, |
| 55 | BENCHMARK_PATTERN.format(benchmark=benchmark)) |
| 56 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 57 | |
| 58 | def run_art(dex): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 59 | command = ['bash', ART, '-cp', dex, BENCHMARK_MAIN_CLASS] |
| 60 | utils.PrintCmd(command) |
| 61 | benchmark_output = subprocess.check_output(command) |
| 62 | return get_result(benchmark_output) |
| 63 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 64 | |
| 65 | def adb(args): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 66 | command = ['adb'] + args |
| 67 | utils.PrintCmd(command) |
| 68 | return subprocess.check_output(['adb'] + args) |
| 69 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 70 | |
| 71 | def get_result(output): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 72 | # There is a lot of debug output, with the actual results being in the line with: |
| 73 | # RESULTS,KtBench,KtBench,15719 |
| 74 | # structure. |
| 75 | for result in [s for s in output.splitlines() if s.startswith('RESULTS')]: |
| 76 | return s.split('RESULTS,KtBench,KtBench,')[1] |
| 77 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 78 | |
| 79 | def run_art_device(dex): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 80 | adb(['wait-for-device', 'root']) |
| 81 | device_dst = os.path.join(DEVICE_TEMP, os.path.basename(dex)) |
| 82 | adb(['push', dex, device_dst]) |
| 83 | benchmark_output = adb( |
| 84 | ['shell', 'dalvikvm', '-cp', device_dst, BENCHMARK_MAIN_CLASS]) |
| 85 | return get_result(benchmark_output) |
| 86 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 87 | |
| 88 | def Main(): |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 89 | (options, args) = parse_options() |
| 90 | with utils.TempDir() as temp: |
| 91 | dex_path = os.path.join(temp, "classes.jar") |
| 92 | proguard_conf = os.path.join(temp, 'proguard.conf') |
| 93 | with open(proguard_conf, 'w') as f: |
| 94 | f.write(PROGUARD_CONF) |
| 95 | benchmark_jar = get_jar_for_benchmark(options.benchmark) |
| 96 | r8_args = [ |
| 97 | '--lib', |
| 98 | utils.get_android_jar(26), # Only works with api 26 |
| 99 | '--output', |
| 100 | dex_path, |
| 101 | '--pg-conf', |
| 102 | proguard_conf, |
| 103 | '--min-api', |
| 104 | str(options.api), |
| 105 | benchmark_jar |
| 106 | ] |
| 107 | toolhelper.run('r8', r8_args, True) |
| 108 | if options.use_device: |
| 109 | result = run_art_device(dex_path) |
| 110 | else: |
| 111 | result = run_art(dex_path) |
| 112 | print('Kotlin_{}(RunTimeRaw): {} ms'.format(options.benchmark, result)) |
| 113 | |
Rico Wind | 9d70f61 | 2018-08-31 09:17:43 +0200 | [diff] [blame] | 114 | |
| 115 | if __name__ == '__main__': |
Christoffer Quist Adamsen | 2434a4d | 2023-10-16 11:29:03 +0200 | [diff] [blame] | 116 | sys.exit(Main()) |