mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-02 19:20:19 +00:00
6731 lines
257 KiB
Java
6731 lines
257 KiB
Java
/*
|
|
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/*
|
|
* @test
|
|
* @key randomness
|
|
*
|
|
* @library /test/lib
|
|
* @modules jdk.incubator.vector
|
|
* @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Int128VectorTests
|
|
*/
|
|
|
|
// -- This file was mechanically generated: Do not edit! -- //
|
|
|
|
import jdk.incubator.vector.VectorShape;
|
|
import jdk.incubator.vector.VectorSpecies;
|
|
import jdk.incubator.vector.VectorShuffle;
|
|
import jdk.incubator.vector.VectorMask;
|
|
import jdk.incubator.vector.VectorOperators;
|
|
import jdk.incubator.vector.Vector;
|
|
import jdk.incubator.vector.VectorMath;
|
|
|
|
import jdk.incubator.vector.IntVector;
|
|
|
|
import org.testng.Assert;
|
|
import org.testng.annotations.DataProvider;
|
|
import org.testng.annotations.Test;
|
|
|
|
import java.lang.Integer;
|
|
import java.util.List;
|
|
import java.util.Arrays;
|
|
import java.util.function.BiFunction;
|
|
import java.util.function.IntFunction;
|
|
import java.util.Objects;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
@Test
|
|
public class Int128VectorTests extends AbstractVectorTest {
|
|
|
|
static final VectorSpecies<Integer> SPECIES =
|
|
IntVector.SPECIES_128;
|
|
|
|
static final int INVOC_COUNT = Integer.getInteger("jdk.incubator.vector.test.loop-iterations", 100);
|
|
|
|
|
|
private static final int CONST_SHIFT = Integer.SIZE / 2;
|
|
|
|
static final int BUFFER_REPS = Integer.getInteger("jdk.incubator.vector.test.buffer-vectors", 25000 / 128);
|
|
|
|
static void assertArraysStrictlyEquals(int[] r, int[] a) {
|
|
for (int i = 0; i < a.length; i++) {
|
|
if (r[i] != a[i]) {
|
|
Assert.fail("at index #" + i + ", expected = " + a[i] + ", actual = " + r[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
interface FUnOp {
|
|
int apply(int a);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, FUnOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i]), "at index #" + i + ", input = " + a[i]);
|
|
}
|
|
}
|
|
|
|
interface FUnArrayOp {
|
|
int[] apply(int a);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, FUnArrayOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a[i]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a[i]);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, boolean[] mask, FUnOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], mask[i % SPECIES.length()] ? f.apply(a[i]) : a[i]);
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], mask[i % SPECIES.length()] ? f.apply(a[i]) : a[i], "at index #" + i + ", input = " + a[i] + ", mask = " + mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
interface FReductionOp {
|
|
int apply(int[] a, int idx);
|
|
}
|
|
|
|
interface FReductionAllOp {
|
|
int apply(int[] a);
|
|
}
|
|
|
|
static void assertReductionArraysEquals(int[] r, int rc, int[] a,
|
|
FReductionOp f, FReductionAllOp fa) {
|
|
int i = 0;
|
|
try {
|
|
Assert.assertEquals(rc, fa.apply(a));
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(rc, fa.apply(a), "Final result is incorrect!");
|
|
Assert.assertEquals(r[i], f.apply(a, i), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FReductionMaskedOp {
|
|
int apply(int[] a, int idx, boolean[] mask);
|
|
}
|
|
|
|
interface FReductionAllMaskedOp {
|
|
int apply(int[] a, boolean[] mask);
|
|
}
|
|
|
|
static void assertReductionArraysEqualsMasked(int[] r, int rc, int[] a, boolean[] mask,
|
|
FReductionMaskedOp f, FReductionAllMaskedOp fa) {
|
|
int i = 0;
|
|
try {
|
|
Assert.assertEquals(rc, fa.apply(a, mask));
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i, mask));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(rc, fa.apply(a, mask), "Final result is incorrect!");
|
|
Assert.assertEquals(r[i], f.apply(a, i, mask), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FReductionOpLong {
|
|
long apply(int[] a, int idx);
|
|
}
|
|
|
|
interface FReductionAllOpLong {
|
|
long apply(int[] a);
|
|
}
|
|
|
|
static void assertReductionLongArraysEquals(long[] r, long rc, int[] a,
|
|
FReductionOpLong f, FReductionAllOpLong fa) {
|
|
int i = 0;
|
|
try {
|
|
Assert.assertEquals(rc, fa.apply(a));
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(rc, fa.apply(a), "Final result is incorrect!");
|
|
Assert.assertEquals(r[i], f.apply(a, i), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FReductionMaskedOpLong {
|
|
long apply(int[] a, int idx, boolean[] mask);
|
|
}
|
|
|
|
interface FReductionAllMaskedOpLong {
|
|
long apply(int[] a, boolean[] mask);
|
|
}
|
|
|
|
static void assertReductionLongArraysEqualsMasked(long[] r, long rc, int[] a, boolean[] mask,
|
|
FReductionMaskedOpLong f, FReductionAllMaskedOpLong fa) {
|
|
int i = 0;
|
|
try {
|
|
Assert.assertEquals(rc, fa.apply(a, mask));
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i, mask));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(rc, fa.apply(a, mask), "Final result is incorrect!");
|
|
Assert.assertEquals(r[i], f.apply(a, i, mask), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FBoolReductionOp {
|
|
boolean apply(boolean[] a, int idx);
|
|
}
|
|
|
|
static void assertReductionBoolArraysEquals(boolean[] r, boolean[] a, FBoolReductionOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a, i), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FMaskReductionOp {
|
|
int apply(boolean[] a, int idx);
|
|
}
|
|
|
|
static void assertMaskReductionArraysEquals(int[] r, boolean[] a, FMaskReductionOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(r[i], f.apply(a, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a, i), "at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertRearrangeArraysEquals(int[] r, int[] a, int[] order, int vector_len) {
|
|
int i = 0, j = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
for (j = 0; j < vector_len; j++) {
|
|
Assert.assertEquals(r[i+j], a[i+order[i+j]]);
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + j;
|
|
Assert.assertEquals(r[i+j], a[i+order[i+j]], "at index #" + idx + ", input = " + a[i+order[i+j]]);
|
|
}
|
|
}
|
|
|
|
static void assertcompressArraysEquals(int[] r, int[] a, boolean[] m, int vector_len) {
|
|
int i = 0, j = 0, k = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
k = 0;
|
|
for (j = 0; j < vector_len; j++) {
|
|
if (m[(i + j) % SPECIES.length()]) {
|
|
Assert.assertEquals(r[i + k], a[i + j]);
|
|
k++;
|
|
}
|
|
}
|
|
for (; k < vector_len; k++) {
|
|
Assert.assertEquals(r[i + k], (int)0);
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + k;
|
|
if (m[(i + j) % SPECIES.length()]) {
|
|
Assert.assertEquals(r[idx], a[i + j], "at index #" + idx);
|
|
} else {
|
|
Assert.assertEquals(r[idx], (int)0, "at index #" + idx);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void assertexpandArraysEquals(int[] r, int[] a, boolean[] m, int vector_len) {
|
|
int i = 0, j = 0, k = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
k = 0;
|
|
for (j = 0; j < vector_len; j++) {
|
|
if (m[(i + j) % SPECIES.length()]) {
|
|
Assert.assertEquals(r[i + j], a[i + k]);
|
|
k++;
|
|
} else {
|
|
Assert.assertEquals(r[i + j], (int)0);
|
|
}
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + j;
|
|
if (m[idx % SPECIES.length()]) {
|
|
Assert.assertEquals(r[idx], a[i + k], "at index #" + idx);
|
|
} else {
|
|
Assert.assertEquals(r[idx], (int)0, "at index #" + idx);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void assertSelectFromTwoVectorEquals(int[] r, int[] order, int[] a, int[] b, int vector_len) {
|
|
int i = 0, j = 0;
|
|
boolean is_exceptional_idx = false;
|
|
int idx = 0, wrapped_index = 0, oidx = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
for (j = 0; j < vector_len; j++) {
|
|
idx = i + j;
|
|
wrapped_index = Math.floorMod((int)order[idx], 2 * vector_len);
|
|
is_exceptional_idx = wrapped_index >= vector_len;
|
|
oidx = is_exceptional_idx ? (wrapped_index - vector_len) : wrapped_index;
|
|
Assert.assertEquals(r[idx], (is_exceptional_idx ? b[i + oidx] : a[i + oidx]));
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[idx], (is_exceptional_idx ? b[i + oidx] : a[i + oidx]), "at index #" + idx + ", order = " + order[idx] + ", a = " + a[i + oidx] + ", b = " + b[i + oidx]);
|
|
}
|
|
}
|
|
|
|
static void assertSelectFromArraysEquals(int[] r, int[] a, int[] order, int vector_len) {
|
|
int i = 0, j = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
for (j = 0; j < vector_len; j++) {
|
|
Assert.assertEquals(r[i+j], a[i+(int)order[i+j]]);
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + j;
|
|
Assert.assertEquals(r[i+j], a[i+(int)order[i+j]], "at index #" + idx + ", input = " + a[i+(int)order[i+j]]);
|
|
}
|
|
}
|
|
|
|
static void assertRearrangeArraysEquals(int[] r, int[] a, int[] order, boolean[] mask, int vector_len) {
|
|
int i = 0, j = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
for (j = 0; j < vector_len; j++) {
|
|
if (mask[j % SPECIES.length()])
|
|
Assert.assertEquals(r[i+j], a[i+order[i+j]]);
|
|
else
|
|
Assert.assertEquals(r[i+j], (int)0);
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + j;
|
|
if (mask[j % SPECIES.length()])
|
|
Assert.assertEquals(r[i+j], a[i+order[i+j]], "at index #" + idx + ", input = " + a[i+order[i+j]] + ", mask = " + mask[j % SPECIES.length()]);
|
|
else
|
|
Assert.assertEquals(r[i+j], (int)0, "at index #" + idx + ", input = " + a[i+order[i+j]] + ", mask = " + mask[j % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertSelectFromArraysEquals(int[] r, int[] a, int[] order, boolean[] mask, int vector_len) {
|
|
int i = 0, j = 0;
|
|
try {
|
|
for (; i < a.length; i += vector_len) {
|
|
for (j = 0; j < vector_len; j++) {
|
|
if (mask[j % SPECIES.length()])
|
|
Assert.assertEquals(r[i+j], a[i+(int)order[i+j]]);
|
|
else
|
|
Assert.assertEquals(r[i+j], (int)0);
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
int idx = i + j;
|
|
if (mask[j % SPECIES.length()])
|
|
Assert.assertEquals(r[i+j], a[i+(int)order[i+j]], "at index #" + idx + ", input = " + a[i+(int)order[i+j]] + ", mask = " + mask[j % SPECIES.length()]);
|
|
else
|
|
Assert.assertEquals(r[i+j], (int)0, "at index #" + idx + ", input = " + a[i+(int)order[i+j]] + ", mask = " + mask[j % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a) {
|
|
int i = 0;
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
int idx = i;
|
|
for (int j = idx; j < (idx + SPECIES.length()); j++)
|
|
a[j]=a[idx];
|
|
}
|
|
|
|
try {
|
|
for (i = 0; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], a[i]);
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], a[i], "at index #" + i + ", input = " + a[i]);
|
|
}
|
|
}
|
|
|
|
interface FBinOp {
|
|
int apply(int a, int b);
|
|
}
|
|
|
|
interface FBinMaskOp {
|
|
int apply(int a, int b, boolean m);
|
|
|
|
static FBinMaskOp lift(FBinOp f) {
|
|
return (a, b, m) -> m ? f.apply(a, b) : a;
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, FBinOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i]), "(" + a[i] + ", " + b[i] + ") at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, FBinOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()]),
|
|
"(" + a[i] + ", " + b[(i / SPECIES.length()) * SPECIES.length()] + ") at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastLongArraysEquals(int[] r, int[] a, int[] b, FBinOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], (int)((long)b[(i / SPECIES.length()) * SPECIES.length()])));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], (int)((long)b[(i / SPECIES.length()) * SPECIES.length()])),
|
|
"(" + a[i] + ", " + b[(i / SPECIES.length()) * SPECIES.length()] + ") at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinOp f) {
|
|
assertArraysEquals(r, a, b, mask, FBinMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] + ", input2 = " + b[i] + ", mask = " + mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinOp f) {
|
|
assertBroadcastArraysEquals(r, a, b, mask, FBinMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()], mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()],
|
|
mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] +
|
|
", input2 = " + b[(i / SPECIES.length()) * SPECIES.length()] + ", mask = " +
|
|
mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastLongArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinOp f) {
|
|
assertBroadcastLongArraysEquals(r, a, b, mask, FBinMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertBroadcastLongArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], (int)((long)b[(i / SPECIES.length()) * SPECIES.length()]), mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], (int)((long)b[(i / SPECIES.length()) * SPECIES.length()]),
|
|
mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] +
|
|
", input2 = " + b[(i / SPECIES.length()) * SPECIES.length()] + ", mask = " +
|
|
mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertShiftArraysEquals(int[] r, int[] a, int[] b, FBinOp f) {
|
|
int i = 0;
|
|
int j = 0;
|
|
try {
|
|
for (; j < a.length; j += SPECIES.length()) {
|
|
for (i = 0; i < SPECIES.length(); i++) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], b[j]));
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], b[j]), "at index #" + i + ", " + j);
|
|
}
|
|
}
|
|
|
|
static void assertShiftArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinOp f) {
|
|
assertShiftArraysEquals(r, a, b, mask, FBinMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertShiftArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FBinMaskOp f) {
|
|
int i = 0;
|
|
int j = 0;
|
|
try {
|
|
for (; j < a.length; j += SPECIES.length()) {
|
|
for (i = 0; i < SPECIES.length(); i++) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], b[j], mask[i]));
|
|
}
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], b[j], mask[i]), "at index #" + i + ", input1 = " + a[i+j] + ", input2 = " + b[j] + ", mask = " + mask[i]);
|
|
}
|
|
}
|
|
|
|
interface FBinConstOp {
|
|
int apply(int a);
|
|
}
|
|
|
|
interface FBinConstMaskOp {
|
|
int apply(int a, boolean m);
|
|
|
|
static FBinConstMaskOp lift(FBinConstOp f) {
|
|
return (a, m) -> m ? f.apply(a) : a;
|
|
}
|
|
}
|
|
|
|
static void assertShiftConstEquals(int[] r, int[] a, FBinConstOp f) {
|
|
int i = 0;
|
|
int j = 0;
|
|
try {
|
|
for (; j < a.length; j += SPECIES.length()) {
|
|
for (i = 0; i < SPECIES.length(); i++) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j]));
|
|
}
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j]), "at index #" + i + ", " + j);
|
|
}
|
|
}
|
|
|
|
static void assertShiftConstEquals(int[] r, int[] a, boolean[] mask, FBinConstOp f) {
|
|
assertShiftConstEquals(r, a, mask, FBinConstMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertShiftConstEquals(int[] r, int[] a, boolean[] mask, FBinConstMaskOp f) {
|
|
int i = 0;
|
|
int j = 0;
|
|
try {
|
|
for (; j < a.length; j += SPECIES.length()) {
|
|
for (i = 0; i < SPECIES.length(); i++) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], mask[i]));
|
|
}
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i+j], f.apply(a[i+j], mask[i]), "at index #" + i + ", input1 = " + a[i+j] + ", mask = " + mask[i]);
|
|
}
|
|
}
|
|
|
|
interface FTernOp {
|
|
int apply(int a, int b, int c);
|
|
}
|
|
|
|
interface FTernMaskOp {
|
|
int apply(int a, int b, int c, boolean m);
|
|
|
|
static FTernMaskOp lift(FTernOp f) {
|
|
return (a, b, c, m) -> m ? f.apply(a, b, c) : a;
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int[] c, FTernOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[i]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[i]), "at index #" + i + ", input1 = " + a[i] + ", input2 = " + b[i] + ", input3 = " + c[i]);
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask, FTernOp f) {
|
|
assertArraysEquals(r, a, b, c, mask, FTernMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask, FTernMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[i], mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[i], mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] + ", input2 = "
|
|
+ b[i] + ", input3 = " + c[i] + ", mask = " + mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, FTernOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[(i / SPECIES.length()) * SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[(i / SPECIES.length()) * SPECIES.length()]), "at index #" +
|
|
i + ", input1 = " + a[i] + ", input2 = " + b[i] + ", input3 = " +
|
|
c[(i / SPECIES.length()) * SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertAltBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, FTernOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()], c[i]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()], c[i]), "at index #" +
|
|
i + ", input1 = " + a[i] + ", input2 = " +
|
|
b[(i / SPECIES.length()) * SPECIES.length()] + ", input3 = " + c[i]);
|
|
}
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernOp f) {
|
|
assertBroadcastArraysEquals(r, a, b, c, mask, FTernMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[(i / SPECIES.length()) * SPECIES.length()],
|
|
mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[i], c[(i / SPECIES.length()) * SPECIES.length()],
|
|
mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] + ", input2 = " +
|
|
b[i] + ", input3 = " + c[(i / SPECIES.length()) * SPECIES.length()] + ", mask = " +
|
|
mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertAltBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernOp f) {
|
|
assertAltBroadcastArraysEquals(r, a, b, c, mask, FTernMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertAltBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()], c[i],
|
|
mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()], c[i],
|
|
mask[i % SPECIES.length()]), "at index #" + i + ", input1 = " + a[i] +
|
|
", input2 = " + b[(i / SPECIES.length()) * SPECIES.length()] +
|
|
", input3 = " + c[i] + ", mask = " + mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertDoubleBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, FTernOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()],
|
|
c[(i / SPECIES.length()) * SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()],
|
|
c[(i / SPECIES.length()) * SPECIES.length()]), "at index #" + i + ", input1 = " + a[i]
|
|
+ ", input2 = " + b[(i / SPECIES.length()) * SPECIES.length()] + ", input3 = " +
|
|
c[(i / SPECIES.length()) * SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
static void assertDoubleBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernOp f) {
|
|
assertDoubleBroadcastArraysEquals(r, a, b, c, mask, FTernMaskOp.lift(f));
|
|
}
|
|
|
|
static void assertDoubleBroadcastArraysEquals(int[] r, int[] a, int[] b, int[] c, boolean[] mask,
|
|
FTernMaskOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i++) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()],
|
|
c[(i / SPECIES.length()) * SPECIES.length()], mask[i % SPECIES.length()]));
|
|
}
|
|
} catch (AssertionError err) {
|
|
Assert.assertEquals(r[i], f.apply(a[i], b[(i / SPECIES.length()) * SPECIES.length()],
|
|
c[(i / SPECIES.length()) * SPECIES.length()], mask[i % SPECIES.length()]), "at index #"
|
|
+ i + ", input1 = " + a[i] + ", input2 = " + b[(i / SPECIES.length()) * SPECIES.length()] +
|
|
", input3 = " + c[(i / SPECIES.length()) * SPECIES.length()] + ", mask = " +
|
|
mask[i % SPECIES.length()]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
interface FGatherScatterOp {
|
|
int[] apply(int[] a, int ix, int[] b, int iy);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, FGatherScatterOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, i, b, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, i, b, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref,
|
|
"(ref: " + Arrays.toString(ref) + ", res: " + Arrays.toString(res) + ", a: "
|
|
+ Arrays.toString(Arrays.copyOfRange(a, i, i+SPECIES.length()))
|
|
+ ", b: "
|
|
+ Arrays.toString(Arrays.copyOfRange(b, i, i+SPECIES.length()))
|
|
+ " at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FGatherMaskedOp {
|
|
int[] apply(int[] a, int ix, boolean[] mask, int[] b, int iy);
|
|
}
|
|
|
|
interface FScatterMaskedOp {
|
|
int[] apply(int[] r, int[] a, int ix, boolean[] mask, int[] b, int iy);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FGatherMaskedOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, i, mask, b, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, i, mask, b, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref,
|
|
"(ref: " + Arrays.toString(ref) + ", res: " + Arrays.toString(res) + ", a: "
|
|
+ Arrays.toString(Arrays.copyOfRange(a, i, i+SPECIES.length()))
|
|
+ ", b: "
|
|
+ Arrays.toString(Arrays.copyOfRange(b, i, i+SPECIES.length()))
|
|
+ ", mask: "
|
|
+ Arrays.toString(mask)
|
|
+ " at index #" + i);
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, boolean[] mask, FScatterMaskedOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(r, a, i, mask, b, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(r, a, i, mask, b, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref,
|
|
"(ref: " + Arrays.toString(ref) + ", res: " + Arrays.toString(res) + ", a: "
|
|
+ Arrays.toString(Arrays.copyOfRange(a, i, i+SPECIES.length()))
|
|
+ ", b: "
|
|
+ Arrays.toString(Arrays.copyOfRange(b, i, i+SPECIES.length()))
|
|
+ ", r: "
|
|
+ Arrays.toString(Arrays.copyOfRange(r, i, i+SPECIES.length()))
|
|
+ ", mask: "
|
|
+ Arrays.toString(mask)
|
|
+ " at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FLaneOp {
|
|
int[] apply(int[] a, int origin, int idx);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int origin, FLaneOp f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, origin, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, origin, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i);
|
|
}
|
|
}
|
|
|
|
interface FLaneBop {
|
|
int[] apply(int[] a, int[] b, int origin, int idx);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int origin, FLaneBop f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, b, origin, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, b, origin, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i
|
|
+ ", at origin #" + origin);
|
|
}
|
|
}
|
|
|
|
interface FLaneMaskedBop {
|
|
int[] apply(int[] a, int[] b, int origin, boolean[] mask, int idx);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int origin, boolean[] mask, FLaneMaskedBop f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, b, origin, mask, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, b, origin, mask, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i
|
|
+ ", at origin #" + origin);
|
|
}
|
|
}
|
|
|
|
interface FLanePartBop {
|
|
int[] apply(int[] a, int[] b, int origin, int part, int idx);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int origin, int part, FLanePartBop f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, b, origin, part, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, b, origin, part, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i
|
|
+ ", at origin #" + origin
|
|
+ ", with part #" + part);
|
|
}
|
|
}
|
|
|
|
interface FLanePartMaskedBop {
|
|
int[] apply(int[] a, int[] b, int origin, int part, boolean[] mask, int idx);
|
|
}
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int[] b, int origin, int part, boolean[] mask, FLanePartMaskedBop f) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < a.length; i += SPECIES.length()) {
|
|
Assert.assertEquals(Arrays.copyOfRange(r, i, i+SPECIES.length()),
|
|
f.apply(a, b, origin, part, mask, i));
|
|
}
|
|
} catch (AssertionError e) {
|
|
int[] ref = f.apply(a, b, origin, part, mask, i);
|
|
int[] res = Arrays.copyOfRange(r, i, i+SPECIES.length());
|
|
Assert.assertEquals(res, ref, "(ref: " + Arrays.toString(ref)
|
|
+ ", res: " + Arrays.toString(res)
|
|
+ "), at index #" + i
|
|
+ ", at origin #" + origin
|
|
+ ", with part #" + part);
|
|
}
|
|
}
|
|
|
|
|
|
static void assertArraysEquals(int[] r, int[] a, int offs) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < r.length; i++) {
|
|
Assert.assertEquals(r[i], (int)(a[i+offs]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], (int)(a[i+offs]), "at index #" + i + ", input = " + a[i+offs]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
static void assertArraysEquals(long[] r, int[] a, int offs) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < r.length; i++) {
|
|
Assert.assertEquals(r[i], (long)(a[i+offs]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], (long)(a[i+offs]), "at index #" + i + ", input = " + a[i+offs]);
|
|
}
|
|
}
|
|
|
|
static void assertArraysEquals(double[] r, int[] a, int offs) {
|
|
int i = 0;
|
|
try {
|
|
for (; i < r.length; i++) {
|
|
Assert.assertEquals(r[i], (double)(a[i+offs]));
|
|
}
|
|
} catch (AssertionError e) {
|
|
Assert.assertEquals(r[i], (double)(a[i+offs]), "at index #" + i + ", input = " + a[i+offs]);
|
|
}
|
|
}
|
|
|
|
static int bits(int e) {
|
|
return e;
|
|
}
|
|
|
|
static final List<IntFunction<int[]>> INT_GENERATORS = List.of(
|
|
withToString("int[-i * 5]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(-i * 5));
|
|
}),
|
|
withToString("int[i * 5]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(i * 5));
|
|
}),
|
|
withToString("int[i + 1]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (((int)(i + 1) == 0) ? 1 : (int)(i + 1)));
|
|
}),
|
|
withToString("int[cornerCaseValue(i)]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> cornerCaseValue(i));
|
|
})
|
|
);
|
|
|
|
static final List<IntFunction<int[]>> INT_SATURATING_GENERATORS = List.of(
|
|
withToString("int[Integer.MIN_VALUE]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(Integer.MIN_VALUE));
|
|
}),
|
|
withToString("int[Integer.MAX_VALUE]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(Integer.MAX_VALUE));
|
|
}),
|
|
withToString("int[Integer.MAX_VALUE - 100]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(Integer.MAX_VALUE - 100));
|
|
}),
|
|
withToString("int[Integer.MIN_VALUE + 100]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(Integer.MIN_VALUE + 100));
|
|
}),
|
|
withToString("int[-i * 5]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(-i * 5));
|
|
}),
|
|
withToString("int[i * 5]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(i * 5));
|
|
})
|
|
);
|
|
|
|
// Create combinations of pairs
|
|
// @@@ Might be sensitive to order e.g. div by 0
|
|
static final List<List<IntFunction<int[]>>> INT_GENERATOR_PAIRS =
|
|
Stream.of(INT_GENERATORS.get(0)).
|
|
flatMap(fa -> INT_GENERATORS.stream().skip(1).map(fb -> List.of(fa, fb))).
|
|
collect(Collectors.toList());
|
|
|
|
static final List<List<IntFunction<int[]>>> INT_SATURATING_GENERATOR_PAIRS =
|
|
Stream.of(INT_GENERATORS.get(0)).
|
|
flatMap(fa -> INT_SATURATING_GENERATORS.stream().skip(1).map(fb -> List.of(fa, fb))).
|
|
collect(Collectors.toList());
|
|
|
|
@DataProvider
|
|
public Object[][] boolUnaryOpProvider() {
|
|
return BOOL_ARRAY_GENERATORS.stream().
|
|
map(f -> new Object[]{f}).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
static final List<List<IntFunction<int[]>>> INT_GENERATOR_TRIPLES =
|
|
INT_GENERATOR_PAIRS.stream().
|
|
flatMap(pair -> INT_GENERATORS.stream().map(f -> List.of(pair.get(0), pair.get(1), f))).
|
|
collect(Collectors.toList());
|
|
|
|
static final List<IntFunction<int[]>> SELECT_FROM_INDEX_GENERATORS = List.of(
|
|
withToString("int[0..VECLEN*2)", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(RAND.nextInt()));
|
|
})
|
|
);
|
|
|
|
static final List<List<IntFunction<int[]>>> INT_GENERATOR_SELECT_FROM_TRIPLES =
|
|
INT_GENERATOR_PAIRS.stream().
|
|
flatMap(pair -> SELECT_FROM_INDEX_GENERATORS.stream().map(f -> List.of(pair.get(0), pair.get(1), f))).
|
|
collect(Collectors.toList());
|
|
|
|
@DataProvider
|
|
public Object[][] intBinaryOpProvider() {
|
|
return INT_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intSaturatingBinaryOpProvider() {
|
|
return INT_SATURATING_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intIndexedOpProvider() {
|
|
return INT_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intSaturatingBinaryOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_SATURATING_GENERATOR_PAIRS.stream().map(lfa -> {
|
|
return Stream.concat(lfa.stream(), Stream.of(fm)).toArray();
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intBinaryOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_GENERATOR_PAIRS.stream().map(lfa -> {
|
|
return Stream.concat(lfa.stream(), Stream.of(fm)).toArray();
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intTernaryOpProvider() {
|
|
return INT_GENERATOR_TRIPLES.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intSelectFromTwoVectorOpProvider() {
|
|
return INT_GENERATOR_SELECT_FROM_TRIPLES.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intTernaryOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_GENERATOR_TRIPLES.stream().map(lfa -> {
|
|
return Stream.concat(lfa.stream(), Stream.of(fm)).toArray();
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intUnaryOpProvider() {
|
|
return INT_GENERATORS.stream().
|
|
map(f -> new Object[]{f}).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intUnaryOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_GENERATORS.stream().map(fa -> {
|
|
return new Object[] {fa, fm};
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] maskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
map(f -> new Object[]{f}).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] maskCompareOpProvider() {
|
|
return BOOLEAN_MASK_COMPARE_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] shuffleProvider() {
|
|
return INT_SHUFFLE_GENERATORS.stream().
|
|
map(f -> new Object[]{f}).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] shuffleCompareOpProvider() {
|
|
return INT_SHUFFLE_COMPARE_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intUnaryOpShuffleProvider() {
|
|
return INT_SHUFFLE_GENERATORS.stream().
|
|
flatMap(fs -> INT_GENERATORS.stream().map(fa -> {
|
|
return new Object[] {fa, fs};
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intUnaryOpShuffleMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_SHUFFLE_GENERATORS.stream().
|
|
flatMap(fs -> INT_GENERATORS.stream().map(fa -> {
|
|
return new Object[] {fa, fs, fm};
|
|
}))).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
static final List<IntFunction<int[]>> INT_COMPARE_GENERATORS = List.of(
|
|
withToString("int[i]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)i);
|
|
}),
|
|
withToString("int[i - length / 2]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(i - (s * BUFFER_REPS / 2)));
|
|
}),
|
|
withToString("int[i + 1]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(i + 1));
|
|
}),
|
|
withToString("int[i - 2]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> (int)(i - 2));
|
|
}),
|
|
withToString("int[zigZag(i)]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> i%3 == 0 ? (int)i : (i%3 == 1 ? (int)(i + 1) : (int)(i - 2)));
|
|
}),
|
|
withToString("int[cornerCaseValue(i)]", (int s) -> {
|
|
return fill(s * BUFFER_REPS,
|
|
i -> cornerCaseValue(i));
|
|
})
|
|
);
|
|
|
|
static final List<List<IntFunction<int[]>>> INT_TEST_GENERATOR_ARGS =
|
|
INT_COMPARE_GENERATORS.stream().
|
|
map(fa -> List.of(fa)).
|
|
collect(Collectors.toList());
|
|
|
|
@DataProvider
|
|
public Object[][] intTestOpProvider() {
|
|
return INT_TEST_GENERATOR_ARGS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intTestOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_TEST_GENERATOR_ARGS.stream().map(lfa -> {
|
|
return Stream.concat(lfa.stream(), Stream.of(fm)).toArray();
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
static final List<List<IntFunction<int[]>>> INT_COMPARE_GENERATOR_PAIRS =
|
|
INT_COMPARE_GENERATORS.stream().
|
|
flatMap(fa -> INT_COMPARE_GENERATORS.stream().map(fb -> List.of(fa, fb))).
|
|
collect(Collectors.toList());
|
|
|
|
@DataProvider
|
|
public Object[][] intCompareOpProvider() {
|
|
return INT_COMPARE_GENERATOR_PAIRS.stream().map(List::toArray).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
@DataProvider
|
|
public Object[][] intCompareOpMaskProvider() {
|
|
return BOOLEAN_MASK_GENERATORS.stream().
|
|
flatMap(fm -> INT_COMPARE_GENERATOR_PAIRS.stream().map(lfa -> {
|
|
return Stream.concat(lfa.stream(), Stream.of(fm)).toArray();
|
|
})).
|
|
toArray(Object[][]::new);
|
|
}
|
|
|
|
interface ToIntF {
|
|
int apply(int i);
|
|
}
|
|
|
|
static int[] fill(int s , ToIntF f) {
|
|
return fill(new int[s], f);
|
|
}
|
|
|
|
static int[] fill(int[] a, ToIntF f) {
|
|
for (int i = 0; i < a.length; i++) {
|
|
a[i] = f.apply(i);
|
|
}
|
|
return a;
|
|
}
|
|
|
|
static int cornerCaseValue(int i) {
|
|
switch(i % 5) {
|
|
case 0:
|
|
return Integer.MAX_VALUE;
|
|
case 1:
|
|
return Integer.MIN_VALUE;
|
|
case 2:
|
|
return Integer.MIN_VALUE;
|
|
case 3:
|
|
return Integer.MAX_VALUE;
|
|
default:
|
|
return (int)0;
|
|
}
|
|
}
|
|
|
|
static final IntFunction<int[]> fr = (vl) -> {
|
|
int length = BUFFER_REPS * vl;
|
|
return new int[length];
|
|
};
|
|
|
|
static final IntFunction<boolean[]> fmr = (vl) -> {
|
|
int length = BUFFER_REPS * vl;
|
|
return new boolean[length];
|
|
};
|
|
|
|
static final IntFunction<long[]> lfr = (vl) -> {
|
|
int length = BUFFER_REPS * vl;
|
|
return new long[length];
|
|
};
|
|
|
|
static void replaceZero(int[] a, int v) {
|
|
for (int i = 0; i < a.length; i++) {
|
|
if (a[i] == 0) {
|
|
a[i] = v;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void replaceZero(int[] a, boolean[] mask, int v) {
|
|
for (int i = 0; i < a.length; i++) {
|
|
if (mask[i % mask.length] && a[i] == 0) {
|
|
a[i] = v;
|
|
}
|
|
}
|
|
}
|
|
|
|
static int ROL_scalar(int a, int b) {
|
|
return Integer.rotateLeft(a, ((int)b));
|
|
}
|
|
|
|
static int ROR_scalar(int a, int b) {
|
|
return Integer.rotateRight(a, ((int)b));
|
|
}
|
|
|
|
static int TRAILING_ZEROS_COUNT_scalar(int a) {
|
|
return Integer.numberOfTrailingZeros(a);
|
|
}
|
|
|
|
static int LEADING_ZEROS_COUNT_scalar(int a) {
|
|
return Integer.numberOfLeadingZeros(a);
|
|
}
|
|
|
|
static int REVERSE_scalar(int a) {
|
|
return Integer.reverse(a);
|
|
}
|
|
|
|
static boolean eq(int a, int b) {
|
|
return a == b;
|
|
}
|
|
|
|
static boolean neq(int a, int b) {
|
|
return a != b;
|
|
}
|
|
|
|
static boolean lt(int a, int b) {
|
|
return a < b;
|
|
}
|
|
|
|
static boolean le(int a, int b) {
|
|
return a <= b;
|
|
}
|
|
|
|
static boolean gt(int a, int b) {
|
|
return a > b;
|
|
}
|
|
|
|
static boolean ge(int a, int b) {
|
|
return a >= b;
|
|
}
|
|
|
|
static boolean ult(int a, int b) {
|
|
return Integer.compareUnsigned(a, b) < 0;
|
|
}
|
|
|
|
static boolean ule(int a, int b) {
|
|
return Integer.compareUnsigned(a, b) <= 0;
|
|
}
|
|
|
|
static boolean ugt(int a, int b) {
|
|
return Integer.compareUnsigned(a, b) > 0;
|
|
}
|
|
|
|
static boolean uge(int a, int b) {
|
|
return Integer.compareUnsigned(a, b) >= 0;
|
|
}
|
|
|
|
static int firstNonZero(int a, int b) {
|
|
return Integer.compare(a, (int) 0) != 0 ? a : b;
|
|
}
|
|
|
|
@Test
|
|
static void smokeTest1() {
|
|
IntVector three = IntVector.broadcast(SPECIES, (byte)-3);
|
|
IntVector three2 = (IntVector) SPECIES.broadcast(-3);
|
|
assert(three.eq(three2).allTrue());
|
|
IntVector three3 = three2.broadcast(1).broadcast(-3);
|
|
assert(three.eq(three3).allTrue());
|
|
int scale = 2;
|
|
Class<?> ETYPE = int.class;
|
|
if (ETYPE == double.class || ETYPE == long.class)
|
|
scale = 1000000;
|
|
else if (ETYPE == byte.class && SPECIES.length() >= 64)
|
|
scale = 1;
|
|
IntVector higher = three.addIndex(scale);
|
|
VectorMask<Integer> m = three.compare(VectorOperators.LE, higher);
|
|
assert(m.allTrue());
|
|
m = higher.min((int)-1).test(VectorOperators.IS_NEGATIVE);
|
|
assert(m.allTrue());
|
|
int max = higher.reduceLanes(VectorOperators.MAX);
|
|
assert(max == -3 + scale * (SPECIES.length()-1));
|
|
}
|
|
|
|
private static int[]
|
|
bothToArray(IntVector a, IntVector b) {
|
|
int[] r = new int[a.length() + b.length()];
|
|
a.intoArray(r, 0);
|
|
b.intoArray(r, a.length());
|
|
return r;
|
|
}
|
|
|
|
@Test
|
|
static void smokeTest2() {
|
|
// Do some zipping and shuffling.
|
|
IntVector io = (IntVector) SPECIES.broadcast(0).addIndex(1);
|
|
IntVector io2 = (IntVector) VectorShuffle.iota(SPECIES,0,1,false).toVector();
|
|
Assert.assertEquals(io, io2);
|
|
IntVector a = io.add((int)1); //[1,2]
|
|
IntVector b = a.neg(); //[-1,-2]
|
|
int[] abValues = bothToArray(a,b); //[1,2,-1,-2]
|
|
VectorShuffle<Integer> zip0 = VectorShuffle.makeZip(SPECIES, 0);
|
|
VectorShuffle<Integer> zip1 = VectorShuffle.makeZip(SPECIES, 1);
|
|
IntVector zab0 = a.rearrange(zip0,b); //[1,-1]
|
|
IntVector zab1 = a.rearrange(zip1,b); //[2,-2]
|
|
int[] zabValues = bothToArray(zab0, zab1); //[1,-1,2,-2]
|
|
// manually zip
|
|
int[] manual = new int[zabValues.length];
|
|
for (int i = 0; i < manual.length; i += 2) {
|
|
manual[i+0] = abValues[i/2];
|
|
manual[i+1] = abValues[a.length() + i/2];
|
|
}
|
|
Assert.assertEquals(Arrays.toString(zabValues), Arrays.toString(manual));
|
|
VectorShuffle<Integer> unz0 = VectorShuffle.makeUnzip(SPECIES, 0);
|
|
VectorShuffle<Integer> unz1 = VectorShuffle.makeUnzip(SPECIES, 1);
|
|
IntVector uab0 = zab0.rearrange(unz0,zab1);
|
|
IntVector uab1 = zab0.rearrange(unz1,zab1);
|
|
int[] abValues1 = bothToArray(uab0, uab1);
|
|
Assert.assertEquals(Arrays.toString(abValues), Arrays.toString(abValues1));
|
|
}
|
|
|
|
static void iotaShuffle() {
|
|
IntVector io = (IntVector) SPECIES.broadcast(0).addIndex(1);
|
|
IntVector io2 = (IntVector) VectorShuffle.iota(SPECIES, 0 , 1, false).toVector();
|
|
Assert.assertEquals(io, io2);
|
|
}
|
|
|
|
@Test
|
|
// Test all shuffle related operations.
|
|
static void shuffleTest() {
|
|
// To test backend instructions, make sure that C2 is used.
|
|
for (int loop = 0; loop < INVOC_COUNT * INVOC_COUNT; loop++) {
|
|
iotaShuffle();
|
|
}
|
|
}
|
|
|
|
@Test
|
|
void viewAsIntegeralLanesTest() {
|
|
Vector<?> asIntegral = SPECIES.zero().viewAsIntegralLanes();
|
|
Assert.assertEquals(asIntegral.species(), SPECIES);
|
|
}
|
|
|
|
@Test
|
|
void viewAsFloatingLanesTest() {
|
|
Vector<?> asFloating = SPECIES.zero().viewAsFloatingLanes();
|
|
VectorSpecies<?> asFloatingSpecies = asFloating.species();
|
|
Assert.assertNotEquals(asFloatingSpecies.elementType(), SPECIES.elementType());
|
|
Assert.assertEquals(asFloatingSpecies.vectorShape(), SPECIES.vectorShape());
|
|
Assert.assertEquals(asFloatingSpecies.length(), SPECIES.length());
|
|
Assert.assertEquals(asFloating.viewAsIntegralLanes().species(), SPECIES);
|
|
}
|
|
|
|
@Test
|
|
// Test div by 0.
|
|
static void bitwiseDivByZeroSmokeTest() {
|
|
try {
|
|
IntVector a = (IntVector) SPECIES.broadcast(0).addIndex(1);
|
|
IntVector b = (IntVector) SPECIES.broadcast(0);
|
|
a.div(b);
|
|
Assert.fail();
|
|
} catch (ArithmeticException e) {
|
|
}
|
|
|
|
try {
|
|
IntVector a = (IntVector) SPECIES.broadcast(0).addIndex(1);
|
|
IntVector b = (IntVector) SPECIES.broadcast(0);
|
|
VectorMask<Integer> m = a.lt((int) 1);
|
|
a.div(b, m);
|
|
Assert.fail();
|
|
} catch (ArithmeticException e) {
|
|
}
|
|
}
|
|
|
|
static int ADD(int a, int b) {
|
|
return (int)(a + b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ADDInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ADD, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::ADD);
|
|
}
|
|
|
|
static int add(int a, int b) {
|
|
return (int)(a + b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void addInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.add(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::add);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ADDInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ADD, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::ADD);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void addInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.add(bv, vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::add);
|
|
}
|
|
|
|
static int SUB(int a, int b) {
|
|
return (int)(a - b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void SUBInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUB, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::SUB);
|
|
}
|
|
|
|
static int sub(int a, int b) {
|
|
return (int)(a - b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void subInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.sub(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::sub);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void SUBInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUB, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::SUB);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void subInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.sub(bv, vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::sub);
|
|
}
|
|
|
|
static int MUL(int a, int b) {
|
|
return (int)(a * b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void MULInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.MUL, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::MUL);
|
|
}
|
|
|
|
static int mul(int a, int b) {
|
|
return (int)(a * b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void mulInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.mul(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::mul);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void MULInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.MUL, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::MUL);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void mulInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.mul(bv, vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::mul);
|
|
}
|
|
|
|
static int DIV(int a, int b) {
|
|
return (int)(a / b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void DIVInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
replaceZero(b, (int) 1);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.DIV, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::DIV);
|
|
}
|
|
|
|
static int div(int a, int b) {
|
|
return (int)(a / b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void divInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
replaceZero(b, (int) 1);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.div(bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::div);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void DIVInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
replaceZero(b, mask, (int) 1);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.DIV, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::DIV);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void divInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
replaceZero(b, mask, (int) 1);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.div(bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::div);
|
|
}
|
|
|
|
static int FIRST_NONZERO(int a, int b) {
|
|
return (int)((a)!=0?a:b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void FIRST_NONZEROInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.FIRST_NONZERO, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::FIRST_NONZERO);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void FIRST_NONZEROInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.FIRST_NONZERO, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::FIRST_NONZERO);
|
|
}
|
|
|
|
static int AND(int a, int b) {
|
|
return (int)(a & b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ANDInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.AND, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::AND);
|
|
}
|
|
|
|
static int and(int a, int b) {
|
|
return (int)(a & b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void andInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.and(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::and);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ANDInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.AND, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::AND);
|
|
}
|
|
|
|
static int AND_NOT(int a, int b) {
|
|
return (int)(a & ~b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void AND_NOTInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.AND_NOT, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::AND_NOT);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void AND_NOTInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.AND_NOT, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::AND_NOT);
|
|
}
|
|
|
|
static int OR(int a, int b) {
|
|
return (int)(a | b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ORInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.OR, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::OR);
|
|
}
|
|
|
|
static int or(int a, int b) {
|
|
return (int)(a | b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void orInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.or(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::or);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ORInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.OR, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::OR);
|
|
}
|
|
|
|
static int XOR(int a, int b) {
|
|
return (int)(a ^ b);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void XORInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.XOR, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::XOR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void XORInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.XOR, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::XOR);
|
|
}
|
|
|
|
static int COMPRESS_BITS(int a, int b) {
|
|
return (int)(Integer.compress(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void COMPRESS_BITSInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.COMPRESS_BITS, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::COMPRESS_BITS);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void COMPRESS_BITSInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.COMPRESS_BITS, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::COMPRESS_BITS);
|
|
}
|
|
|
|
static int EXPAND_BITS(int a, int b) {
|
|
return (int)(Integer.expand(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void EXPAND_BITSInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.EXPAND_BITS, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::EXPAND_BITS);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void EXPAND_BITSInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.EXPAND_BITS, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::EXPAND_BITS);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void addInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.add(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::add);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void addInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.add(b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::add);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void subInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.sub(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::sub);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void subInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.sub(b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::sub);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void mulInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.mul(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::mul);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void mulInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.mul(b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::mul);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void divInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
replaceZero(b, (int) 1);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.div(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::div);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void divInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
replaceZero(b, (int) 1);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.div(b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::div);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ORInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.OR, b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::OR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void orInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.or(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::or);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ORInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.OR, b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::OR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ANDInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.AND, b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::AND);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void andInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.and(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::and);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ANDInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.AND, b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, mask, Int128VectorTests::AND);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ORInt128VectorTestsBroadcastLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.OR, (long)b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastLongArraysEquals(r, a, b, Int128VectorTests::OR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ORInt128VectorTestsBroadcastMaskedLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.OR, (long)b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastLongArraysEquals(r, a, b, mask, Int128VectorTests::OR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ADDInt128VectorTestsBroadcastLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ADD, (long)b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastLongArraysEquals(r, a, b, Int128VectorTests::ADD);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ADDInt128VectorTestsBroadcastMaskedLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ADD, (long)b[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastLongArraysEquals(r, a, b, mask, Int128VectorTests::ADD);
|
|
}
|
|
|
|
static int LSHL(int a, int b) {
|
|
return (int)((a << b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void LSHLInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.LSHL, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::LSHL);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void LSHLInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.LSHL, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::LSHL);
|
|
}
|
|
|
|
static int ASHR(int a, int b) {
|
|
return (int)((a >> b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ASHRInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ASHR, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::ASHR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ASHRInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ASHR, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::ASHR);
|
|
}
|
|
|
|
static int LSHR(int a, int b) {
|
|
return (int)((a >>> b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void LSHRInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.LSHR, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::LSHR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void LSHRInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.LSHR, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::LSHR);
|
|
}
|
|
|
|
static int LSHL_unary(int a, int b) {
|
|
return (int)((a << b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void LSHLInt128VectorTestsScalarShift(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHL, (int)b[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, Int128VectorTests::LSHL_unary);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void LSHLInt128VectorTestsScalarShiftMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHL, (int)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, mask, Int128VectorTests::LSHL_unary);
|
|
}
|
|
|
|
static int LSHR_unary(int a, int b) {
|
|
return (int)((a >>> b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void LSHRInt128VectorTestsScalarShift(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHR, (int)b[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, Int128VectorTests::LSHR_unary);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void LSHRInt128VectorTestsScalarShiftMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHR, (int)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, mask, Int128VectorTests::LSHR_unary);
|
|
}
|
|
|
|
static int ASHR_unary(int a, int b) {
|
|
return (int)((a >> b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ASHRInt128VectorTestsScalarShift(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ASHR, (int)b[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, Int128VectorTests::ASHR_unary);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ASHRInt128VectorTestsScalarShiftMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ASHR, (int)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, mask, Int128VectorTests::ASHR_unary);
|
|
}
|
|
|
|
static int ROR(int a, int b) {
|
|
return (int)(ROR_scalar(a,b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void RORInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ROR, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::ROR);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void RORInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ROR, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::ROR);
|
|
}
|
|
|
|
static int ROL(int a, int b) {
|
|
return (int)(ROL_scalar(a,b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ROLInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ROL, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::ROL);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ROLInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.ROL, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::ROL);
|
|
}
|
|
|
|
static int ROR_unary(int a, int b) {
|
|
return (int)(ROR_scalar(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void RORInt128VectorTestsScalarShift(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROR, (int)b[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, Int128VectorTests::ROR_unary);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void RORInt128VectorTestsScalarShiftMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROR, (int)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, mask, Int128VectorTests::ROR_unary);
|
|
}
|
|
|
|
static int ROL_unary(int a, int b) {
|
|
return (int)(ROL_scalar(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void ROLInt128VectorTestsScalarShift(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROL, (int)b[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, Int128VectorTests::ROL_unary);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void ROLInt128VectorTestsScalarShiftMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROL, (int)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftArraysEquals(r, a, b, mask, Int128VectorTests::ROL_unary);
|
|
}
|
|
static int LSHR_binary_const(int a) {
|
|
return (int)((a >>> CONST_SHIFT));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void LSHRInt128VectorTestsScalarShiftConst(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHR, CONST_SHIFT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, Int128VectorTests::LSHR_binary_const);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void LSHRInt128VectorTestsScalarShiftMaskedConst(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHR, CONST_SHIFT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, mask, Int128VectorTests::LSHR_binary_const);
|
|
}
|
|
|
|
static int LSHL_binary_const(int a) {
|
|
return (int)((a << CONST_SHIFT));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void LSHLInt128VectorTestsScalarShiftConst(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHL, CONST_SHIFT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, Int128VectorTests::LSHL_binary_const);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void LSHLInt128VectorTestsScalarShiftMaskedConst(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LSHL, CONST_SHIFT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, mask, Int128VectorTests::LSHL_binary_const);
|
|
}
|
|
|
|
static int ASHR_binary_const(int a) {
|
|
return (int)((a >> CONST_SHIFT));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ASHRInt128VectorTestsScalarShiftConst(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ASHR, CONST_SHIFT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, Int128VectorTests::ASHR_binary_const);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ASHRInt128VectorTestsScalarShiftMaskedConst(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ASHR, CONST_SHIFT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, mask, Int128VectorTests::ASHR_binary_const);
|
|
}
|
|
|
|
static int ROR_binary_const(int a) {
|
|
return (int)(ROR_scalar(a, CONST_SHIFT));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void RORInt128VectorTestsScalarShiftConst(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROR, CONST_SHIFT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, Int128VectorTests::ROR_binary_const);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void RORInt128VectorTestsScalarShiftMaskedConst(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROR, CONST_SHIFT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, mask, Int128VectorTests::ROR_binary_const);
|
|
}
|
|
|
|
static int ROL_binary_const(int a) {
|
|
return (int)(ROL_scalar(a, CONST_SHIFT));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ROLInt128VectorTestsScalarShiftConst(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROL, CONST_SHIFT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, Int128VectorTests::ROL_binary_const);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ROLInt128VectorTestsScalarShiftMaskedConst(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ROL, CONST_SHIFT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertShiftConstEquals(r, a, mask, Int128VectorTests::ROL_binary_const);
|
|
}
|
|
|
|
|
|
static int MIN(int a, int b) {
|
|
return (int)(Math.min(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void MINInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.MIN, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::MIN);
|
|
}
|
|
|
|
static int min(int a, int b) {
|
|
return (int)(Math.min(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void minInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.min(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::min);
|
|
}
|
|
|
|
static int MAX(int a, int b) {
|
|
return (int)(Math.max(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void MAXInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.MAX, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::MAX);
|
|
}
|
|
|
|
static int max(int a, int b) {
|
|
return (int)(Math.max(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void maxInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.max(bv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::max);
|
|
}
|
|
|
|
static int UMIN(int a, int b) {
|
|
return (int)(VectorMath.minUnsigned(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void UMINInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.UMIN, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::UMIN);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void UMINInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.UMIN, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::UMIN);
|
|
}
|
|
|
|
static int UMAX(int a, int b) {
|
|
return (int)(VectorMath.maxUnsigned(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void UMAXInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.UMAX, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::UMAX);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void UMAXInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.UMAX, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::UMAX);
|
|
}
|
|
|
|
static int SADD(int a, int b) {
|
|
return (int)(VectorMath.addSaturating(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpProvider")
|
|
static void SADDInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SADD, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::SADD);
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpMaskProvider")
|
|
static void SADDInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SADD, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::SADD);
|
|
}
|
|
|
|
static int SSUB(int a, int b) {
|
|
return (int)(VectorMath.subSaturating(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpProvider")
|
|
static void SSUBInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SSUB, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::SSUB);
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpMaskProvider")
|
|
static void SSUBInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SSUB, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::SSUB);
|
|
}
|
|
|
|
static int SUADD(int a, int b) {
|
|
return (int)(VectorMath.addSaturatingUnsigned(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpProvider")
|
|
static void SUADDInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUADD, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::SUADD);
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpMaskProvider")
|
|
static void SUADDInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUADD, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::SUADD);
|
|
}
|
|
|
|
static int SUSUB(int a, int b) {
|
|
return (int)(VectorMath.subSaturatingUnsigned(a, b));
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpProvider")
|
|
static void SUSUBInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUSUB, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, Int128VectorTests::SUSUB);
|
|
}
|
|
|
|
@Test(dataProvider = "intSaturatingBinaryOpMaskProvider")
|
|
static void SUSUBInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.SUSUB, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::SUSUB);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void MINInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.MIN, b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::MIN);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void minInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.min(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::min);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void MAXInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.MAX, b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::MAX);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void maxInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.max(b[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, Int128VectorTests::max);
|
|
}
|
|
|
|
static int ANDReduce(int[] a, int idx) {
|
|
int res = -1;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res &= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ANDReduceAll(int[] a) {
|
|
int res = -1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res &= ANDReduce(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ANDReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = -1;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.AND);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = -1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra &= av.reduceLanes(VectorOperators.AND);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::ANDReduce, Int128VectorTests::ANDReduceAll);
|
|
}
|
|
|
|
static int ANDReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = -1;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res &= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ANDReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = -1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res &= ANDReduceMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ANDReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = -1;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.AND, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = -1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra &= av.reduceLanes(VectorOperators.AND, vmask);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::ANDReduceMasked, Int128VectorTests::ANDReduceAllMasked);
|
|
}
|
|
|
|
static int ORReduce(int[] a, int idx) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res |= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ORReduceAll(int[] a) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res |= ORReduce(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ORReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.OR);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra |= av.reduceLanes(VectorOperators.OR);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::ORReduce, Int128VectorTests::ORReduceAll);
|
|
}
|
|
|
|
static int ORReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res |= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ORReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res |= ORReduceMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ORReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.OR, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra |= av.reduceLanes(VectorOperators.OR, vmask);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::ORReduceMasked, Int128VectorTests::ORReduceAllMasked);
|
|
}
|
|
|
|
static int XORReduce(int[] a, int idx) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res ^= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int XORReduceAll(int[] a) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res ^= XORReduce(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void XORReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.XOR);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra ^= av.reduceLanes(VectorOperators.XOR);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::XORReduce, Int128VectorTests::XORReduceAll);
|
|
}
|
|
|
|
static int XORReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res ^= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int XORReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res ^= XORReduceMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void XORReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.XOR, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra ^= av.reduceLanes(VectorOperators.XOR, vmask);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::XORReduceMasked, Int128VectorTests::XORReduceAllMasked);
|
|
}
|
|
|
|
static int ADDReduce(int[] a, int idx) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res += a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ADDReduceAll(int[] a) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res += ADDReduce(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ADDReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.ADD);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra += av.reduceLanes(VectorOperators.ADD);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::ADDReduce, Int128VectorTests::ADDReduceAll);
|
|
}
|
|
|
|
static int ADDReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res += a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int ADDReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res += ADDReduceMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ADDReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.ADD, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra += av.reduceLanes(VectorOperators.ADD, vmask);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::ADDReduceMasked, Int128VectorTests::ADDReduceAllMasked);
|
|
}
|
|
|
|
static int MULReduce(int[] a, int idx) {
|
|
int res = 1;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res *= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MULReduceAll(int[] a) {
|
|
int res = 1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res *= MULReduce(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void MULReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = 1;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MUL);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra *= av.reduceLanes(VectorOperators.MUL);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::MULReduce, Int128VectorTests::MULReduceAll);
|
|
}
|
|
|
|
static int MULReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = 1;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res *= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MULReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = 1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res *= MULReduceMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void MULReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = 1;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MUL, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = 1;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra *= av.reduceLanes(VectorOperators.MUL, vmask);
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::MULReduceMasked, Int128VectorTests::MULReduceAllMasked);
|
|
}
|
|
|
|
static int MINReduce(int[] a, int idx) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res = (int) Math.min(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MINReduceAll(int[] a) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) Math.min(res, MINReduce(a, i));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void MINReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = Integer.MAX_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MIN);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) Math.min(ra, av.reduceLanes(VectorOperators.MIN));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::MINReduce, Int128VectorTests::MINReduceAll);
|
|
}
|
|
|
|
static int MINReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res = (int) Math.min(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MINReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) Math.min(res, MINReduceMasked(a, i, mask));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void MINReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = Integer.MAX_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MIN, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) Math.min(ra, av.reduceLanes(VectorOperators.MIN, vmask));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::MINReduceMasked, Int128VectorTests::MINReduceAllMasked);
|
|
}
|
|
|
|
static int MAXReduce(int[] a, int idx) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res = (int) Math.max(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MAXReduceAll(int[] a) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) Math.max(res, MAXReduce(a, i));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void MAXReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = Integer.MIN_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MAX);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) Math.max(ra, av.reduceLanes(VectorOperators.MAX));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::MAXReduce, Int128VectorTests::MAXReduceAll);
|
|
}
|
|
|
|
static int MAXReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res = (int) Math.max(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int MAXReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) Math.max(res, MAXReduceMasked(a, i, mask));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void MAXReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = Integer.MIN_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.MAX, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) Math.max(ra, av.reduceLanes(VectorOperators.MAX, vmask));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::MAXReduceMasked, Int128VectorTests::MAXReduceAllMasked);
|
|
}
|
|
|
|
static int UMINReduce(int[] a, int idx) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res = (int) VectorMath.minUnsigned(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int UMINReduceAll(int[] a) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) VectorMath.minUnsigned(res, UMINReduce(a, i));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void UMINReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = Integer.MAX_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.UMIN);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) VectorMath.minUnsigned(ra, av.reduceLanes(VectorOperators.UMIN));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::UMINReduce, Int128VectorTests::UMINReduceAll);
|
|
}
|
|
|
|
static int UMINReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res = (int) VectorMath.minUnsigned(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int UMINReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) VectorMath.minUnsigned(res, UMINReduceMasked(a, i, mask));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void UMINReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = Integer.MAX_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.UMIN, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MAX_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) VectorMath.minUnsigned(ra, av.reduceLanes(VectorOperators.UMIN, vmask));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::UMINReduceMasked, Int128VectorTests::UMINReduceAllMasked);
|
|
}
|
|
|
|
static int UMAXReduce(int[] a, int idx) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res = (int) VectorMath.maxUnsigned(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int UMAXReduceAll(int[] a) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) VectorMath.maxUnsigned(res, UMAXReduce(a, i));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void UMAXReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = Integer.MIN_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.UMAX);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) VectorMath.maxUnsigned(ra, av.reduceLanes(VectorOperators.UMAX));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::UMAXReduce, Int128VectorTests::UMAXReduceAll);
|
|
}
|
|
|
|
static int UMAXReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res = (int) VectorMath.maxUnsigned(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int UMAXReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = (int) VectorMath.maxUnsigned(res, UMAXReduceMasked(a, i, mask));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void UMAXReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = Integer.MIN_VALUE;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.UMAX, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = Integer.MIN_VALUE;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = (int) VectorMath.maxUnsigned(ra, av.reduceLanes(VectorOperators.UMAX, vmask));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::UMAXReduceMasked, Int128VectorTests::UMAXReduceAllMasked);
|
|
}
|
|
|
|
static int FIRST_NONZEROReduce(int[] a, int idx) {
|
|
int res = (int) 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res = firstNonZero(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int FIRST_NONZEROReduceAll(int[] a) {
|
|
int res = (int) 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = firstNonZero(res, FIRST_NONZEROReduce(a, i));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void FIRST_NONZEROReduceInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
int ra = (int) 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.FIRST_NONZERO);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = (int) 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = firstNonZero(ra, av.reduceLanes(VectorOperators.FIRST_NONZERO));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEquals(r, ra, a,
|
|
Int128VectorTests::FIRST_NONZEROReduce, Int128VectorTests::FIRST_NONZEROReduceAll);
|
|
}
|
|
|
|
static int FIRST_NONZEROReduceMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = (int) 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if (mask[i % SPECIES.length()])
|
|
res = firstNonZero(res, a[i]);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static int FIRST_NONZEROReduceAllMasked(int[] a, boolean[] mask) {
|
|
int res = (int) 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res = firstNonZero(res, FIRST_NONZEROReduceMasked(a, i, mask));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void FIRST_NONZEROReduceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int ra = (int) 0;
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanes(VectorOperators.FIRST_NONZERO, vmask);
|
|
}
|
|
}
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
ra = (int) 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
ra = firstNonZero(ra, av.reduceLanes(VectorOperators.FIRST_NONZERO, vmask));
|
|
}
|
|
}
|
|
|
|
assertReductionArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::FIRST_NONZEROReduceMasked, Int128VectorTests::FIRST_NONZEROReduceAllMasked);
|
|
}
|
|
|
|
static boolean anyTrue(boolean[] a, int idx) {
|
|
boolean res = false;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res |= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "boolUnaryOpProvider")
|
|
static void anyTrueInt128VectorTests(IntFunction<boolean[]> fm) {
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
boolean[] r = fmr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < mask.length; i += SPECIES.length()) {
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, i);
|
|
r[i] = vmask.anyTrue();
|
|
}
|
|
}
|
|
|
|
assertReductionBoolArraysEquals(r, mask, Int128VectorTests::anyTrue);
|
|
}
|
|
|
|
static boolean allTrue(boolean[] a, int idx) {
|
|
boolean res = true;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res &= a[i];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "boolUnaryOpProvider")
|
|
static void allTrueInt128VectorTests(IntFunction<boolean[]> fm) {
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
boolean[] r = fmr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < mask.length; i += SPECIES.length()) {
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, i);
|
|
r[i] = vmask.allTrue();
|
|
}
|
|
}
|
|
|
|
assertReductionBoolArraysEquals(r, mask, Int128VectorTests::allTrue);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void withInt128VectorTests(IntFunction<int []> fa, IntFunction<int []> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0, j = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.withLane(j, b[i + j]).intoArray(r, i);
|
|
a[i + j] = b[i + j];
|
|
j = (j + 1) & (SPECIES.length() - 1);
|
|
}
|
|
}
|
|
|
|
|
|
assertArraysStrictlyEquals(r, a);
|
|
}
|
|
|
|
static boolean testIS_DEFAULT(int a) {
|
|
return bits(a)==0;
|
|
}
|
|
|
|
@Test(dataProvider = "intTestOpProvider")
|
|
static void IS_DEFAULTInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.test(VectorOperators.IS_DEFAULT);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), testIS_DEFAULT(a[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intTestOpMaskProvider")
|
|
static void IS_DEFAULTMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.test(VectorOperators.IS_DEFAULT, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), vmask.laneIsSet(j) && testIS_DEFAULT(a[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static boolean testIS_NEGATIVE(int a) {
|
|
return bits(a)<0;
|
|
}
|
|
|
|
@Test(dataProvider = "intTestOpProvider")
|
|
static void IS_NEGATIVEInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.test(VectorOperators.IS_NEGATIVE);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), testIS_NEGATIVE(a[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intTestOpMaskProvider")
|
|
static void IS_NEGATIVEMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.test(VectorOperators.IS_NEGATIVE, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), vmask.laneIsSet(j) && testIS_NEGATIVE(a[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void LTInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), lt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void ltInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.lt(bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), lt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void LTInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && lt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void GTInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.GT, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), gt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void GTInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.GT, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && gt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void EQInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), eq(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void eqInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.eq(bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), eq(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void EQInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && eq(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void NEInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.NE, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), neq(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void NEInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.NE, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && neq(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void LEInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LE, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), le(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void LEInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LE, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && le(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void GEInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.GE, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), ge(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void GEInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.GE, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && ge(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void ULTInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.ULT, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), ult(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void ULTInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.ULT, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && ult(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void UGTInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.UGT, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), ugt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void UGTInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.UGT, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && ugt(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void ULEInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.ULE, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), ule(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void ULEInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.ULE, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && ule(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void UGEInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.UGE, bv);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), uge(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void UGEInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.UGE, bv, vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && uge(a[i + j], b[i + j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void LTInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] < b[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void LTInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa,
|
|
IntFunction<int[]> fb, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, b[i], vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && (a[i + j] < b[i]));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void LTInt128VectorTestsBroadcastLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, (long)b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] < (int)((long)b[i]));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void LTInt128VectorTestsBroadcastLongMaskedSmokeTest(IntFunction<int[]> fa,
|
|
IntFunction<int[]> fb, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.LT, (long)b[i], vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && (a[i + j] < (int)((long)b[i])));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void EQInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] == b[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void EQInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa,
|
|
IntFunction<int[]> fb, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, b[i], vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && (a[i + j] == b[i]));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void EQInt128VectorTestsBroadcastLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, (long)b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] == (int)((long)b[i]));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpMaskProvider")
|
|
static void EQInt128VectorTestsBroadcastLongMaskedSmokeTest(IntFunction<int[]> fa,
|
|
IntFunction<int[]> fb, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.compare(VectorOperators.EQ, (long)b[i], vmask);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), mask[j] && (a[i + j] == (int)((long)b[i])));
|
|
}
|
|
}
|
|
}
|
|
|
|
static int blend(int a, int b, boolean mask) {
|
|
return mask ? b : a;
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void blendInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.blend(bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, mask, Int128VectorTests::blend);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpShuffleProvider")
|
|
static void RearrangeInt128VectorTests(IntFunction<int[]> fa,
|
|
BiFunction<Integer,Integer,int[]> fs) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] order = fs.apply(a.length, SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.rearrange(VectorShuffle.fromArray(SPECIES, order, i)).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertRearrangeArraysEquals(r, a, order, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpShuffleMaskProvider")
|
|
static void RearrangeInt128VectorTestsMaskedSmokeTest(IntFunction<int[]> fa,
|
|
BiFunction<Integer,Integer,int[]> fs,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] order = fs.apply(a.length, SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.rearrange(VectorShuffle.fromArray(SPECIES, order, i), vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertRearrangeArraysEquals(r, a, order, mask, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void compressInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.compress(vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertcompressArraysEquals(r, a, mask, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void expandInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.expand(vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertexpandArraysEquals(r, a, mask, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void getInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
int num_lanes = SPECIES.length();
|
|
// Manually unroll because full unroll happens after intrinsification.
|
|
// Unroll is needed because get intrinsic requires for index to be a known constant.
|
|
if (num_lanes == 1) {
|
|
r[i]=av.lane(0);
|
|
} else if (num_lanes == 2) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
} else if (num_lanes == 4) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
r[i+2]=av.lane(2);
|
|
r[i+3]=av.lane(3);
|
|
} else if (num_lanes == 8) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
r[i+2]=av.lane(2);
|
|
r[i+3]=av.lane(3);
|
|
r[i+4]=av.lane(4);
|
|
r[i+5]=av.lane(5);
|
|
r[i+6]=av.lane(6);
|
|
r[i+7]=av.lane(7);
|
|
} else if (num_lanes == 16) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
r[i+2]=av.lane(2);
|
|
r[i+3]=av.lane(3);
|
|
r[i+4]=av.lane(4);
|
|
r[i+5]=av.lane(5);
|
|
r[i+6]=av.lane(6);
|
|
r[i+7]=av.lane(7);
|
|
r[i+8]=av.lane(8);
|
|
r[i+9]=av.lane(9);
|
|
r[i+10]=av.lane(10);
|
|
r[i+11]=av.lane(11);
|
|
r[i+12]=av.lane(12);
|
|
r[i+13]=av.lane(13);
|
|
r[i+14]=av.lane(14);
|
|
r[i+15]=av.lane(15);
|
|
} else if (num_lanes == 32) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
r[i+2]=av.lane(2);
|
|
r[i+3]=av.lane(3);
|
|
r[i+4]=av.lane(4);
|
|
r[i+5]=av.lane(5);
|
|
r[i+6]=av.lane(6);
|
|
r[i+7]=av.lane(7);
|
|
r[i+8]=av.lane(8);
|
|
r[i+9]=av.lane(9);
|
|
r[i+10]=av.lane(10);
|
|
r[i+11]=av.lane(11);
|
|
r[i+12]=av.lane(12);
|
|
r[i+13]=av.lane(13);
|
|
r[i+14]=av.lane(14);
|
|
r[i+15]=av.lane(15);
|
|
r[i+16]=av.lane(16);
|
|
r[i+17]=av.lane(17);
|
|
r[i+18]=av.lane(18);
|
|
r[i+19]=av.lane(19);
|
|
r[i+20]=av.lane(20);
|
|
r[i+21]=av.lane(21);
|
|
r[i+22]=av.lane(22);
|
|
r[i+23]=av.lane(23);
|
|
r[i+24]=av.lane(24);
|
|
r[i+25]=av.lane(25);
|
|
r[i+26]=av.lane(26);
|
|
r[i+27]=av.lane(27);
|
|
r[i+28]=av.lane(28);
|
|
r[i+29]=av.lane(29);
|
|
r[i+30]=av.lane(30);
|
|
r[i+31]=av.lane(31);
|
|
} else if (num_lanes == 64) {
|
|
r[i]=av.lane(0);
|
|
r[i+1]=av.lane(1);
|
|
r[i+2]=av.lane(2);
|
|
r[i+3]=av.lane(3);
|
|
r[i+4]=av.lane(4);
|
|
r[i+5]=av.lane(5);
|
|
r[i+6]=av.lane(6);
|
|
r[i+7]=av.lane(7);
|
|
r[i+8]=av.lane(8);
|
|
r[i+9]=av.lane(9);
|
|
r[i+10]=av.lane(10);
|
|
r[i+11]=av.lane(11);
|
|
r[i+12]=av.lane(12);
|
|
r[i+13]=av.lane(13);
|
|
r[i+14]=av.lane(14);
|
|
r[i+15]=av.lane(15);
|
|
r[i+16]=av.lane(16);
|
|
r[i+17]=av.lane(17);
|
|
r[i+18]=av.lane(18);
|
|
r[i+19]=av.lane(19);
|
|
r[i+20]=av.lane(20);
|
|
r[i+21]=av.lane(21);
|
|
r[i+22]=av.lane(22);
|
|
r[i+23]=av.lane(23);
|
|
r[i+24]=av.lane(24);
|
|
r[i+25]=av.lane(25);
|
|
r[i+26]=av.lane(26);
|
|
r[i+27]=av.lane(27);
|
|
r[i+28]=av.lane(28);
|
|
r[i+29]=av.lane(29);
|
|
r[i+30]=av.lane(30);
|
|
r[i+31]=av.lane(31);
|
|
r[i+32]=av.lane(32);
|
|
r[i+33]=av.lane(33);
|
|
r[i+34]=av.lane(34);
|
|
r[i+35]=av.lane(35);
|
|
r[i+36]=av.lane(36);
|
|
r[i+37]=av.lane(37);
|
|
r[i+38]=av.lane(38);
|
|
r[i+39]=av.lane(39);
|
|
r[i+40]=av.lane(40);
|
|
r[i+41]=av.lane(41);
|
|
r[i+42]=av.lane(42);
|
|
r[i+43]=av.lane(43);
|
|
r[i+44]=av.lane(44);
|
|
r[i+45]=av.lane(45);
|
|
r[i+46]=av.lane(46);
|
|
r[i+47]=av.lane(47);
|
|
r[i+48]=av.lane(48);
|
|
r[i+49]=av.lane(49);
|
|
r[i+50]=av.lane(50);
|
|
r[i+51]=av.lane(51);
|
|
r[i+52]=av.lane(52);
|
|
r[i+53]=av.lane(53);
|
|
r[i+54]=av.lane(54);
|
|
r[i+55]=av.lane(55);
|
|
r[i+56]=av.lane(56);
|
|
r[i+57]=av.lane(57);
|
|
r[i+58]=av.lane(58);
|
|
r[i+59]=av.lane(59);
|
|
r[i+60]=av.lane(60);
|
|
r[i+61]=av.lane(61);
|
|
r[i+62]=av.lane(62);
|
|
r[i+63]=av.lane(63);
|
|
} else {
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
r[i+j]=av.lane(j);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
assertArraysStrictlyEquals(r, a);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void BroadcastInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector.broadcast(SPECIES, a[i]).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ZeroInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector.zero(SPECIES).intoArray(a, i);
|
|
}
|
|
}
|
|
|
|
Assert.assertEquals(a, r);
|
|
}
|
|
|
|
static int[] sliceUnary(int[] a, int origin, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0; i < SPECIES.length(); i++){
|
|
if(i+origin < SPECIES.length())
|
|
res[i] = a[idx+i+origin];
|
|
else
|
|
res[i] = (int)0;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void sliceUnaryInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.slice(origin).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, origin, Int128VectorTests::sliceUnary);
|
|
}
|
|
|
|
static int[] sliceBinary(int[] a, int[] b, int origin, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if(i+origin < SPECIES.length())
|
|
res[i] = a[idx+i+origin];
|
|
else {
|
|
res[i] = b[idx+j];
|
|
j++;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void sliceBinaryInt128VectorTestsBinary(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.slice(origin, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, origin, Int128VectorTests::sliceBinary);
|
|
}
|
|
|
|
static int[] slice(int[] a, int[] b, int origin, boolean[] mask, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if(i+origin < SPECIES.length())
|
|
res[i] = mask[i] ? a[idx+i+origin] : (int)0;
|
|
else {
|
|
res[i] = mask[i] ? b[idx+j] : (int)0;
|
|
j++;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void sliceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.slice(origin, bv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, origin, mask, Int128VectorTests::slice);
|
|
}
|
|
|
|
static int[] unsliceUnary(int[] a, int origin, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if(i < origin)
|
|
res[i] = (int)0;
|
|
else {
|
|
res[i] = a[idx+j];
|
|
j++;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void unsliceUnaryInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.unslice(origin).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, origin, Int128VectorTests::unsliceUnary);
|
|
}
|
|
|
|
static int[] unsliceBinary(int[] a, int[] b, int origin, int part, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if (part == 0) {
|
|
if (i < origin)
|
|
res[i] = b[idx+i];
|
|
else {
|
|
res[i] = a[idx+j];
|
|
j++;
|
|
}
|
|
} else if (part == 1) {
|
|
if (i < origin)
|
|
res[i] = a[idx+SPECIES.length()-origin+i];
|
|
else {
|
|
res[i] = b[idx+origin+j];
|
|
j++;
|
|
}
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpProvider")
|
|
static void unsliceBinaryInt128VectorTestsBinary(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
int part = RAND.nextInt(2);
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.unslice(origin, bv, part).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, origin, part, Int128VectorTests::unsliceBinary);
|
|
}
|
|
|
|
static int[] unslice(int[] a, int[] b, int origin, int part, boolean[] mask, int idx) {
|
|
int[] res = new int[SPECIES.length()];
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if(i+origin < SPECIES.length())
|
|
res[i] = b[idx+i+origin];
|
|
else {
|
|
res[i] = b[idx+j];
|
|
j++;
|
|
}
|
|
}
|
|
for (int i = 0; i < SPECIES.length(); i++){
|
|
res[i] = mask[i] ? a[idx+i] : res[i];
|
|
}
|
|
int[] res1 = new int[SPECIES.length()];
|
|
if (part == 0) {
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if (i < origin)
|
|
res1[i] = b[idx+i];
|
|
else {
|
|
res1[i] = res[j];
|
|
j++;
|
|
}
|
|
}
|
|
} else if (part == 1) {
|
|
for (int i = 0, j = 0; i < SPECIES.length(); i++){
|
|
if (i < origin)
|
|
res1[i] = res[SPECIES.length()-origin+i];
|
|
else {
|
|
res1[i] = b[idx+origin+j];
|
|
j++;
|
|
}
|
|
}
|
|
}
|
|
return res1;
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void unsliceInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
int[] r = new int[a.length];
|
|
int origin = RAND.nextInt(SPECIES.length());
|
|
int part = RAND.nextInt(2);
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.unslice(origin, bv, part, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, origin, part, mask, Int128VectorTests::unslice);
|
|
}
|
|
|
|
static int BITWISE_BLEND(int a, int b, int c) {
|
|
return (int)((a&~(c))|(b&c));
|
|
}
|
|
|
|
static int bitwiseBlend(int a, int b, int c) {
|
|
return (int)((a&~(c))|(b&c));
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void BITWISE_BLENDInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, bv, cv).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, c, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void bitwiseBlendInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.bitwiseBlend(bv, cv).intoArray(r, i);
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, c, Int128VectorTests::bitwiseBlend);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpMaskProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<int[]> fc, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, bv, cv, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, b, c, mask, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, bv, c[i]).intoArray(r, i);
|
|
}
|
|
assertBroadcastArraysEquals(r, a, b, c, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsAltBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, b[i], cv).intoArray(r, i);
|
|
}
|
|
assertAltBroadcastArraysEquals(r, a, b, c, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void bitwiseBlendInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.bitwiseBlend(bv, c[i]).intoArray(r, i);
|
|
}
|
|
assertBroadcastArraysEquals(r, a, b, c, Int128VectorTests::bitwiseBlend);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void bitwiseBlendInt128VectorTestsAltBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.bitwiseBlend(b[i], cv).intoArray(r, i);
|
|
}
|
|
assertAltBroadcastArraysEquals(r, a, b, c, Int128VectorTests::bitwiseBlend);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpMaskProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<int[]> fc, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, bv, c[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertBroadcastArraysEquals(r, a, b, c, mask, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpMaskProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsAltBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<int[]> fc, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector cv = IntVector.fromArray(SPECIES, c, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, b[i], cv, vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertAltBroadcastArraysEquals(r, a, b, c, mask, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsDoubleBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, b[i], c[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertDoubleBroadcastArraysEquals(r, a, b, c, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpProvider")
|
|
static void bitwiseBlendInt128VectorTestsDoubleBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.bitwiseBlend(b[i], c[i]).intoArray(r, i);
|
|
}
|
|
|
|
assertDoubleBroadcastArraysEquals(r, a, b, c, Int128VectorTests::bitwiseBlend);
|
|
}
|
|
|
|
@Test(dataProvider = "intTernaryOpMaskProvider")
|
|
static void BITWISE_BLENDInt128VectorTestsDoubleBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<int[]> fc, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] c = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.BITWISE_BLEND, b[i], c[i], vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertDoubleBroadcastArraysEquals(r, a, b, c, mask, Int128VectorTests::BITWISE_BLEND);
|
|
}
|
|
|
|
static int NEG(int a) {
|
|
return (int)(-((int)a));
|
|
}
|
|
|
|
static int neg(int a) {
|
|
return (int)(-((int)a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void NEGInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.NEG).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::NEG);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void negInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.neg().intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::neg);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void NEGMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.NEG, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::NEG);
|
|
}
|
|
|
|
static int ABS(int a) {
|
|
return (int)(Math.abs((int)a));
|
|
}
|
|
|
|
static int abs(int a) {
|
|
return (int)(Math.abs((int)a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ABSInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ABS).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::ABS);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void absInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.abs().intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::abs);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ABSMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ABS, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::ABS);
|
|
}
|
|
|
|
static int NOT(int a) {
|
|
return (int)(~((int)a));
|
|
}
|
|
|
|
static int not(int a) {
|
|
return (int)(~((int)a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void NOTInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.NOT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::NOT);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void notInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.not().intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::not);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void NOTMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.NOT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::NOT);
|
|
}
|
|
|
|
static int ZOMO(int a) {
|
|
return (int)((a==0?0:-1));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ZOMOInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ZOMO).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::ZOMO);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ZOMOMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.ZOMO, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::ZOMO);
|
|
}
|
|
|
|
static int BIT_COUNT(int a) {
|
|
return (int)(Integer.bitCount(a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void BIT_COUNTInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.BIT_COUNT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::BIT_COUNT);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void BIT_COUNTMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.BIT_COUNT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::BIT_COUNT);
|
|
}
|
|
|
|
static int TRAILING_ZEROS_COUNT(int a) {
|
|
return (int)(TRAILING_ZEROS_COUNT_scalar(a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void TRAILING_ZEROS_COUNTInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.TRAILING_ZEROS_COUNT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::TRAILING_ZEROS_COUNT);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void TRAILING_ZEROS_COUNTMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.TRAILING_ZEROS_COUNT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::TRAILING_ZEROS_COUNT);
|
|
}
|
|
|
|
static int LEADING_ZEROS_COUNT(int a) {
|
|
return (int)(LEADING_ZEROS_COUNT_scalar(a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void LEADING_ZEROS_COUNTInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LEADING_ZEROS_COUNT).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::LEADING_ZEROS_COUNT);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void LEADING_ZEROS_COUNTMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.LEADING_ZEROS_COUNT, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::LEADING_ZEROS_COUNT);
|
|
}
|
|
|
|
static int REVERSE(int a) {
|
|
return (int)(REVERSE_scalar(a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void REVERSEInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.REVERSE).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::REVERSE);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void REVERSEMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.REVERSE, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::REVERSE);
|
|
}
|
|
|
|
static int REVERSE_BYTES(int a) {
|
|
return (int)(Integer.reverseBytes(a));
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void REVERSE_BYTESInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.REVERSE_BYTES).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, Int128VectorTests::REVERSE_BYTES);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void REVERSE_BYTESMaskedInt128VectorTests(IntFunction<int[]> fa,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.lanewise(VectorOperators.REVERSE_BYTES, vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
|
|
assertArraysEquals(r, a, mask, Int128VectorTests::REVERSE_BYTES);
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void ltInt128VectorTestsBroadcastSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.lt(b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] < b[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intCompareOpProvider")
|
|
static void eqInt128VectorTestsBroadcastMaskedSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
VectorMask<Integer> mv = av.eq(b[i]);
|
|
|
|
// Check results as part of computation.
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(mv.laneIsSet(j), a[i + j] == b[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void toIntArrayInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
int[] r = av.toIntArray();
|
|
assertArraysEquals(r, a, i);
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void toLongArrayInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
long[] r = av.toLongArray();
|
|
assertArraysEquals(r, a, i);
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void toDoubleArrayInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
double[] r = av.toDoubleArray();
|
|
assertArraysEquals(r, a, i);
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void toStringInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
String str = av.toString();
|
|
|
|
int subarr[] = Arrays.copyOfRange(a, i, i + SPECIES.length());
|
|
Assert.assertTrue(str.equals(Arrays.toString(subarr)), "at index " + i + ", string should be = " + Arrays.toString(subarr) + ", but is = " + str);
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void hashCodeInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
int hash = av.hashCode();
|
|
|
|
int subarr[] = Arrays.copyOfRange(a, i, i + SPECIES.length());
|
|
int expectedHash = Objects.hash(SPECIES, Arrays.hashCode(subarr));
|
|
Assert.assertTrue(hash == expectedHash, "at index " + i + ", hash should be = " + expectedHash + ", but is = " + hash);
|
|
}
|
|
}
|
|
|
|
|
|
static long ADDReduceLong(int[] a, int idx) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
res += a[i];
|
|
}
|
|
|
|
return (long)res;
|
|
}
|
|
|
|
static long ADDReduceAllLong(int[] a) {
|
|
long res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res += ADDReduceLong(a, i);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void ADDReduceLongInt128VectorTests(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
long[] r = lfr.apply(SPECIES.length());
|
|
long ra = 0;
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanesToLong(VectorOperators.ADD);
|
|
}
|
|
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i ++) {
|
|
ra += r[i];
|
|
}
|
|
|
|
assertReductionLongArraysEquals(r, ra, a,
|
|
Int128VectorTests::ADDReduceLong, Int128VectorTests::ADDReduceAllLong);
|
|
}
|
|
|
|
static long ADDReduceLongMasked(int[] a, int idx, boolean[] mask) {
|
|
int res = 0;
|
|
for (int i = idx; i < (idx + SPECIES.length()); i++) {
|
|
if(mask[i % SPECIES.length()])
|
|
res += a[i];
|
|
}
|
|
|
|
return (long)res;
|
|
}
|
|
|
|
static long ADDReduceAllLongMasked(int[] a, boolean[] mask) {
|
|
long res = 0;
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
res += ADDReduceLongMasked(a, i, mask);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpMaskProvider")
|
|
static void ADDReduceLongInt128VectorTestsMasked(IntFunction<int[]> fa, IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
long[] r = lfr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
long ra = 0;
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
r[i] = av.reduceLanesToLong(VectorOperators.ADD, vmask);
|
|
}
|
|
|
|
ra = 0;
|
|
for (int i = 0; i < a.length; i ++) {
|
|
ra += r[i];
|
|
}
|
|
|
|
assertReductionLongArraysEqualsMasked(r, ra, a, mask,
|
|
Int128VectorTests::ADDReduceLongMasked, Int128VectorTests::ADDReduceAllLongMasked);
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpProvider")
|
|
static void BroadcastLongInt128VectorTestsSmokeTest(IntFunction<int[]> fa) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector.broadcast(SPECIES, (long)a[i]).intoArray(r, i);
|
|
}
|
|
assertBroadcastArraysEquals(r, a);
|
|
}
|
|
|
|
@Test(dataProvider = "intBinaryOpMaskProvider")
|
|
static void blendInt128VectorTestsBroadcastLongSmokeTest(IntFunction<int[]> fa, IntFunction<int[]> fb,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
av.blend((long)b[i], vmask).intoArray(r, i);
|
|
}
|
|
}
|
|
assertBroadcastLongArraysEquals(r, a, b, mask, Int128VectorTests::blend);
|
|
}
|
|
|
|
|
|
@Test(dataProvider = "intUnaryOpShuffleProvider")
|
|
static void SelectFromInt128VectorTests(IntFunction<int[]> fa,
|
|
BiFunction<Integer,Integer,int[]> fs) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] order = fs.apply(a.length, SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, order, i);
|
|
bv.selectFrom(av).intoArray(r, i);
|
|
}
|
|
|
|
assertSelectFromArraysEquals(r, a, order, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intSelectFromTwoVectorOpProvider")
|
|
static void SelectFromTwoVectorInt128VectorTests(IntFunction<int[]> fa, IntFunction<int[]> fb, IntFunction<int[]> fc) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length());
|
|
int[] idx = fc.apply(SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < idx.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, b, i);
|
|
IntVector idxv = IntVector.fromArray(SPECIES, idx, i);
|
|
idxv.selectFrom(av, bv).intoArray(r, i);
|
|
}
|
|
}
|
|
assertSelectFromTwoVectorEquals(r, idx, a, b, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "intUnaryOpShuffleMaskProvider")
|
|
static void SelectFromInt128VectorTestsMaskedSmokeTest(IntFunction<int[]> fa,
|
|
BiFunction<Integer,Integer,int[]> fs,
|
|
IntFunction<boolean[]> fm) {
|
|
int[] a = fa.apply(SPECIES.length());
|
|
int[] order = fs.apply(a.length, SPECIES.length());
|
|
int[] r = fr.apply(SPECIES.length());
|
|
boolean[] mask = fm.apply(SPECIES.length());
|
|
VectorMask<Integer> vmask = VectorMask.fromArray(SPECIES, mask, 0);
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
IntVector av = IntVector.fromArray(SPECIES, a, i);
|
|
IntVector bv = IntVector.fromArray(SPECIES, order, i);
|
|
bv.selectFrom(av, vmask).intoArray(r, i);
|
|
}
|
|
|
|
assertSelectFromArraysEquals(r, a, order, mask, SPECIES.length());
|
|
}
|
|
|
|
@Test(dataProvider = "shuffleProvider")
|
|
static void shuffleMiscellaneousInt128VectorTestsSmokeTest(BiFunction<Integer,Integer,int[]> fs) {
|
|
int[] a = fs.apply(SPECIES.length() * BUFFER_REPS, SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var shuffle = VectorShuffle.fromArray(SPECIES, a, i);
|
|
int hash = shuffle.hashCode();
|
|
int length = shuffle.length();
|
|
|
|
int subarr[] = Arrays.copyOfRange(a, i, i + SPECIES.length());
|
|
int expectedHash = Objects.hash(SPECIES, Arrays.hashCode(subarr));
|
|
Assert.assertTrue(hash == expectedHash, "at index " + i + ", hash should be = " + expectedHash + ", but is = " + hash);
|
|
Assert.assertEquals(length, SPECIES.length());
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "shuffleProvider")
|
|
static void shuffleToStringInt128VectorTestsSmokeTest(BiFunction<Integer,Integer,int[]> fs) {
|
|
int[] a = fs.apply(SPECIES.length() * BUFFER_REPS, SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var shuffle = VectorShuffle.fromArray(SPECIES, a, i);
|
|
String str = shuffle.toString();
|
|
|
|
int subarr[] = Arrays.copyOfRange(a, i, i + SPECIES.length());
|
|
Assert.assertTrue(str.equals("Shuffle" + Arrays.toString(subarr)), "at index " +
|
|
i + ", string should be = " + Arrays.toString(subarr) + ", but is = " + str);
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "shuffleCompareOpProvider")
|
|
static void shuffleEqualsInt128VectorTestsSmokeTest(BiFunction<Integer,Integer,int[]> fa, BiFunction<Integer,Integer,int[]> fb) {
|
|
int[] a = fa.apply(SPECIES.length() * BUFFER_REPS, SPECIES.length());
|
|
int[] b = fb.apply(SPECIES.length() * BUFFER_REPS, SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = VectorShuffle.fromArray(SPECIES, a, i);
|
|
var bv = VectorShuffle.fromArray(SPECIES, b, i);
|
|
boolean eq = av.equals(bv);
|
|
int to = i + SPECIES.length();
|
|
Assert.assertEquals(eq, Arrays.equals(a, i, to, b, i, to));
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskEqualsInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
boolean equals = av.equals(bv);
|
|
int to = i + SPECIES.length();
|
|
Assert.assertEquals(equals, Arrays.equals(a, i, to, b, i, to));
|
|
}
|
|
}
|
|
|
|
static boolean band(boolean a, boolean b) {
|
|
return a & b;
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskAndInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
boolean[] r = new boolean[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
var cv = av.and(bv);
|
|
cv.intoArray(r, i);
|
|
}
|
|
assertArraysEquals(r, a, b, Int128VectorTests::band);
|
|
}
|
|
|
|
static boolean bor(boolean a, boolean b) {
|
|
return a | b;
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskOrInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
boolean[] r = new boolean[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
var cv = av.or(bv);
|
|
cv.intoArray(r, i);
|
|
}
|
|
assertArraysEquals(r, a, b, Int128VectorTests::bor);
|
|
}
|
|
|
|
static boolean bxor(boolean a, boolean b) {
|
|
return a != b;
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskXorInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
boolean[] r = new boolean[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
var cv = av.xor(bv);
|
|
cv.intoArray(r, i);
|
|
}
|
|
assertArraysEquals(r, a, b, Int128VectorTests::bxor);
|
|
}
|
|
|
|
static boolean bandNot(boolean a, boolean b) {
|
|
return a & !b;
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskAndNotInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
boolean[] r = new boolean[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
var cv = av.andNot(bv);
|
|
cv.intoArray(r, i);
|
|
}
|
|
assertArraysEquals(r, a, b, Int128VectorTests::bandNot);
|
|
}
|
|
|
|
static boolean beq(boolean a, boolean b) {
|
|
return (a == b);
|
|
}
|
|
|
|
@Test(dataProvider = "maskCompareOpProvider")
|
|
static void maskEqInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa, IntFunction<boolean[]> fb) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
boolean[] b = fb.apply(SPECIES.length());
|
|
boolean[] r = new boolean[a.length];
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var av = SPECIES.loadMask(a, i);
|
|
var bv = SPECIES.loadMask(b, i);
|
|
var cv = av.eq(bv);
|
|
cv.intoArray(r, i);
|
|
}
|
|
assertArraysEquals(r, a, b, Int128VectorTests::beq);
|
|
}
|
|
|
|
@Test(dataProvider = "maskProvider")
|
|
static void maskHashCodeInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var vmask = SPECIES.loadMask(a, i);
|
|
int hash = vmask.hashCode();
|
|
|
|
boolean subarr[] = Arrays.copyOfRange(a, i, i + SPECIES.length());
|
|
int expectedHash = Objects.hash(SPECIES, Arrays.hashCode(subarr));
|
|
Assert.assertTrue(hash == expectedHash, "at index " + i + ", hash should be = " + expectedHash + ", but is = " + hash);
|
|
}
|
|
}
|
|
|
|
static int maskTrueCount(boolean[] a, int idx) {
|
|
int trueCount = 0;
|
|
for (int i = idx; i < idx + SPECIES.length(); i++) {
|
|
trueCount += a[i] ? 1 : 0;
|
|
}
|
|
return trueCount;
|
|
}
|
|
|
|
@Test(dataProvider = "maskProvider")
|
|
static void maskTrueCountInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT * INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var vmask = SPECIES.loadMask(a, i);
|
|
r[i] = vmask.trueCount();
|
|
}
|
|
}
|
|
|
|
assertMaskReductionArraysEquals(r, a, Int128VectorTests::maskTrueCount);
|
|
}
|
|
|
|
static int maskLastTrue(boolean[] a, int idx) {
|
|
int i = idx + SPECIES.length() - 1;
|
|
for (; i >= idx; i--) {
|
|
if (a[i]) {
|
|
break;
|
|
}
|
|
}
|
|
return i - idx;
|
|
}
|
|
|
|
@Test(dataProvider = "maskProvider")
|
|
static void maskLastTrueInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT * INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var vmask = SPECIES.loadMask(a, i);
|
|
r[i] = vmask.lastTrue();
|
|
}
|
|
}
|
|
|
|
assertMaskReductionArraysEquals(r, a, Int128VectorTests::maskLastTrue);
|
|
}
|
|
|
|
static int maskFirstTrue(boolean[] a, int idx) {
|
|
int i = idx;
|
|
for (; i < idx + SPECIES.length(); i++) {
|
|
if (a[i]) {
|
|
break;
|
|
}
|
|
}
|
|
return i - idx;
|
|
}
|
|
|
|
@Test(dataProvider = "maskProvider")
|
|
static void maskFirstTrueInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa) {
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
int[] r = new int[a.length];
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT * INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var vmask = SPECIES.loadMask(a, i);
|
|
r[i] = vmask.firstTrue();
|
|
}
|
|
}
|
|
|
|
assertMaskReductionArraysEquals(r, a, Int128VectorTests::maskFirstTrue);
|
|
}
|
|
|
|
@Test(dataProvider = "maskProvider")
|
|
static void maskCompressInt128VectorTestsSmokeTest(IntFunction<boolean[]> fa) {
|
|
int trueCount = 0;
|
|
boolean[] a = fa.apply(SPECIES.length());
|
|
|
|
for (int ic = 0; ic < INVOC_COUNT * INVOC_COUNT; ic++) {
|
|
for (int i = 0; i < a.length; i += SPECIES.length()) {
|
|
var vmask = SPECIES.loadMask(a, i);
|
|
trueCount = vmask.trueCount();
|
|
var rmask = vmask.compress();
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
Assert.assertEquals(rmask.laneIsSet(j), j < trueCount);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@DataProvider
|
|
public static Object[][] longMaskProvider() {
|
|
return new Object[][]{
|
|
{0xFFFFFFFFFFFFFFFFL},
|
|
{0x0000000000000000L},
|
|
{0x5555555555555555L},
|
|
{0x0123456789abcdefL},
|
|
};
|
|
}
|
|
|
|
@Test(dataProvider = "longMaskProvider")
|
|
static void maskFromToLongInt128VectorTestsSmokeTest(long inputLong) {
|
|
var vmask = VectorMask.fromLong(SPECIES, inputLong);
|
|
long outputLong = vmask.toLong();
|
|
Assert.assertEquals(outputLong, (inputLong & (((0xFFFFFFFFFFFFFFFFL >>> (64 - SPECIES.length()))))));
|
|
}
|
|
|
|
@DataProvider
|
|
public static Object[][] offsetProvider() {
|
|
return new Object[][]{
|
|
{0},
|
|
{-1},
|
|
{+1},
|
|
{+2},
|
|
{-2},
|
|
};
|
|
}
|
|
|
|
@Test(dataProvider = "offsetProvider")
|
|
static void indexInRangeInt128VectorTestsSmokeTest(int offset) {
|
|
int limit = SPECIES.length() * BUFFER_REPS;
|
|
for (int i = 0; i < limit; i += SPECIES.length()) {
|
|
var actualMask = SPECIES.indexInRange(i + offset, limit);
|
|
var expectedMask = SPECIES.maskAll(true).indexInRange(i + offset, limit);
|
|
assert(actualMask.equals(expectedMask));
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
int index = i + j + offset;
|
|
Assert.assertEquals(actualMask.laneIsSet(j), index >= 0 && index < limit);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test(dataProvider = "offsetProvider")
|
|
static void indexInRangeLongInt128VectorTestsSmokeTest(int offset) {
|
|
long limit = SPECIES.length() * BUFFER_REPS;
|
|
for (long i = 0; i < limit; i += SPECIES.length()) {
|
|
var actualMask = SPECIES.indexInRange(i + offset, limit);
|
|
var expectedMask = SPECIES.maskAll(true).indexInRange(i + offset, limit);
|
|
assert(actualMask.equals(expectedMask));
|
|
for (int j = 0; j < SPECIES.length(); j++) {
|
|
long index = i + j + offset;
|
|
Assert.assertEquals(actualMask.laneIsSet(j), index >= 0 && index < limit);
|
|
}
|
|
}
|
|
}
|
|
|
|
@DataProvider
|
|
public static Object[][] lengthProvider() {
|
|
return new Object[][]{
|
|
{0},
|
|
{1},
|
|
{32},
|
|
{37},
|
|
{1024},
|
|
{1024+1},
|
|
{1024+5},
|
|
};
|
|
}
|
|
|
|
@Test(dataProvider = "lengthProvider")
|
|
static void loopBoundInt128VectorTestsSmokeTest(int length) {
|
|
int actualLoopBound = SPECIES.loopBound(length);
|
|
int expectedLoopBound = length - Math.floorMod(length, SPECIES.length());
|
|
Assert.assertEquals(actualLoopBound, expectedLoopBound);
|
|
}
|
|
|
|
@Test(dataProvider = "lengthProvider")
|
|
static void loopBoundLongInt128VectorTestsSmokeTest(int _length) {
|
|
long length = _length;
|
|
long actualLoopBound = SPECIES.loopBound(length);
|
|
long expectedLoopBound = length - Math.floorMod(length, SPECIES.length());
|
|
Assert.assertEquals(actualLoopBound, expectedLoopBound);
|
|
}
|
|
|
|
@Test
|
|
static void ElementSizeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
int elsize = av.elementSize();
|
|
Assert.assertEquals(elsize, Integer.SIZE);
|
|
}
|
|
|
|
@Test
|
|
static void VectorShapeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
VectorShape vsh = av.shape();
|
|
assert(vsh.equals(VectorShape.S_128_BIT));
|
|
}
|
|
|
|
@Test
|
|
static void ShapeWithLanesInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
VectorShape vsh = av.shape();
|
|
VectorSpecies species = vsh.withLanes(int.class);
|
|
assert(species.equals(SPECIES));
|
|
}
|
|
|
|
@Test
|
|
static void ElementTypeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
assert(av.species().elementType() == int.class);
|
|
}
|
|
|
|
@Test
|
|
static void SpeciesElementSizeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
assert(av.species().elementSize() == Integer.SIZE);
|
|
}
|
|
|
|
@Test
|
|
static void VectorTypeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
assert(av.species().vectorType() == av.getClass());
|
|
}
|
|
|
|
@Test
|
|
static void WithLanesInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
VectorSpecies species = av.species().withLanes(int.class);
|
|
assert(species.equals(SPECIES));
|
|
}
|
|
|
|
@Test
|
|
static void WithShapeInt128VectorTestsSmokeTest() {
|
|
IntVector av = IntVector.zero(SPECIES);
|
|
VectorShape vsh = av.shape();
|
|
VectorSpecies species = av.species().withShape(vsh);
|
|
assert(species.equals(SPECIES));
|
|
}
|
|
|
|
@Test
|
|
static void MaskAllTrueInt128VectorTestsSmokeTest() {
|
|
for (int ic = 0; ic < INVOC_COUNT; ic++) {
|
|
Assert.assertEquals(SPECIES.maskAll(true).toLong(), -1L >>> (64 - SPECIES.length()));
|
|
}
|
|
}
|
|
}
|