< prev index next >

test/jdk/jdk/incubator/vector/Byte512VectorTests.java

Print this page
rev 55594 : tests and benchmark changes

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