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"
16 CALC (short *s1
, long long int *s2
, short *r
)
19 long long int count
= s2
[0];
24 for (i
= 0; i
< SIZE
; ++i
)
25 r
[i
] = s1
[i
] >> count
;
31 UNION_TYPE (AVX512F_LEN
, i_w
) s1
, res1
, res2
, res3
;
32 MASK_TYPE mask
= MASK_VALUE
;
37 for (i
= 0; i
< SIZE
; i
++)
41 res2
.a
[i
] = DEFAULT_VALUE
;
46 res1
.x
= INTRINSIC (_sra_epi16
) (s1
.x
, s2
.x
);
47 res2
.x
= INTRINSIC (_mask_sra_epi16
) (res2
.x
, mask
, s1
.x
, s2
.x
);
48 res3
.x
= INTRINSIC (_maskz_sra_epi16
) (mask
, s1
.x
, s2
.x
);
50 CALC (s1
.a
, s2
.a
, res_ref
);
52 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res1
, res_ref
))
55 MASK_MERGE (i_w
) (res_ref
, mask
, SIZE
);
56 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res2
, res_ref
))
59 MASK_ZERO (i_w
) (res_ref
, mask
, SIZE
);
60 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res3
, res_ref
))