view src/main/java/org/openjdk/gcbench/yield/ArrayIteration.java @ 57:1655f5729b5a

Yielding tests.
author shade
date Mon, 19 Dec 2016 18:40:11 +0100
parents
children 5b77fb55a8b6
line wrap: on
line source

package org.openjdk.gcbench.yield;

import org.openjdk.gcbench.tests.UnderPressureTest;
import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole;

import java.util.ArrayList;
import java.util.concurrent.TimeUnit;

@Warmup(iterations = 5, time = 1, timeUnit = TimeUnit.SECONDS)
@Measurement(iterations = 5, time = 1, timeUnit = TimeUnit.SECONDS)
@Fork(1)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.NANOSECONDS)
@Threads(Threads.MAX)
@State(Scope.Benchmark)
public class ArrayIteration extends UnderPressureTest {

    int[] arr;

    @Param({"100000"})
    int size;

    @Setup
    public void setup(Blackhole bh) {
        super.setup(bh);
        arr = new int[size];
    }

    @TearDown
    public void tearDown() throws InterruptedException {
        super.tearDown();
    }

    @Benchmark
    public int test() throws InterruptedException {
        int r = 0;
        for (int i : arr) {
            r += i;
        }
        return r;
    }

}