< prev index next >

test/jdk/jdk/incubator/vector/Int64VectorTests.java

Print this page
rev 55594 : tests and benchmark changes

*** 26,35 **** --- 26,36 ---- * @modules jdk.incubator.vector * @run testng/othervm -ea -esa Int64VectorTests */ import jdk.incubator.vector.Vector.Shape; + import jdk.incubator.vector.Vector.Species; import jdk.incubator.vector.Vector; import jdk.incubator.vector.IntVector; import org.testng.Assert;
*** 45,56 **** import java.util.stream.Stream; @Test public class Int64VectorTests extends AbstractVectorTest { ! static final IntVector.IntSpecies SPECIES = ! IntVector.species(Shape.S_64_BIT); static final int INVOC_COUNT = Integer.getInteger("jdk.incubator.vector.test.loop-iterations", 100); interface FUnOp { int apply(int a); --- 46,57 ---- import java.util.stream.Stream; @Test public class Int64VectorTests extends AbstractVectorTest { ! static final Species<Integer> SPECIES = ! IntVector.SPECIES_64; static final int INVOC_COUNT = Integer.getInteger("jdk.incubator.vector.test.loop-iterations", 100); interface FUnOp { int apply(int a);
< prev index next >