Skip to content

Releases: dart-lang/benchmark_harness

v2.2.3

19 Apr 10:55
aa139fd
Compare
Choose a tag to compare
  • 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: v2.2.2...v2.2.3

v2.2.2

08 May 23:54
f81b042
Compare
Choose a tag to compare
  • Added package topics to the pubspec file.
  • Require Dart 2.19.

v2.2.1

02 Feb 16:08
b1efcf7
Compare
Choose a tag to compare
  • Improve convergence speed of BenchmarkBase measuring algorithm by allowing some degree of measuring jitter.

2.2.0

06 Jul 10:46
f4ed0fc
Compare
Choose a tag to compare
  • 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.