use of org.openjdk.jmh.runner.options.Options in project sulky by huxi.
the class ULIDBenchmark method main.
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder().include(ULIDBenchmark.class.getSimpleName()).warmupIterations(5).measurementIterations(5).forks(1).build();
new Runner(opt).run();
}
Aggregations