use of org.openjdk.jmh.runner.options.OptionsBuilder in project zipkin by openzipkin.
the class MetricsBenchmarks method main.
// Convenience main entry-point
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + MetricsBenchmarks.class.getSimpleName() + ".*").threads(40).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkDecimalAggregation method main.
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkDecimalAggregation.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkResourceGroup method main.
public static void main(String[] args) throws Throwable {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkResourceGroup.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkBigIntOperators method main.
public static void main(String[] args) throws Throwable {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkBigIntOperators.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project presto by prestodb.
the class BenchmarkPagesIndexPageSorter method main.
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkPagesIndexPageSorter.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
Aggregations