blob: cfa25696f832839ed175327bdc7759348be42612 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2 -mavx512bw" } */
/* { dg-require-effective-target avx512bw } */
#define AVX512BW
#include "avx512f-helper.h"
#define SIZE (AVX512F_LEN / 16)
#include "avx512f-mask-type.h"
void
CALC (short *src1, short *src2, short *dst)
{
int i;
for (i = 0; i < SIZE; i++)
dst[i] = (short) ((int) src1[i] * (int) src2[i]);
}
void
TEST (void)
{
UNION_TYPE (AVX512F_LEN, i_w) src1, src2, dst1, dst2, dst3;
short dst_ref[SIZE];
MASK_TYPE mask = MASK_VALUE;
int i, sign = 1;
for (i = 0; i < SIZE; i++)
{
src1.a[i] = i * sign;
src2.a[i] = i + 20 * sign;
sign = -sign;
dst2.a[i] = DEFAULT_VALUE;
}
dst1.x = INTRINSIC (_mullo_epi16) (src1.x, src2.x);
dst2.x = INTRINSIC (_mask_mullo_epi16) (dst2.x, mask, src1.x, src2.x);
dst3.x = INTRINSIC (_maskz_mullo_epi16) (mask, src1.x, src2.x);
CALC (src1.a, src2.a, dst_ref);
if (UNION_CHECK (AVX512F_LEN, i_w) (dst1, dst_ref))
abort ();
MASK_MERGE (i_w) (dst_ref, mask, SIZE);
if (UNION_CHECK (AVX512F_LEN, i_w) (dst2, dst_ref))
abort ();
MASK_ZERO (i_w) (dst_ref, mask, SIZE);
if (UNION_CHECK (AVX512F_LEN, i_w) (dst3, dst_ref))
abort ();
}