.build();
RunResult result = new Runner(opt).runSingle();
Result uncompressedBytes = result.getSecondaryResults().get("getUncompressedBytes");
Statistics stats = uncompressedBytes.getStatistics();
System.out.printf(" %-14s %10s ± %10s (%5.2f%%) (N = %d, \u03B1 = 99.9%%)\n",
getBenchmarkName(benchmark),
Util.toHumanReadableSpeed((long) stats.getMean()),
Util.toHumanReadableSpeed((long) stats.getMeanErrorAt(0.999)),
stats.getMeanErrorAt(0.999) * 100 / stats.getMean(),
stats.getN());
}
System.out.println();
}
}