Change Log

Unreleased

-

[1.0.1] - 2020-06-23

This is a bug fix release.

  • adopt py-cpuinfo 6.0.0 and pin version to avoid issues with changing APIs (#138) Thanks to @tobega for the fix!

1.0.0 Foundations - 2020-05-02

This is the first official release of ReBench as a "feature-complete" product. Feature-complete here means, it is a tried and tested tool for benchmark execution. It is highly configurable, documented, and successfully used.

This 1.0 release does not signify any new major features, but instead marks a point where ReBench has been stable and relieable for a long time.

ReBench is designed to

  • enable reproduction of experiments;
  • document all benchmark parameters;
  • provide a flexible execution model, with support for interrupting and continuing benchmarking;
  • enable the definition of complex sets of comparisons and their flexible execution;
  • report results to continuous performance monitoring systems, e.g., Codespeed or ReBenchDB;
  • provide basic support for building/compiling benchmarks/experiments on demand;
  • be extensible to parse output of custom benchmark harnesses.

ReBench isn't

  • a framework for microbenchmarks. Instead, it relies on existing harnesses and can be extended to parse their output.
  • a performance analysis tool. It is meant to execute experiments and record the corresponding measurements.
  • a data analysis tool. It provides only a bare minimum of statistics, but has an easily parseable data format that can be processed, e.g., with R.

To use ReBench, install it with Python's pip:

pip install rebench

Acknowledgements

ReBench has been used by a number of people over the years, and their feedback and contributions made it what it is today. Not all of these contributions are recorded, but I'd still like to thank everyone, from the annoymous reviewer of artifacts, to the students who had to wade through bugs and missing documentation. Thank you!

Changes Since 1.0rc2

  • moved CI to use GitHub Actions (#134)
  • added testing of Python 3.7 (#121) and ruamel.yaml (#123)
  • ensure config is YAML 1.2 compliant (#123)
  • added support for ReBenchDB (#129, #130)

  • fixed issues with error reporting (#128)

  • fixed handling of input size configuration (#117)

1.0rc2 - 2019-06-09

  • added --setup-only option, to run one benchmark for each setup (#110, #115)
  • added ignore_timeout setting to accept known timeouts without error (#118)
  • added retries_after_failure setting (#107, #108)

  • fixed data loading, which ignored warmup setting (#111, #116)

  • fixed how settings are inherited for follow documentation (#112, #113)
  • fixed message for consecutive failures (#109)
  • fixed some reporting issues (#106)

1.0rc1 - 2018-08-02

  • made user interface more consistent and concise (#83, #85, #92, #101, #102)
  • added concept of iterations/invocations (#82, #87)
  • added executor and suite name as command variables (#95, #101)
  • added and improved support for building suites before execution (#59, #78, #84, #96)
  • revised configuration format to me more consistent and add schema (#74, #82, #66, #94, #101)
  • fixed memory usage, avoid running out of memory for large experiments (#103)
  • added support to verify parameter and config file (#104)
  • added documentation (#66, #101)
  • use PyLint (#79)

0.10.1 - 2018-06-08

  • fixed experiment filters and reporting on codespeed submission errors (#77)

0.10.0 - 2018-06-08

  • restructured command-line options in help, and use argparse (#73)
  • added support for Python 3 and PyPy (#65)
  • added support for extra criteria (things beside run time) (#64)
  • added support for path names in ReBenchLog benchmark names

0.9.1 - 2017-12-21

  • fixed time-left reporting of invalid times (#60)
  • take the number of data points per run into account for estimated time left (#62)
  • obtain process output on timeout to enable results of partial runs
  • fixed incompatibility with latest setuptools

0.9.0 - 2017-04-23

  • added support for building VMs before execution (#58)
  • added support for using binaries on system's path, path does not need to be provided for VM anymore (#57)

0.8.0 - 2016-06-25

  • added support for rerun experiments, see -r option (#50) This option will drop existing data for the selected experiment from the data file, and then execute them normally.
  • added support for filtering VM's and suites/benchmarks on CLI (#50)
  • directly output a programs stdout/stderr in verbose mode -v (#52)

  • fixed CLI reporting showing multiple summaries (#30)

  • fixed problem with quick termination (#51)

  • removed reporting to IRC, was never made to work properly

  • removed support for displaying confidence interval proper statistical evaluation needs to be done externally to ReBench
  • removed old support for Caliper output

0.7.5 - 2016-06-11

  • indicate failed runs as return code (#49)
  • added keep-alive message every 10min
  • changed debug output to show only last 20 data points
  • fixed setup.py install, remove non-existing package
  • started change log

Untracked Releases