Package org.openjdk.jmh.logic.results

Examples of org.openjdk.jmh.logic.results.Result


                        .include(benchmark.getUsername())
                        .jvmArgs("-Dtestdata=testdata/" + dataset.getFileName())
                        .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(),
View Full Code Here

TOP

Related Classes of org.openjdk.jmh.logic.results.Result

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.