use of org.openjdk.jmh.runner.options.Options 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.Options 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.Options 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();
}
use of org.openjdk.jmh.runner.options.Options in project presto by prestodb.
the class RegexpFunctionsBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).include(".*" + RegexpFunctionsBenchmark.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
use of org.openjdk.jmh.runner.options.Options in project presto by prestodb.
the class BenchmarkArraySubscript method main.
public static void main(String[] args) throws Throwable {
// assure the benchmarks are valid before running
BenchmarkData data = new BenchmarkData();
data.setup();
new BenchmarkArraySubscript().arraySubscript(data);
Options options = new OptionsBuilder().verbosity(VerboseMode.NORMAL).warmupMode(WarmupMode.INDI).include(".*" + BenchmarkArraySubscript.class.getSimpleName() + ".*").build();
new Runner(options).run();
}
Aggregations