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"
12 CALC (float *r
, float *s1
, float *s2
)
15 for (i
= 0; i
< SIZE
; i
++)
25 UNION_TYPE (AVX512F_LEN
,) res1
, res2
, res3
, src1
, src2
;
26 MASK_TYPE mask
= MASK_VALUE
;
30 for (i
= 0; i
< SIZE
; i
++)
32 src1
.a
[i
] = 1.5 + 34.67 * i
* sign
;
33 src2
.a
[i
] = -22.17 * i
* sign
+ 1.0;
36 for (i
= 0; i
< SIZE
; i
++)
37 res2
.a
[i
] = DEFAULT_VALUE
;
39 res1
.x
= INTRINSIC (_div_ps
) (src1
.x
, src2
.x
);
40 res2
.x
= INTRINSIC (_mask_div_ps
) (res2
.x
, mask
, src1
.x
, src2
.x
);
41 res3
.x
= INTRINSIC (_maskz_div_ps
) (mask
, src1
.x
, src2
.x
);
43 CALC (res_ref
, src1
.a
, src2
.a
);
45 if (UNION_CHECK (AVX512F_LEN
,) (res1
, res_ref
))
48 MASK_MERGE () (res_ref
, mask
, SIZE
);
49 if (UNION_CHECK (AVX512F_LEN
,) (res2
, res_ref
))
52 MASK_ZERO () (res_ref
, mask
, SIZE
);
53 if (UNION_CHECK (AVX512F_LEN
,) (res3
, res_ref
))