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 *s1
, short *s2
, short *r
)
16 for (i
= 0; i
< SIZE
; ++i
)
18 r
[i
] = ((unsigned short) s1
[i
]) >> s2
[i
];
25 UNION_TYPE (AVX512F_LEN
, i_w
) s1
, s2
, res1
, res2
, res3
;
26 MASK_TYPE mask
= MASK_VALUE
;
30 for (i
= 0; i
< SIZE
; i
++)
34 res2
.a
[i
] = DEFAULT_VALUE
;
38 res1
.x
= INTRINSIC (_srlv_epi16
) (s1
.x
, s2
.x
);
39 res2
.x
= INTRINSIC (_mask_srlv_epi16
) (res2
.x
, mask
, s1
.x
, s2
.x
);
40 res3
.x
= INTRINSIC (_maskz_srlv_epi16
) (mask
, s1
.x
, s2
.x
);
42 CALC (s1
.a
, s2
.a
, res_ref
);
44 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res1
, res_ref
))
47 MASK_MERGE (i_w
) (res_ref
, mask
, SIZE
);
48 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res2
, res_ref
))
51 MASK_ZERO (i_w
) (res_ref
, mask
, SIZE
);
52 if (UNION_CHECK (AVX512F_LEN
, i_w
) (res3
, res_ref
))