2 /* { dg-options "-O2 -mavx512bw" } */
3 /* { dg-require-effective-target avx512bw } */
6 #include "avx512f-helper.h"
8 #define SIZE (AVX512F_LEN / 16)
9 #include "avx512f-mask-type.h"
12 CALC (short *r
, short *s1
, long long *s2
)
15 long long count
= s2
[0];
16 for (i
= 0; i
< SIZE
; i
++)
18 r
[i
] = count
< 16 ? (s1
[i
] << count
) : 0;
26 UNION_TYPE (AVX512F_LEN
, i_w
) res1
, res2
, res3
, src1
;
27 UNION_TYPE (128, i_q
) src2
;
28 MASK_TYPE mask
= MASK_VALUE
;
33 for (i
= 0; i
< SIZE
; i
++)
35 src1
.a
[i
] = 2 + sign
* 7 * i
% 291;
38 for (i
= 0; i
< 2; i
++)
43 for (imm
= 1; imm
<= 17; imm
++)
46 for (i
= 0; i
< SIZE
; i
++)
47 res2
.a
[i
] = DEFAULT_VALUE
;
49 res1
.x
= INTRINSIC (_sll_epi16
) (src1
.x
, src2
.x
);
50 res2
.x
= INTRINSIC (_mask_sll_epi16
) (res2
.x
, mask
, src1
.x
, src2
.x
);
51 res3
.x
= INTRINSIC (_maskz_sll_epi16
) (mask
, src1
.x
, src2
.x
);
53 CALC (res_ref
, src1
.a
, src2
.a
);
55 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res1
, res_ref
))
58 MASK_MERGE (i_w
) (res_ref
, mask
, SIZE
);
59 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res2
, res_ref
))
62 MASK_ZERO (i_w
) (res_ref
, mask
, SIZE
);
63 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res3
, res_ref
))