use of org.openjdk.jmh.runner.options.OptionsBuilder in project kafka by apache.
the class LRUCacheBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(LRUCacheBenchmark.class.getSimpleName()).forks(2).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project hive by apache.
the class ColumnarStorageBench method main.
public static void main(String[] args) throws Exception {
Options opt = new OptionsBuilder().include(ColumnarStorageBench.class.getSimpleName()).warmupIterations(1).measurementIterations(1).forks(1).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project hive by apache.
the class VectorizedArithmeticBench method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + VectorizedArithmeticBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project hive by apache.
the class VectorizedComparisonBench method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + VectorizedComparisonBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.OptionsBuilder in project hive by apache.
the class VectorizedLikeBench method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + VectorizedLikeBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
Aggregations