2 /* { dg-require-effective-target avx2 } */
3 /* { dg-options "-O2 -mavx2" } */
6 #include "avx2-check.h"
9 compute_psllq256 (long long int *s1
, long long int *s2
, long long int *r
)
12 long long int count
= s2
[0];
17 for (i
= 0; i
< 4; ++i
)
18 r
[i
] = s1
[i
] << count
;
26 long long int res_ref
[4];
30 for (i
= 0; i
< 10; i
++)
32 for (j
= 0; j
< 4; j
++)
37 res
.x
= _mm256_sll_epi64 (s1
.x
, s2
.x
);
39 compute_psllq256 (s1
.a
, s2
.a
, res_ref
);
41 fail
+= check_union256i_q (res
, res_ref
);