2020-10-08 23:51:31 +03:00
|
|
|
#!/usr/bin/env python
|
2019-10-14 23:45:52 +03:00
|
|
|
|
|
|
|
"""This program shows `hyperfine` benchmark results as a histogram."""
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import json
|
2020-01-23 15:04:15 +03:00
|
|
|
import numpy as np
|
2019-10-14 23:45:52 +03:00
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description=__doc__)
|
|
|
|
parser.add_argument("file", help="JSON file with benchmark results")
|
|
|
|
parser.add_argument("--title", help="Plot title")
|
2020-11-17 11:00:20 +03:00
|
|
|
parser.add_argument(
|
|
|
|
"--labels", help="Comma-separated list of entries for the plot legend"
|
|
|
|
)
|
2020-04-02 19:59:21 +03:00
|
|
|
parser.add_argument("--bins", help="Number of bins (default: auto)")
|
|
|
|
parser.add_argument(
|
|
|
|
"--type", help="Type of histogram (*bar*, barstacked, step, stepfilled)"
|
|
|
|
)
|
2023-04-17 23:27:28 +03:00
|
|
|
parser.add_argument("-o", "--output", help="Save image to the given filename.")
|
2022-02-27 22:11:13 +03:00
|
|
|
parser.add_argument(
|
|
|
|
"--t-min", metavar="T", help="Minimum time to be displayed (seconds)"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--t-max", metavar="T", help="Maximum time to be displayed (seconds)"
|
|
|
|
)
|
2023-04-17 23:27:28 +03:00
|
|
|
parser.add_argument(
|
|
|
|
"--log-count",
|
|
|
|
help="Use a logarithmic y-axis for the event count",
|
|
|
|
action="store_true",
|
|
|
|
)
|
2021-02-16 10:02:11 +03:00
|
|
|
|
2019-10-14 23:45:52 +03:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
with open(args.file) as f:
|
|
|
|
results = json.load(f)["results"]
|
|
|
|
|
2020-11-17 11:00:20 +03:00
|
|
|
if args.labels:
|
|
|
|
labels = args.labels.split(",")
|
|
|
|
else:
|
|
|
|
labels = [b["command"] for b in results]
|
2019-10-14 23:45:52 +03:00
|
|
|
all_times = [b["times"] for b in results]
|
|
|
|
|
2022-02-27 22:11:13 +03:00
|
|
|
t_min = float(args.t_min) if args.t_min else np.min(list(map(np.min, all_times)))
|
|
|
|
t_max = float(args.t_max) if args.t_max else np.max(list(map(np.max, all_times)))
|
2020-04-02 19:32:42 +03:00
|
|
|
|
2020-04-02 19:59:21 +03:00
|
|
|
bins = int(args.bins) if args.bins else "auto"
|
|
|
|
histtype = args.type if args.type else "bar"
|
|
|
|
|
2020-04-01 10:35:06 +03:00
|
|
|
plt.hist(
|
2023-04-17 23:27:28 +03:00
|
|
|
all_times,
|
|
|
|
label=labels,
|
|
|
|
bins=bins,
|
|
|
|
histtype=histtype,
|
|
|
|
range=(t_min, t_max),
|
2020-04-01 10:35:06 +03:00
|
|
|
)
|
|
|
|
plt.legend(prop={"family": ["Source Code Pro", "Fira Mono", "Courier New"]})
|
2019-10-14 23:45:52 +03:00
|
|
|
|
|
|
|
plt.xlabel("Time [s]")
|
|
|
|
if args.title:
|
|
|
|
plt.title(args.title)
|
|
|
|
|
2023-04-17 23:27:28 +03:00
|
|
|
if args.log_count:
|
|
|
|
plt.yscale("log")
|
|
|
|
else:
|
|
|
|
plt.ylim(0, None)
|
|
|
|
|
2021-02-16 10:02:11 +03:00
|
|
|
if args.output:
|
|
|
|
plt.savefig(args.output)
|
2020-11-17 11:00:20 +03:00
|
|
|
else:
|
|
|
|
plt.show()
|