Skip to content

Commit

Permalink
8333248: VectorGatherMaskFoldingTest.java failed when maximum vector …
Browse files Browse the repository at this point in the history
…bits is 64
  • Loading branch information
zifeihan committed May 30, 2024
1 parent 286cc16 commit cd53bab
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@

public class VectorGatherMaskFoldingTest {
// Species
private static final VectorSpecies<Long> L_SPECIES = LongVector.SPECIES_MAX;
private static final VectorSpecies<Integer> I_SPECIES = IntVector.SPECIES_MAX;
private static final VectorSpecies<Float> F_SPECIES = FloatVector.SPECIES_MAX;
private static final VectorSpecies<Double> D_SPECIES = DoubleVector.SPECIES_MAX;
private static final VectorSpecies<Long> L_SPECIES = LongVector.SPECIES_MAX.length() == 1 ? LongVector.SPECIES_128
: LongVector.SPECIES_MAX;
private static final VectorSpecies<Double> D_SPECIES = DoubleVector.SPECIES_MAX.length() == 1 ? DoubleVector.SPECIES_128
: DoubleVector.SPECIES_MAX;
// Vectors
private static final LongVector longVector;
private static final LongVector longVector2;
Expand Down

0 comments on commit cd53bab

Please sign in to comment.