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 *mask
, float *s1
, float *r
)
17 for (i
= 0; i
< SIZE
; i
++)
19 r
[i
] = s1
[mask
[i
] & 15 % SIZE
];
26 UNION_TYPE (AVX512F_LEN
, ) src1
, res1
, res2
, res3
;
27 UNION_TYPE (AVX512F_LEN
, i_d
) src2
;
28 MASK_TYPE mask
= MASK_VALUE
;
32 for (i
= 0; i
< SIZE
; i
++)
37 res2
.a
[i
] = DEFAULT_VALUE
;
40 res1
.x
= INTRINSIC (_permutexvar_ps
) (src2
.x
, src1
.x
);
41 res2
.x
= INTRINSIC (_mask_permutexvar_ps
) (res2
.x
, mask
, src2
.x
, src1
.x
);
42 res3
.x
= INTRINSIC (_maskz_permutexvar_ps
) (mask
, src2
.x
, src1
.x
);
44 CALC (src2
.a
, src1
.a
, res_ref
);
46 if (UNION_CHECK (AVX512F_LEN
, ) (res1
, res_ref
))
49 MASK_MERGE () (res_ref
, mask
, SIZE
);
50 if (UNION_CHECK (AVX512F_LEN
, ) (res2
, res_ref
))
53 MASK_ZERO () (res_ref
, mask
, SIZE
);
54 if (UNION_CHECK (AVX512F_LEN
, ) (res3
, res_ref
))