2 /* { dg-options "-O2 -mavx512dq" } */
3 /* { dg-require-effective-target avx512dq } */
6 #include "avx512f-helper.h"
8 #define SIZE (AVX512F_LEN / 32)
9 #include "avx512f-mask-type.h"
12 CALC (float *src1
, float *src2
, float *dst
)
16 for (i
= 0; i
< SIZE
; i
++)
18 int tmp
= (*(int *) &src1
[i
]) | (*(int *) &src2
[i
]);
19 dst
[i
] = *(float *) &tmp
;
26 UNION_TYPE (AVX512F_LEN
,) s1
, s2
, res1
, res2
, res3
;
27 MASK_TYPE mask
= MASK_VALUE
;
31 for (i
= 0; i
< SIZE
; i
++) {
33 s2
.a
[i
] = 43.6 - i
* 4.4;
34 res2
.a
[i
] = DEFAULT_VALUE
;
37 res1
.x
= INTRINSIC (_or_ps
) (s1
.x
, s2
.x
);
38 res2
.x
= INTRINSIC (_mask_or_ps
) (res2
.x
, mask
, s1
.x
, s2
.x
);
39 res3
.x
= INTRINSIC (_maskz_or_ps
) (mask
, s1
.x
, s2
.x
);
41 CALC (s1
.a
, s2
.a
, dst_ref
);
43 if (UNION_CHECK (AVX512F_LEN
,) (res1
, dst_ref
))
46 MASK_MERGE () (dst_ref
, mask
, SIZE
);
47 if (UNION_CHECK (AVX512F_LEN
,) (res2
, dst_ref
))
50 MASK_ZERO () (dst_ref
, mask
, SIZE
);
51 if (UNION_CHECK (AVX512F_LEN
,) (res3
, dst_ref
))