use of org.openjdk.jmh.runner.options.Options in project hive by apache.
the class MapJoinOneLongKeyBench method main.
// -----------------------------------------------------------------------------------------------
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(".*" + MapJoinOneLongKeyBench.class.getSimpleName() + ".*").build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project hive by apache.
the class VectorSelectOperatorBench method main.
/*
* ============================== HOW TO RUN THIS TEST: ====================================
*
* You can run this test:
*
* a) Via the command line:
* $ mvn clean install
* $ java -jar target/benchmarks.jar VectorSelectOperatorBench -prof perf -f 1 (Linux)
* $ java -jar target/benchmarks.jar VectorSelectOperatorBench -prof perfnorm -f 3 (Linux)
* $ java -jar target/benchmarks.jar VectorSelectOperatorBench -prof perfasm -f 1 (Linux)
* $ java -jar target/benchmarks.jar VectorSelectOperatorBench -prof gc -f 1 (allocation counting via gc)
*/
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(VectorSelectOperatorBench.class.getSimpleName()).addProfiler(LinuxPerfProfiler.class).addProfiler(LinuxPerfNormProfiler.class).addProfiler(LinuxPerfAsmProfiler.class).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project jersey by jersey.
the class JacksonBenchmark method main.
public static void main(final String[] args) throws Exception {
final Options opt = new OptionsBuilder().include(JacksonBenchmark.class.getSimpleName()).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project jersey by jersey.
the class LocatorBenchmark method main.
public static void main(final String[] args) throws Exception {
final Options opt = new OptionsBuilder().include(LocatorBenchmark.class.getSimpleName()).build();
new Runner(opt).run();
}
use of org.openjdk.jmh.runner.options.Options in project jersey by jersey.
the class HelloWorldBenchmark method main.
public static void main(final String[] args) throws Exception {
final Options opt = new OptionsBuilder().include(HelloWorldBenchmark.class.getSimpleName()).build();
new Runner(opt).run();
}
Aggregations