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"
11 #define ALIGN ((AVX512F_LEN) / 8)
16 UNION_TYPE (AVX512F_LEN
, ) s2
, s3
, res1
, res3
, res4
, res5
, res6
;
17 MASK_TYPE mask
= MASK_VALUE
;
18 float s1
[SIZE
] __attribute__ ((aligned (ALIGN
)));
19 float res2
[SIZE
] __attribute__ ((aligned (ALIGN
)));
20 float res7
[SIZE
] __attribute__ ((aligned (ALIGN
)));
23 for (i
= 0; i
< SIZE
; i
++)
25 s1
[i
] = 12.34 * (i
+ 2000) * sign
;
26 s2
.a
[i
] = 56.78 * (i
- 30) * sign
;
27 s3
.a
[i
] = 90.12 * (i
+ 40) * sign
;
28 res3
.a
[i
] = DEFAULT_VALUE
;
29 res5
.a
[i
] = DEFAULT_VALUE
;
30 res7
[i
] = DEFAULT_VALUE
;
34 #if AVX512F_LEN == 512
35 res1
.x
= INTRINSIC (_load_ps
) (s1
);
36 INTRINSIC (_store_ps
) (res2
, s2
.x
);
38 res3
.x
= INTRINSIC (_mask_mov_ps
) (res3
.x
, mask
, s3
.x
);
39 res4
.x
= INTRINSIC (_maskz_mov_ps
) (mask
, s3
.x
);
40 res5
.x
= INTRINSIC (_mask_load_ps
) (res5
.x
, mask
, s1
);
41 res6
.x
= INTRINSIC (_maskz_load_ps
) (mask
, s1
);
42 INTRINSIC (_mask_store_ps
) (res7
, mask
, s2
.x
);
44 #if AVX512F_LEN == 512
45 if (UNION_CHECK (AVX512F_LEN
, ) (res1
, s1
))
48 if (UNION_CHECK (AVX512F_LEN
, ) (s2
, res2
))
52 MASK_MERGE () (s3
.a
, mask
, SIZE
);
53 if (checkVf (res3
.a
, s3
.a
, SIZE
))
56 MASK_ZERO () (s3
.a
, mask
, SIZE
);
57 if (checkVf (res4
.a
, s3
.a
, SIZE
))
60 MASK_MERGE () (s1
, mask
, SIZE
);
61 if (UNION_CHECK (AVX512F_LEN
, ) (res5
, s1
))
64 MASK_ZERO () (s1
, mask
, SIZE
);
65 if (UNION_CHECK (AVX512F_LEN
, ) (res6
, s1
))
68 MASK_MERGE () (s2
.a
, mask
, SIZE
);
69 if (UNION_CHECK (AVX512F_LEN
, ) (s2
, res7
))