blob: 54ccd67496a74cf7c839bceec1324d8c8696e373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
import json
import sys
def bench_data_as_dict(data):
return {d["fullname"]: d["stats"] for d in data["benchmarks"]}
def main(base_bench_path, pr_bench_path):
with open(base_bench_path) as f:
base_bench_data = bench_data_as_dict(json.load(f))
with open(pr_bench_path) as f:
pr_bench_data = bench_data_as_dict(json.load(f))
print("| Benchmark | Base | PR | Delta |")
print("| --------- | ---- | -- | ----- |")
for bench_name in sorted(base_bench_data):
# TODO: use better statistics than just comparing medians
base_result = base_bench_data[bench_name]["median"]
pr_result = pr_bench_data[bench_name]["median"]
if base_result == pr_result:
# PR and base are identical
delta = "--"
elif base_result > pr_result:
# PR is faster than base
delta = f"{100 - round(100 * pr_result / base_result)}% faster"
else:
delta = f"{100 - round(100 * base_result / pr_result)}% slower"
print(
f"| `{bench_name}` | {round(base_result * 1000 * 1000 * 1000, 2)} "
f"ns | {round(pr_result * 1000 * 1000 * 1000, 2)} ns | {delta} |"
)
if __name__ == "__main__":
main(*sys.argv[1:])
|