start method

Future<void> start()

Implementation

Future<void> start() async {
  if (benches.isEmpty) {
    debugPrint('please register bench.');
    return;
  }

  for (var bench in benches) {
    bench.setOption(option);
  }

  await measure();
  await sort();

  await printResult();

  debugPrint('');
}