2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-require-effective-target avx512f } */
7 #include "avx512f-helper.h"
9 #define SIZE (AVX512F_LEN / 32)
10 #include "avx512f-mask-type.h"
13 CALC (int *r
, int *s1
, int *s2
)
16 for (i
= 0; i
< SIZE
; i
++)
26 UNION_TYPE (AVX512F_LEN
, i_d
) res1
, res2
, res3
, src1
, src2
;
27 MASK_TYPE mask
= MASK_VALUE
;
31 for (i
= 0; i
< SIZE
; i
++)
33 src1
.a
[i
] = 1.5 + 34.67 * i
* sign
;
34 src2
.a
[i
] = -22.17 * i
* sign
;
37 for (i
= 0; i
< SIZE
; i
++)
38 res2
.a
[i
] = DEFAULT_VALUE
;
40 res1
.x
= INTRINSIC (_sub_epi32
) (src1
.x
, src2
.x
);
41 res2
.x
= INTRINSIC (_mask_sub_epi32
) (res2
.x
, mask
, src1
.x
, src2
.x
);
42 res3
.x
= INTRINSIC (_maskz_sub_epi32
) (mask
, src1
.x
, src2
.x
);
44 CALC (res_ref
, src1
.a
, src2
.a
);
46 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res1
, res_ref
))
49 MASK_MERGE (i_d
) (res_ref
, mask
, SIZE
);
50 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res2
, res_ref
))
53 MASK_ZERO (i_d
) (res_ref
, mask
, SIZE
);
54 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res3
, res_ref
))