benchmark_harness

The official benchmark harness for Dart

BSD-3-CLAUSE License

Stars
92
Committers
23

Bot releases are visible (Hide)

benchmark_harness - v2.2.3 Latest Release

Published by whesse 6 months ago

  • Require Dart 3.2.

  • Add PerfBenchmarkBase class which runs the 'perf stat' command from linux-tools on a benchmark and reports metrics from the hardware performance counters and the iteration count, as well as the run time measurement reported by BenchmarkBase.

Full Changelog: https://github.com/dart-lang/benchmark_harness/compare/v2.2.2...v2.2.3

benchmark_harness - v2.2.2

Published by devoncarew over 1 year ago

  • Added package topics to the pubspec file.
  • Require Dart 2.19.
benchmark_harness - v2.2.1

Published by devoncarew over 1 year ago

  • Improve convergence speed of BenchmarkBase measuring algorithm by allowing some degree of measuring jitter.
benchmark_harness - 2.2.0

Published by mraleph over 2 years ago

  • Change measuring algorithm in BenchmarkBase to avoid calling stopwatch
    methods repeatedly in the measuring loop. This makes measurement work better
    for run methods which are small themselves.