use of org.openjdk.jmh.runner.options.Options in project presto by prestodb.
the class BenchmarkPageProcessor method main.
public static void main(String[] args) throws RunnerException {
new BenchmarkPageProcessor().setup();
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkPageProcessor.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.Options in project presto by prestodb.
the class InCodeGeneratorBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + InCodeGeneratorBenchmark.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.Options in project presto by prestodb.
the class BenchmarkDecimalOperators method main.
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + BenchmarkDecimalOperators.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.Options in project metrics by dropwizard.
the class MeterBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + MeterBenchmark.class.getSimpleName() + ".*").warmupIterations(3).measurementIterations(5).threads(4).forks(1).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project hive by apache.
the class MapJoinMultiKeyBench method main.
// -----------------------------------------------------------------------------------------------
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + MapJoinMultiKeyBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
Aggregations