Viewing file: avx512bw-vpbroadcastw-2.c (1.69 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { 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 *r, short *s) { int i; for (i = 0; i < SIZE; i++) { r[i] = s[0]; } }
void TEST (void) { int i, sign; UNION_TYPE (AVX512F_LEN, i_w) res1, res2, res3; UNION_TYPE (128, i_w) src; MASK_TYPE mask = SIZE | 123; short res_ref[SIZE];
sign = -1; for (i = 0; i < 8; i++) { src.a[i] = 1 + 3 * i * sign; sign = sign * -1; } for (i = 0; i < SIZE; i++) res2.a[i] = DEFAULT_VALUE;
CALC (res_ref, src.a);
if (AVX512F_LEN == 512) { res1.x = INTRINSIC (_broadcastw_epi16) (src.x); if (UNION_CHECK (AVX512F_LEN, i_w) (res1, res_ref)) abort (); }
res2.x = INTRINSIC (_mask_broadcastw_epi16) (res2.x, mask, src.x); res3.x = INTRINSIC (_maskz_broadcastw_epi16) (mask, src.x);
MASK_MERGE (i_w) (res_ref, mask, SIZE); if (UNION_CHECK (AVX512F_LEN, i_w) (res2, res_ref)) abort ();
MASK_ZERO (i_w) (res_ref, mask, SIZE); if (UNION_CHECK (AVX512F_LEN, i_w) (res3, res_ref)) abort ();
CALC (res_ref, src.a);
if (AVX512F_LEN == 512) { res1.x = INTRINSIC (_set1_epi16) (src.a[0]); if (UNION_CHECK (AVX512F_LEN, i_w) (res1, res_ref)) abort (); }
res2.x = INTRINSIC (_mask_set1_epi16) (res2.x, mask, src.a[0]); res3.x = INTRINSIC (_maskz_set1_epi16) (mask, src.a[0]);
MASK_MERGE (i_w) (res_ref, mask, SIZE); if (UNION_CHECK (AVX512F_LEN, i_w) (res2, res_ref)) abort ();
MASK_ZERO (i_w) (res_ref, mask, SIZE); if (UNION_CHECK (AVX512F_LEN, i_w) (res3, res_ref)) abort (); }
|