< prev index next >

test/jdk/jdk/incubator/vector/ByteMaxVectorLoadStoreTests.java

Print this page
rev 55594 : tests and benchmark changes

*** 28,37 **** --- 28,38 ---- * ByteMaxVectorLoadStoreTests * */ 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;
*** 45,58 **** import java.util.List; import java.util.function.IntFunction; @Test public class ByteMaxVectorLoadStoreTests extends AbstractVectorTest { ! static final Shape S_Max_BIT = getMaxBit(); ! ! static final ByteVector.ByteSpecies SPECIES = ! ByteVector.species(S_Max_BIT); static final int INVOC_COUNT = Integer.getInteger("jdk.incubator.vector.test.loop-iterations", 10); static Shape getMaxBit() { return Shape.S_Max_BIT; --- 46,57 ---- import java.util.List; import java.util.function.IntFunction; @Test public class ByteMaxVectorLoadStoreTests extends AbstractVectorTest { ! static final Species<Byte> SPECIES = ! ByteVector.SPECIES_MAX; static final int INVOC_COUNT = Integer.getInteger("jdk.incubator.vector.test.loop-iterations", 10); static Shape getMaxBit() { return Shape.S_Max_BIT;
< prev index next >