Package org.openjdk.jmh.runner.options

Examples of org.openjdk.jmh.runner.options.Options


    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + MemoryCopyBenchmark.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here


    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + BenchmarkXxHash64.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here

    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + BenchmarkPageProcessor.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here

                .find(OutputFormatFactory.createFormatInstance(System.out, VerboseMode.SILENT), DecompressBenchmark.class.getName() + ".*", ImmutableList.<String>of());

        for (SnappyBench.TestData dataset : SnappyBench.TestData.values()) {
            System.out.printf("%-8s (size = %d)\n", dataset.name(), dataset.getContents().length);
            for (BenchmarkRecord benchmark : benchmarks) {
                Options opt = new OptionsBuilder()
                        .verbosity(VerboseMode.SILENT)
                        .include(benchmark.getUsername())
                        .jvmArgs("-Dtestdata=testdata/" + dataset.getFileName())
                        .build();

View Full Code Here

    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + BenchmarkSortedRangeSet.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here

    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + BenchmarkDenseHll.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here

    }

    public static void main(String[] args)
            throws RunnerException
    {
        Options options = new OptionsBuilder()
                .verbosity(VerboseMode.NORMAL)
                .include(".*" + BenchmarkSparseHll.class.getSimpleName() + ".*")
                .build();

        new Runner(options).run();
View Full Code Here

        submitTasks(blackhole, executor);
        awaitTermination(executor);
    }

    public static void main(String[] args) throws RunnerException {
        Options opt = new OptionsBuilder()
                .include(".*" + DefaultExecutorBench.class.getSimpleName() + ".*")
                .warmupIterations(5)
                .measurementIterations(5)
                .shouldDoGC(true)
                .forks(1)
View Full Code Here

            logger.trace("Get primary key {} from instance {} of class {}", propertyName, entity, canonicalName);
        }
    }

    public static void main(String[] args) throws RunnerException {
        Options opt = new OptionsBuilder()
                .include(".*" + LoggerBench.class.getSimpleName() + ".*")
                .warmupIterations(5)
                .measurementIterations(10)
                .forks(1)
                .build();
View Full Code Here

TOP

Related Classes of org.openjdk.jmh.runner.options.Options

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.