mirror of
https://github.com/google/benchmark.git
synced 2024-11-29 00:34:42 +00:00
5eac66249c
This patch adds the compare_bench.py utility which can be used to compare the result of benchmarks. The program is invoked like: $ compare_bench.py <old-benchmark> <new-benchmark> [benchmark options]... Where <old-benchmark> and <new-benchmark> either specify a benchmark executable file, or a JSON output file. The type of the input file is automatically detected. If a benchmark executable is specified then the benchmark is run to obtain the results. Otherwise the results are simply loaded from the output file.
9 lines
194 B
Python
9 lines
194 B
Python
"""Google Benchmark tooling"""
|
|
|
|
__author__ = 'Eric Fiselier'
|
|
__email__ = 'eric@efcs.ca'
|
|
__versioninfo__ = (0, 5, 0)
|
|
__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
|
|
|
|
__all__ = []
|