use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkMapSubscript method main.
public static void main(String[] args) throws Throwable {
// assure the benchmarks are valid before running
BenchmarkData data = new BenchmarkData();
data.setup();
new BenchmarkMapSubscript().mapSubscript(data);
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).warmupMode(WarmupMode.INDI).include(".*" + BenchmarkMapSubscript.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkRoundFunction method main.
public static void main(String[] args) throws Throwable {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkRoundFunction.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkArrayFilter method main.
public static void main(String[] args) throws Throwable {
// assure the benchmarks are valid before running
BenchmarkData data = new BenchmarkData();
data.setup();
new BenchmarkArrayFilter().benchmark(data);
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkArrayFilter.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkArrayHashCodeOperator method main.
public static void main(String[] args) throws Throwable {
// assure the benchmarks are valid before running
BenchmarkData data = new BenchmarkData();
data.setup();
new BenchmarkArrayHashCodeOperator().arrayHashCode(data);
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).warmupMode(WarmupMode.BULK).include(".*" + BenchmarkArrayHashCodeOperator.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkArraySort method main.
public static void main(String[] args) throws Throwable {
// assure the benchmarks are valid before running
BenchmarkData data = new BenchmarkData();
data.setup();
new BenchmarkArraySort().arraySort(data);
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkArraySort.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
Aggregations