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"
14 CALC (int *src1
, int *src2
, int *dst
)
18 for (i
= 0; i
< SIZE
; i
++)
19 dst
[i
] = src1
[i
] * src2
[i
];
25 UNION_TYPE (AVX512F_LEN
, i_d
) src1
, src2
, res1
, res2
, res3
;
26 MASK_TYPE mask
= MASK_VALUE
;
30 for (i
= 0; i
< SIZE
; i
++)
36 for (i
= 0; i
< SIZE
; i
++)
37 res2
.a
[i
] = DEFAULT_VALUE
;
39 res1
.x
= INTRINSIC (_mullo_epi32
) (src1
.x
, src2
.x
);
40 res2
.x
= INTRINSIC (_mask_mullo_epi32
) (res2
.x
, mask
, src1
.x
, src2
.x
);
41 res3
.x
= INTRINSIC (_maskz_mullo_epi32
) (mask
, src1
.x
, src2
.x
);
43 CALC (src1
.a
, src2
.a
, dst_ref
);
45 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res1
, dst_ref
))
48 MASK_MERGE (i_d
) (dst_ref
, mask
, SIZE
);
49 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res2
, dst_ref
))
52 MASK_ZERO (i_d
) (dst_ref
, mask
, SIZE
);
53 if (UNION_CHECK (AVX512F_LEN
, i_d
) (res3
, dst_ref
))