use of org.openjdk.jmh.runner.options.Options in project hive by apache.
the class VectorizedLogicBench method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + VectorizedLogicBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project crate by crate.
the class PreExecutionBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(PreExecutionBenchmark.class.getSimpleName()).addProfiler(GCProfiler.class).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project cglib by cglib.
the class BeansBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(BeansBenchmark.class.getSimpleName()).addProfiler(GCProfiler.class).detectJvmArgs().build();
new Runner(opt).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 druid by druid-io.
the class TimeParseBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(TimeParseBenchmark.class.getSimpleName()).warmupIterations(1).measurementIterations(10).forks(1).build();
new Runner(opt).run();
}
Aggregations