10#ifndef EIGEN_PACKET_MATH_AVX_H
11#define EIGEN_PACKET_MATH_AVX_H
14#include "../../InternalHeaderCheck.h"
20#ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
21#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 8
24#if !defined(EIGEN_VECTORIZE_AVX512) && !defined(EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS)
25#define EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS 16
28#ifdef EIGEN_VECTORIZE_FMA
29#ifndef EIGEN_HAS_SINGLE_INSTRUCTION_MADD
30#define EIGEN_HAS_SINGLE_INSTRUCTION_MADD
34typedef __m256 Packet8f;
35typedef eigen_packet_wrapper<__m256i, 0> Packet8i;
36typedef __m256d Packet4d;
37#ifndef EIGEN_VECTORIZE_AVX512FP16
38typedef eigen_packet_wrapper<__m128i, 2> Packet8h;
40typedef eigen_packet_wrapper<__m128i, 3> Packet8bf;
41typedef eigen_packet_wrapper<__m256i, 4> Packet8ui;
43#ifdef EIGEN_VECTORIZE_AVX2
45typedef eigen_packet_wrapper<__m256i, 3> Packet4l;
46typedef eigen_packet_wrapper<__m256i, 5> Packet4ul;
50struct is_arithmetic<__m256> {
51 enum { value =
true };
54struct is_arithmetic<__m256i> {
55 enum { value =
true };
58struct is_arithmetic<__m256d> {
59 enum { value =
true };
62struct is_arithmetic<Packet8i> {
63 enum { value =
true };
69struct is_arithmetic<Packet8ui> {
70 enum { value =
false };
72#ifndef EIGEN_VECTORIZE_AVX512FP16
74struct is_arithmetic<Packet8h> {
75 enum { value =
true };
79struct is_arithmetic<Packet8bf> {
80 enum { value =
true };
82#ifdef EIGEN_VECTORIZE_AVX2
84struct is_arithmetic<Packet4l> {
85 enum { value =
true };
91struct is_arithmetic<Packet4ul> {
92 enum { value =
false };
98#ifndef EIGEN_VECTORIZE_AVX512
100struct packet_traits<float> : default_packet_traits {
101 typedef Packet8f type;
102 typedef Packet4f half;
110 HasReciprocal = EIGEN_FAST_MATH,
111 HasSin = EIGEN_FAST_MATH,
112 HasCos = EIGEN_FAST_MATH,
127 HasTanh = EIGEN_FAST_MATH,
128 HasErf = EIGEN_FAST_MATH,
129 HasErfc = EIGEN_FAST_MATH,
133struct packet_traits<double> : default_packet_traits {
134 typedef Packet4d type;
135 typedef Packet2d half;
143#ifdef EIGEN_VECTORIZE_AVX2
144 HasSin = EIGEN_FAST_MATH,
145 HasCos = EIGEN_FAST_MATH,
147 HasTanh = EIGEN_FAST_MATH,
164struct packet_traits<Eigen::half> : default_packet_traits {
165 typedef Packet8h type;
167 typedef Packet8h half;
178 HasSin = EIGEN_FAST_MATH,
179 HasCos = EIGEN_FAST_MATH,
192 HasTanh = EIGEN_FAST_MATH,
193 HasErf = EIGEN_FAST_MATH,
200struct packet_traits<bfloat16> : default_packet_traits {
201 typedef Packet8bf type;
204 typedef Packet8bf half;
215 HasSin = EIGEN_FAST_MATH,
216 HasCos = EIGEN_FAST_MATH,
229 HasTanh = EIGEN_FAST_MATH,
230 HasErf = EIGEN_FAST_MATH,
237struct packet_traits<int> : default_packet_traits {
238 typedef Packet8i type;
239 typedef Packet4i half;
240 enum { Vectorizable = 1, AlignedOnScalar = 1, HasCmp = 1, HasDiv = 1, size = 8 };
243struct packet_traits<uint32_t> : default_packet_traits {
244 typedef Packet8ui type;
245 typedef Packet4ui half;
262#ifdef EIGEN_VECTORIZE_AVX2
264struct packet_traits<int64_t> : default_packet_traits {
265 typedef Packet4l type;
266 typedef Packet2l half;
267 enum { Vectorizable = 1, AlignedOnScalar = 1, HasCmp = 1, size = 4 };
270struct packet_traits<uint64_t> : default_packet_traits {
271 typedef Packet4ul type;
274 typedef Packet4ul half;
295struct scalar_div_cost<float, true> {
299struct scalar_div_cost<double, true> {
304struct unpacket_traits<Packet8f> {
306 typedef Packet4f half;
307 typedef Packet8i integer_packet;
308 typedef uint8_t mask_t;
313 masked_load_available =
true,
314 masked_store_available =
true
315#ifdef EIGEN_VECTORIZE_AVX512
317 masked_fpops_available =
true
322struct unpacket_traits<Packet4d> {
324 typedef Packet2d half;
325#ifdef EIGEN_VECTORIZE_AVX2
326 typedef Packet4l integer_packet;
332 masked_load_available =
false,
333 masked_store_available =
false
337struct unpacket_traits<Packet8i> {
339 typedef Packet4i half;
344 masked_load_available =
false,
345 masked_store_available =
false
349struct unpacket_traits<Packet8ui> {
350 typedef uint32_t type;
351 typedef Packet4ui half;
356 masked_load_available =
false,
357 masked_store_available =
false
360#ifdef EIGEN_VECTORIZE_AVX2
362struct unpacket_traits<Packet4l> {
363 typedef int64_t type;
364 typedef Packet2l half;
369 masked_load_available =
false,
370 masked_store_available =
false
374struct unpacket_traits<Packet4ul> {
375 typedef uint64_t type;
376 typedef Packet4ul half;
381 masked_load_available =
false,
382 masked_store_available =
false
387struct unpacket_traits<Packet8bf> {
388 typedef bfloat16 type;
389 typedef Packet8bf half;
394 masked_load_available =
false,
395 masked_store_available =
false
401EIGEN_STRONG_INLINE __m128i Pack16To8(Packet8f rf) {
402 return _mm_packs_epi32(_mm256_extractf128_si256(_mm256_castps_si256(rf), 0),
403 _mm256_extractf128_si256(_mm256_castps_si256(rf), 1));
406#ifdef EIGEN_VECTORIZE_AVX2
408EIGEN_STRONG_INLINE Packet4l pset1<Packet4l>(
const int64_t& from) {
409 return _mm256_set1_epi64x(from);
412EIGEN_STRONG_INLINE Packet4ul pset1<Packet4ul>(
const uint64_t& from) {
413 return _mm256_set1_epi64x(numext::bit_cast<uint64_t>(from));
416EIGEN_STRONG_INLINE Packet4l pzero(
const Packet4l& ) {
417 return _mm256_setzero_si256();
420EIGEN_STRONG_INLINE Packet4ul pzero(
const Packet4ul& ) {
421 return _mm256_setzero_si256();
424EIGEN_STRONG_INLINE Packet4l peven_mask(
const Packet4l& ) {
425 return _mm256_set_epi64x(0ll, -1ll, 0ll, -1ll);
428EIGEN_STRONG_INLINE Packet4ul peven_mask(
const Packet4ul& ) {
429 return _mm256_set_epi64x(0ll, -1ll, 0ll, -1ll);
432EIGEN_STRONG_INLINE Packet4l pload1<Packet4l>(
const int64_t* from) {
433 return _mm256_set1_epi64x(*from);
436EIGEN_STRONG_INLINE Packet4ul pload1<Packet4ul>(
const uint64_t* from) {
437 return _mm256_set1_epi64x(*from);
440EIGEN_STRONG_INLINE Packet4l padd<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
441 return _mm256_add_epi64(a, b);
444EIGEN_STRONG_INLINE Packet4ul padd<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
445 return _mm256_add_epi64(a, b);
448EIGEN_STRONG_INLINE Packet4l plset<Packet4l>(
const int64_t& a) {
449 return padd(pset1<Packet4l>(a), Packet4l(_mm256_set_epi64x(3ll, 2ll, 1ll, 0ll)));
452EIGEN_STRONG_INLINE Packet4ul plset<Packet4ul>(
const uint64_t& a) {
453 return padd(pset1<Packet4ul>(a), Packet4ul(_mm256_set_epi64x(3ll, 2ll, 1ll, 0ll)));
456EIGEN_STRONG_INLINE Packet4l psub<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
457 return _mm256_sub_epi64(a, b);
460EIGEN_STRONG_INLINE Packet4ul psub<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
461 return _mm256_sub_epi64(a, b);
464EIGEN_STRONG_INLINE Packet4l pnegate(
const Packet4l& a) {
465 return psub(pzero(a), a);
468EIGEN_STRONG_INLINE Packet4l pconj(
const Packet4l& a) {
472EIGEN_STRONG_INLINE Packet4l pcmp_le(
const Packet4l& a,
const Packet4l& b) {
473 return _mm256_xor_si256(_mm256_cmpgt_epi64(a, b), _mm256_set1_epi32(-1));
476EIGEN_STRONG_INLINE Packet4ul pcmp_le(
const Packet4ul& a,
const Packet4ul& b) {
477 return (Packet4ul)pcmp_le((Packet4l)psub(a, pset1<Packet4ul>(0x8000000000000000UL)),
478 (Packet4l)psub(b, pset1<Packet4ul>(0x8000000000000000UL)));
481EIGEN_STRONG_INLINE Packet4l pcmp_lt(
const Packet4l& a,
const Packet4l& b) {
482 return _mm256_cmpgt_epi64(b, a);
485EIGEN_STRONG_INLINE Packet4ul pcmp_lt(
const Packet4ul& a,
const Packet4ul& b) {
486 return (Packet4ul)pcmp_lt((Packet4l)psub(a, pset1<Packet4ul>(0x8000000000000000UL)),
487 (Packet4l)psub(b, pset1<Packet4ul>(0x8000000000000000UL)));
490EIGEN_STRONG_INLINE Packet4l pcmp_eq(
const Packet4l& a,
const Packet4l& b) {
491 return _mm256_cmpeq_epi64(a, b);
494EIGEN_STRONG_INLINE Packet4ul pcmp_eq(
const Packet4ul& a,
const Packet4ul& b) {
495 return _mm256_cmpeq_epi64(a, b);
498EIGEN_STRONG_INLINE Packet4l ptrue<Packet4l>(
const Packet4l& a) {
499 return _mm256_cmpeq_epi64(a, a);
502EIGEN_STRONG_INLINE Packet4ul ptrue<Packet4ul>(
const Packet4ul& a) {
503 return _mm256_cmpeq_epi64(a, a);
506EIGEN_STRONG_INLINE Packet4l pand<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
507 return _mm256_and_si256(a, b);
510EIGEN_STRONG_INLINE Packet4l por<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
511 return _mm256_or_si256(a, b);
514EIGEN_STRONG_INLINE Packet4l pxor<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
515 return _mm256_xor_si256(a, b);
518EIGEN_STRONG_INLINE Packet4ul pxor<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
519 return _mm256_xor_si256(a, b);
522EIGEN_STRONG_INLINE Packet4l pandnot<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
523 return _mm256_andnot_si256(b, a);
526EIGEN_STRONG_INLINE Packet4l plogical_shift_right(Packet4l a) {
527 return _mm256_srli_epi64(a, N);
530EIGEN_STRONG_INLINE Packet4l plogical_shift_left(Packet4l a) {
531 return _mm256_slli_epi64(a, N);
533#ifdef EIGEN_VECTORIZE_AVX512FP16
535EIGEN_STRONG_INLINE Packet4l parithmetic_shift_right(Packet4l a) {
536 return _mm256_srai_epi64(a, N);
540EIGEN_STRONG_INLINE std::enable_if_t<(N == 0), Packet4l> parithmetic_shift_right(Packet4l a) {
544EIGEN_STRONG_INLINE std::enable_if_t<(N > 0) && (N < 32), Packet4l> parithmetic_shift_right(Packet4l a) {
545 __m256i hi_word = _mm256_srai_epi32(a, N);
546 __m256i lo_word = _mm256_srli_epi64(a, N);
547 return _mm256_blend_epi32(hi_word, lo_word, 0b01010101);
550EIGEN_STRONG_INLINE std::enable_if_t<(N >= 32) && (N < 63), Packet4l> parithmetic_shift_right(Packet4l a) {
551 __m256i hi_word = _mm256_srai_epi32(a, 31);
552 __m256i lo_word = _mm256_shuffle_epi32(_mm256_srai_epi32(a, N - 32), (shuffle_mask<1, 1, 3, 3>::mask));
553 return _mm256_blend_epi32(hi_word, lo_word, 0b01010101);
556EIGEN_STRONG_INLINE std::enable_if_t<(N == 63), Packet4l> parithmetic_shift_right(Packet4l a) {
557 return _mm256_cmpgt_epi64(_mm256_setzero_si256(), a);
560EIGEN_STRONG_INLINE std::enable_if_t<(N < 0) || (N > 63), Packet4l> parithmetic_shift_right(Packet4l a) {
561 return parithmetic_shift_right<int(N & 63)>(a);
565EIGEN_STRONG_INLINE Packet4l pload<Packet4l>(
const int64_t* from) {
566 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_si256(
reinterpret_cast<const __m256i*
>(from));
569EIGEN_STRONG_INLINE Packet4ul pload<Packet4ul>(
const uint64_t* from) {
570 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_si256(
reinterpret_cast<const __m256i*
>(from));
573EIGEN_STRONG_INLINE Packet4l ploadu<Packet4l>(
const int64_t* from) {
574 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_si256(
reinterpret_cast<const __m256i*
>(from));
577EIGEN_STRONG_INLINE Packet4ul ploadu<Packet4ul>(
const uint64_t* from) {
578 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_si256(
reinterpret_cast<const __m256i*
>(from));
582EIGEN_STRONG_INLINE Packet4l ploaddup<Packet4l>(
const int64_t* from) {
583 const Packet4l a = _mm256_castsi128_si256(_mm_loadu_si128(
reinterpret_cast<const __m128i*
>(from)));
584 return _mm256_permutevar8x32_epi32(a, _mm256_setr_epi32(0, 1, 0, 1, 2, 3, 2, 3));
588EIGEN_STRONG_INLINE Packet4ul ploaddup<Packet4ul>(
const uint64_t* from) {
589 const Packet4ul a = _mm256_castsi128_si256(_mm_loadu_si128(
reinterpret_cast<const __m128i*
>(from)));
590 return _mm256_permutevar8x32_epi32(a, _mm256_setr_epi32(0, 1, 0, 1, 2, 3, 2, 3));
593EIGEN_STRONG_INLINE
void pstore<int64_t>(int64_t* to,
const Packet4l& from) {
594 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_si256(
reinterpret_cast<__m256i*
>(to), from);
597EIGEN_STRONG_INLINE
void pstore<uint64_t>(uint64_t* to,
const Packet4ul& from) {
598 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_si256(
reinterpret_cast<__m256i*
>(to), from);
601EIGEN_STRONG_INLINE
void pstoreu<int64_t>(int64_t* to,
const Packet4l& from) {
602 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_si256(
reinterpret_cast<__m256i*
>(to), from);
605EIGEN_STRONG_INLINE
void pstoreu<uint64_t>(uint64_t* to,
const Packet4ul& from) {
606 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_si256(
reinterpret_cast<__m256i*
>(to), from);
609EIGEN_DEVICE_FUNC
inline Packet4l pgather<int64_t, Packet4l>(
const int64_t* from,
Index stride) {
610 return _mm256_set_epi64x(from[3 * stride], from[2 * stride], from[1 * stride], from[0 * stride]);
613EIGEN_DEVICE_FUNC
inline Packet4ul pgather<uint64_t, Packet4ul>(
const uint64_t* from,
Index stride) {
614 return _mm256_set_epi64x(from[3 * stride], from[2 * stride], from[1 * stride], from[0 * stride]);
617EIGEN_DEVICE_FUNC
inline void pscatter<int64_t, Packet4l>(int64_t* to,
const Packet4l& from,
Index stride) {
618 __m128i low = _mm256_extractf128_si256(from, 0);
619 to[stride * 0] = _mm_extract_epi64_0(low);
620 to[stride * 1] = _mm_extract_epi64_1(low);
622 __m128i high = _mm256_extractf128_si256(from, 1);
623 to[stride * 2] = _mm_extract_epi64_0(high);
624 to[stride * 3] = _mm_extract_epi64_1(high);
627EIGEN_DEVICE_FUNC
inline void pscatter<uint64_t, Packet4ul>(uint64_t* to,
const Packet4ul& from,
Index stride) {
628 __m128i low = _mm256_extractf128_si256(from, 0);
629 to[stride * 0] = _mm_extract_epi64_0(low);
630 to[stride * 1] = _mm_extract_epi64_1(low);
632 __m128i high = _mm256_extractf128_si256(from, 1);
633 to[stride * 2] = _mm_extract_epi64_0(high);
634 to[stride * 3] = _mm_extract_epi64_1(high);
637EIGEN_STRONG_INLINE
void pstore1<Packet4l>(int64_t* to,
const int64_t& a) {
638 Packet4l pa = pset1<Packet4l>(a);
642EIGEN_STRONG_INLINE
void pstore1<Packet4ul>(uint64_t* to,
const uint64_t& a) {
643 Packet4ul pa = pset1<Packet4ul>(a);
647EIGEN_STRONG_INLINE int64_t pfirst<Packet4l>(
const Packet4l& a) {
648 return _mm_extract_epi64_0(_mm256_castsi256_si128(a));
651EIGEN_STRONG_INLINE uint64_t pfirst<Packet4ul>(
const Packet4ul& a) {
652 return _mm_extract_epi64_0(_mm256_castsi256_si128(a));
655#define MM256_SHUFFLE_EPI64(A, B, M) _mm256_shuffle_pd(_mm256_castsi256_pd(A), _mm256_castsi256_pd(B), M)
656EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet4l, 4>& kernel) {
657 __m256d T0 = MM256_SHUFFLE_EPI64(kernel.packet[0], kernel.packet[1], 15);
658 __m256d T1 = MM256_SHUFFLE_EPI64(kernel.packet[0], kernel.packet[1], 0);
659 __m256d T2 = MM256_SHUFFLE_EPI64(kernel.packet[2], kernel.packet[3], 15);
660 __m256d T3 = MM256_SHUFFLE_EPI64(kernel.packet[2], kernel.packet[3], 0);
662 kernel.packet[1] = _mm256_castpd_si256(_mm256_permute2f128_pd(T0, T2, 32));
663 kernel.packet[3] = _mm256_castpd_si256(_mm256_permute2f128_pd(T0, T2, 49));
664 kernel.packet[0] = _mm256_castpd_si256(_mm256_permute2f128_pd(T1, T3, 32));
665 kernel.packet[2] = _mm256_castpd_si256(_mm256_permute2f128_pd(T1, T3, 49));
667EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet4ul, 4>& kernel) {
668 ptranspose((PacketBlock<Packet4l, 4>&)kernel);
671EIGEN_STRONG_INLINE Packet4l pmin<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
672 __m256i cmp = _mm256_cmpgt_epi64(a, b);
673 __m256i a_min = _mm256_andnot_si256(cmp, a);
674 __m256i b_min = _mm256_and_si256(cmp, b);
675 return Packet4l(_mm256_or_si256(a_min, b_min));
678EIGEN_STRONG_INLINE Packet4ul pmin<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
679 return padd((Packet4ul)pmin((Packet4l)psub(a, pset1<Packet4ul>(0x8000000000000000UL)),
680 (Packet4l)psub(b, pset1<Packet4ul>(0x8000000000000000UL))),
681 pset1<Packet4ul>(0x8000000000000000UL));
684EIGEN_STRONG_INLINE Packet4l pmax<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
685 __m256i cmp = _mm256_cmpgt_epi64(a, b);
686 __m256i a_min = _mm256_and_si256(cmp, a);
687 __m256i b_min = _mm256_andnot_si256(cmp, b);
688 return Packet4l(_mm256_or_si256(a_min, b_min));
691EIGEN_STRONG_INLINE Packet4ul pmax<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
692 return padd((Packet4ul)pmax((Packet4l)psub(a, pset1<Packet4ul>(0x8000000000000000UL)),
693 (Packet4l)psub(b, pset1<Packet4ul>(0x8000000000000000UL))),
694 pset1<Packet4ul>(0x8000000000000000UL));
697EIGEN_STRONG_INLINE Packet4l pabs<Packet4l>(
const Packet4l& a) {
698 Packet4l pz = pzero<Packet4l>(a);
699 Packet4l cmp = _mm256_cmpgt_epi64(a, pz);
700 return psub(cmp, pxor(a, cmp));
703EIGEN_STRONG_INLINE Packet4ul pabs<Packet4ul>(
const Packet4ul& a) {
707EIGEN_STRONG_INLINE Packet4l pmul<Packet4l>(
const Packet4l& a,
const Packet4l& b) {
709 __m256i upper32_a = _mm256_srli_epi64(a, 32);
710 __m256i upper32_b = _mm256_srli_epi64(b, 32);
713 __m256i mul1 = _mm256_mul_epu32(upper32_a, b);
714 __m256i mul2 = _mm256_mul_epu32(upper32_b, a);
716 __m256i mul3 = _mm256_mul_epu32(a, b);
718 __m256i high = _mm256_slli_epi64(_mm256_add_epi64(mul1, mul2), 32);
719 return _mm256_add_epi64(high, mul3);
722EIGEN_STRONG_INLINE Packet4ul pmul<Packet4ul>(
const Packet4ul& a,
const Packet4ul& b) {
723 return (Packet4ul)pmul<Packet4l>((Packet4l)a, (Packet4l)b);
728EIGEN_STRONG_INLINE Packet8f pset1<Packet8f>(
const float& from) {
729 return _mm256_set1_ps(from);
732EIGEN_STRONG_INLINE Packet4d pset1<Packet4d>(
const double& from) {
733 return _mm256_set1_pd(from);
736EIGEN_STRONG_INLINE Packet8i pset1<Packet8i>(
const int& from) {
737 return _mm256_set1_epi32(from);
740EIGEN_STRONG_INLINE Packet8ui pset1<Packet8ui>(
const uint32_t& from) {
741 return _mm256_set1_epi32(from);
745EIGEN_STRONG_INLINE Packet8f pset1frombits<Packet8f>(
unsigned int from) {
746 return _mm256_castsi256_ps(pset1<Packet8i>(from));
749EIGEN_STRONG_INLINE Packet4d pset1frombits<Packet4d>(uint64_t from) {
750 return _mm256_castsi256_pd(_mm256_set1_epi64x(from));
754EIGEN_STRONG_INLINE Packet8f pzero(
const Packet8f& ) {
755 return _mm256_setzero_ps();
758EIGEN_STRONG_INLINE Packet4d pzero(
const Packet4d& ) {
759 return _mm256_setzero_pd();
762EIGEN_STRONG_INLINE Packet8i pzero(
const Packet8i& ) {
763 return _mm256_setzero_si256();
766EIGEN_STRONG_INLINE Packet8ui pzero(
const Packet8ui& ) {
767 return _mm256_setzero_si256();
771EIGEN_STRONG_INLINE Packet8f peven_mask(
const Packet8f& ) {
772 return _mm256_castsi256_ps(_mm256_set_epi32(0, -1, 0, -1, 0, -1, 0, -1));
775EIGEN_STRONG_INLINE Packet8i peven_mask(
const Packet8i& ) {
776 return _mm256_set_epi32(0, -1, 0, -1, 0, -1, 0, -1);
779EIGEN_STRONG_INLINE Packet8ui peven_mask(
const Packet8ui& ) {
780 return _mm256_set_epi32(0, -1, 0, -1, 0, -1, 0, -1);
783EIGEN_STRONG_INLINE Packet4d peven_mask(
const Packet4d& ) {
784 return _mm256_castsi256_pd(_mm256_set_epi32(0, 0, -1, -1, 0, 0, -1, -1));
788EIGEN_STRONG_INLINE Packet8f pload1<Packet8f>(
const float* from) {
789 return _mm256_broadcast_ss(from);
792EIGEN_STRONG_INLINE Packet4d pload1<Packet4d>(
const double* from) {
793 return _mm256_broadcast_sd(from);
797EIGEN_STRONG_INLINE Packet8f padd<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
798 return _mm256_add_ps(a, b);
800#ifdef EIGEN_VECTORIZE_AVX512
802EIGEN_STRONG_INLINE Packet8f padd<Packet8f>(
const Packet8f& a,
const Packet8f& b, uint8_t umask) {
803 __mmask16 mask =
static_cast<__mmask16
>(umask & 0x00FF);
804 return _mm512_castps512_ps256(_mm512_maskz_add_ps(mask, _mm512_castps256_ps512(a), _mm512_castps256_ps512(b)));
808EIGEN_STRONG_INLINE Packet4d padd<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
809 return _mm256_add_pd(a, b);
812EIGEN_STRONG_INLINE Packet8i padd<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
813#ifdef EIGEN_VECTORIZE_AVX2
814 return _mm256_add_epi32(a, b);
816 __m128i lo = _mm_add_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
817 __m128i hi = _mm_add_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
818 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
822EIGEN_STRONG_INLINE Packet8ui padd<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
823#ifdef EIGEN_VECTORIZE_AVX2
824 return _mm256_add_epi32(a, b);
826 __m128i lo = _mm_add_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
827 __m128i hi = _mm_add_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
828 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
833EIGEN_STRONG_INLINE Packet8f plset<Packet8f>(
const float& a) {
834 return padd(pset1<Packet8f>(a), _mm256_set_ps(7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 0.0));
837EIGEN_STRONG_INLINE Packet4d plset<Packet4d>(
const double& a) {
838 return padd(pset1<Packet4d>(a), _mm256_set_pd(3.0, 2.0, 1.0, 0.0));
841EIGEN_STRONG_INLINE Packet8i plset<Packet8i>(
const int& a) {
842 return padd(pset1<Packet8i>(a), (Packet8i)_mm256_set_epi32(7, 6, 5, 4, 3, 2, 1, 0));
845EIGEN_STRONG_INLINE Packet8ui plset<Packet8ui>(
const uint32_t& a) {
846 return padd(pset1<Packet8ui>(a), (Packet8ui)_mm256_set_epi32(7, 6, 5, 4, 3, 2, 1, 0));
850EIGEN_STRONG_INLINE Packet8f psub<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
851 return _mm256_sub_ps(a, b);
854EIGEN_STRONG_INLINE Packet4d psub<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
855 return _mm256_sub_pd(a, b);
858EIGEN_STRONG_INLINE Packet8i psub<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
859#ifdef EIGEN_VECTORIZE_AVX2
860 return _mm256_sub_epi32(a, b);
862 __m128i lo = _mm_sub_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
863 __m128i hi = _mm_sub_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
864 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
868EIGEN_STRONG_INLINE Packet8ui psub<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
869#ifdef EIGEN_VECTORIZE_AVX2
870 return _mm256_sub_epi32(a, b);
872 __m128i lo = _mm_sub_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
873 __m128i hi = _mm_sub_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
874 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
879EIGEN_STRONG_INLINE Packet8f pnegate(
const Packet8f& a) {
880 const Packet8f mask = _mm256_castsi256_ps(_mm256_set1_epi32(0x80000000));
881 return _mm256_xor_ps(a, mask);
884EIGEN_STRONG_INLINE Packet4d pnegate(
const Packet4d& a) {
885 const Packet4d mask = _mm256_castsi256_pd(_mm256_set1_epi64x(0x8000000000000000ULL));
886 return _mm256_xor_pd(a, mask);
889EIGEN_STRONG_INLINE Packet8i pnegate(
const Packet8i& a) {
890 return psub(pzero(a), a);
894EIGEN_STRONG_INLINE Packet8f pconj(
const Packet8f& a) {
898EIGEN_STRONG_INLINE Packet4d pconj(
const Packet4d& a) {
902EIGEN_STRONG_INLINE Packet8i pconj(
const Packet8i& a) {
907EIGEN_STRONG_INLINE Packet8f pmul<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
908 return _mm256_mul_ps(a, b);
911EIGEN_STRONG_INLINE Packet4d pmul<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
912 return _mm256_mul_pd(a, b);
915EIGEN_STRONG_INLINE Packet8i pmul<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
916#ifdef EIGEN_VECTORIZE_AVX2
917 return _mm256_mullo_epi32(a, b);
919 const __m128i lo = _mm_mullo_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
920 const __m128i hi = _mm_mullo_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
921 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
925EIGEN_STRONG_INLINE Packet8ui pmul<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
926#ifdef EIGEN_VECTORIZE_AVX2
927 return _mm256_mullo_epi32(a, b);
929 const __m128i lo = _mm_mullo_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
930 const __m128i hi = _mm_mullo_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
931 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
936EIGEN_STRONG_INLINE Packet8f pdiv<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
937 return _mm256_div_ps(a, b);
940EIGEN_STRONG_INLINE Packet4d pdiv<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
941 return _mm256_div_pd(a, b);
945EIGEN_STRONG_INLINE Packet8i pdiv<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
946#ifdef EIGEN_VECTORIZE_AVX512
947 return _mm512_cvttpd_epi32(_mm512_div_pd(_mm512_cvtepi32_pd(a), _mm512_cvtepi32_pd(b)));
949 Packet4i lo = pdiv<Packet4i>(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
950 Packet4i hi = pdiv<Packet4i>(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
951 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), hi, 1);
955#ifdef EIGEN_VECTORIZE_FMA
957EIGEN_STRONG_INLINE Packet8f pmadd(
const Packet8f& a,
const Packet8f& b,
const Packet8f& c) {
958 return _mm256_fmadd_ps(a, b, c);
961EIGEN_STRONG_INLINE Packet4d pmadd(
const Packet4d& a,
const Packet4d& b,
const Packet4d& c) {
962 return _mm256_fmadd_pd(a, b, c);
966EIGEN_STRONG_INLINE Packet8f pmsub(
const Packet8f& a,
const Packet8f& b,
const Packet8f& c) {
967 return _mm256_fmsub_ps(a, b, c);
971EIGEN_STRONG_INLINE Packet4d pmsub(
const Packet4d& a,
const Packet4d& b,
const Packet4d& c) {
972 return _mm256_fmsub_pd(a, b, c);
976EIGEN_STRONG_INLINE Packet8f pnmadd(
const Packet8f& a,
const Packet8f& b,
const Packet8f& c) {
977 return _mm256_fnmadd_ps(a, b, c);
981EIGEN_STRONG_INLINE Packet4d pnmadd(
const Packet4d& a,
const Packet4d& b,
const Packet4d& c) {
982 return _mm256_fnmadd_pd(a, b, c);
986EIGEN_STRONG_INLINE Packet8f pnmsub(
const Packet8f& a,
const Packet8f& b,
const Packet8f& c) {
987 return _mm256_fnmsub_ps(a, b, c);
991EIGEN_STRONG_INLINE Packet4d pnmsub(
const Packet4d& a,
const Packet4d& b,
const Packet4d& c) {
992 return _mm256_fnmsub_pd(a, b, c);
998EIGEN_STRONG_INLINE Packet8f pcmp_le(
const Packet8f& a,
const Packet8f& b) {
999 return _mm256_cmp_ps(a, b, _CMP_LE_OQ);
1002EIGEN_STRONG_INLINE Packet8f pcmp_lt(
const Packet8f& a,
const Packet8f& b) {
1003 return _mm256_cmp_ps(a, b, _CMP_LT_OQ);
1006EIGEN_STRONG_INLINE Packet8f pcmp_lt_or_nan(
const Packet8f& a,
const Packet8f& b) {
1007 return _mm256_cmp_ps(a, b, _CMP_NGE_UQ);
1010EIGEN_STRONG_INLINE Packet8f pcmp_eq(
const Packet8f& a,
const Packet8f& b) {
1011 return _mm256_cmp_ps(a, b, _CMP_EQ_OQ);
1014EIGEN_STRONG_INLINE Packet8f pisnan(
const Packet8f& a) {
1015 return _mm256_cmp_ps(a, a, _CMP_UNORD_Q);
1019EIGEN_STRONG_INLINE Packet4d pcmp_le(
const Packet4d& a,
const Packet4d& b) {
1020 return _mm256_cmp_pd(a, b, _CMP_LE_OQ);
1023EIGEN_STRONG_INLINE Packet4d pcmp_lt(
const Packet4d& a,
const Packet4d& b) {
1024 return _mm256_cmp_pd(a, b, _CMP_LT_OQ);
1027EIGEN_STRONG_INLINE Packet4d pcmp_lt_or_nan(
const Packet4d& a,
const Packet4d& b) {
1028 return _mm256_cmp_pd(a, b, _CMP_NGE_UQ);
1031EIGEN_STRONG_INLINE Packet4d pcmp_eq(
const Packet4d& a,
const Packet4d& b) {
1032 return _mm256_cmp_pd(a, b, _CMP_EQ_OQ);
1036EIGEN_STRONG_INLINE Packet8i pcmp_le(
const Packet8i& a,
const Packet8i& b) {
1037#ifdef EIGEN_VECTORIZE_AVX2
1038 return _mm256_xor_si256(_mm256_cmpgt_epi32(a, b), _mm256_set1_epi32(-1));
1040 __m128i lo = _mm_cmpgt_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1041 lo = _mm_xor_si128(lo, _mm_set1_epi32(-1));
1042 __m128i hi = _mm_cmpgt_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1043 hi = _mm_xor_si128(hi, _mm_set1_epi32(-1));
1044 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1048EIGEN_STRONG_INLINE Packet8i pcmp_lt(
const Packet8i& a,
const Packet8i& b) {
1049#ifdef EIGEN_VECTORIZE_AVX2
1050 return _mm256_cmpgt_epi32(b, a);
1052 __m128i lo = _mm_cmpgt_epi32(_mm256_extractf128_si256(b, 0), _mm256_extractf128_si256(a, 0));
1053 __m128i hi = _mm_cmpgt_epi32(_mm256_extractf128_si256(b, 1), _mm256_extractf128_si256(a, 1));
1054 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1058EIGEN_STRONG_INLINE Packet8i pcmp_eq(
const Packet8i& a,
const Packet8i& b) {
1059#ifdef EIGEN_VECTORIZE_AVX2
1060 return _mm256_cmpeq_epi32(a, b);
1062 __m128i lo = _mm_cmpeq_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1063 __m128i hi = _mm_cmpeq_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1064 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1068EIGEN_STRONG_INLINE Packet8ui pcmp_eq(
const Packet8ui& a,
const Packet8ui& b) {
1069#ifdef EIGEN_VECTORIZE_AVX2
1070 return _mm256_cmpeq_epi32(a, b);
1072 __m128i lo = _mm_cmpeq_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1073 __m128i hi = _mm_cmpeq_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1074 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1079EIGEN_STRONG_INLINE Packet8f pmin<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1080#if EIGEN_GNUC_STRICT_LESS_THAN(6, 3, 0)
1086 asm(
"vminps %[a], %[b], %[res]" : [res]
"=x"(res) : [a]
"x"(a), [b]
"x"(b));
1090 return _mm256_min_ps(b, a);
1094EIGEN_STRONG_INLINE Packet4d pmin<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1095#if EIGEN_GNUC_STRICT_LESS_THAN(6, 3, 0)
1098 asm(
"vminpd %[a], %[b], %[res]" : [res]
"=x"(res) : [a]
"x"(a), [b]
"x"(b));
1102 return _mm256_min_pd(b, a);
1106EIGEN_STRONG_INLINE Packet8i pmin<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1107#ifdef EIGEN_VECTORIZE_AVX2
1108 return _mm256_min_epi32(a, b);
1110 __m128i lo = _mm_min_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1111 __m128i hi = _mm_min_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1112 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1116EIGEN_STRONG_INLINE Packet8ui pmin<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1117#ifdef EIGEN_VECTORIZE_AVX2
1118 return _mm256_min_epu32(a, b);
1120 __m128i lo = _mm_min_epu32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1121 __m128i hi = _mm_min_epu32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1122 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1127EIGEN_STRONG_INLINE Packet8f pmax<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1128#if EIGEN_GNUC_STRICT_LESS_THAN(6, 3, 0)
1131 asm(
"vmaxps %[a], %[b], %[res]" : [res]
"=x"(res) : [a]
"x"(a), [b]
"x"(b));
1135 return _mm256_max_ps(b, a);
1139EIGEN_STRONG_INLINE Packet4d pmax<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1140#if EIGEN_GNUC_STRICT_LESS_THAN(6, 3, 0)
1143 asm(
"vmaxpd %[a], %[b], %[res]" : [res]
"=x"(res) : [a]
"x"(a), [b]
"x"(b));
1147 return _mm256_max_pd(b, a);
1151EIGEN_STRONG_INLINE Packet8i pmax<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1152#ifdef EIGEN_VECTORIZE_AVX2
1153 return _mm256_max_epi32(a, b);
1155 __m128i lo = _mm_max_epi32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1156 __m128i hi = _mm_max_epi32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1157 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1161EIGEN_STRONG_INLINE Packet8ui pmax<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1162#ifdef EIGEN_VECTORIZE_AVX2
1163 return _mm256_max_epu32(a, b);
1165 __m128i lo = _mm_max_epu32(_mm256_extractf128_si256(a, 0), _mm256_extractf128_si256(b, 0));
1166 __m128i hi = _mm_max_epu32(_mm256_extractf128_si256(a, 1), _mm256_extractf128_si256(b, 1));
1167 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1171#ifdef EIGEN_VECTORIZE_AVX2
1173EIGEN_STRONG_INLINE Packet8i psign(
const Packet8i& a) {
1174 return _mm256_sign_epi32(_mm256_set1_epi32(1), a);
1180EIGEN_STRONG_INLINE Packet8f pmin<PropagateNumbers, Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1181 return pminmax_propagate_numbers(a, b, pmin<Packet8f>);
1184EIGEN_STRONG_INLINE Packet4d pmin<PropagateNumbers, Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1185 return pminmax_propagate_numbers(a, b, pmin<Packet4d>);
1188EIGEN_STRONG_INLINE Packet8f pmax<PropagateNumbers, Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1189 return pminmax_propagate_numbers(a, b, pmax<Packet8f>);
1192EIGEN_STRONG_INLINE Packet4d pmax<PropagateNumbers, Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1193 return pminmax_propagate_numbers(a, b, pmax<Packet4d>);
1196EIGEN_STRONG_INLINE Packet8f pmin<PropagateNaN, Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1197 return pminmax_propagate_nan(a, b, pmin<Packet8f>);
1200EIGEN_STRONG_INLINE Packet4d pmin<PropagateNaN, Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1201 return pminmax_propagate_nan(a, b, pmin<Packet4d>);
1204EIGEN_STRONG_INLINE Packet8f pmax<PropagateNaN, Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1205 return pminmax_propagate_nan(a, b, pmax<Packet8f>);
1208EIGEN_STRONG_INLINE Packet4d pmax<PropagateNaN, Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1209 return pminmax_propagate_nan(a, b, pmax<Packet4d>);
1213EIGEN_STRONG_INLINE Packet8f print<Packet8f>(
const Packet8f& a) {
1214 return _mm256_round_ps(a, _MM_FROUND_CUR_DIRECTION);
1217EIGEN_STRONG_INLINE Packet4d print<Packet4d>(
const Packet4d& a) {
1218 return _mm256_round_pd(a, _MM_FROUND_CUR_DIRECTION);
1222EIGEN_STRONG_INLINE Packet8f pceil<Packet8f>(
const Packet8f& a) {
1223 return _mm256_ceil_ps(a);
1226EIGEN_STRONG_INLINE Packet4d pceil<Packet4d>(
const Packet4d& a) {
1227 return _mm256_ceil_pd(a);
1231EIGEN_STRONG_INLINE Packet8f pfloor<Packet8f>(
const Packet8f& a) {
1232 return _mm256_floor_ps(a);
1235EIGEN_STRONG_INLINE Packet4d pfloor<Packet4d>(
const Packet4d& a) {
1236 return _mm256_floor_pd(a);
1240EIGEN_STRONG_INLINE Packet8f ptrunc<Packet8f>(
const Packet8f& a) {
1241 return _mm256_round_ps(a, _MM_FROUND_TRUNC);
1244EIGEN_STRONG_INLINE Packet4d ptrunc<Packet4d>(
const Packet4d& a) {
1245 return _mm256_round_pd(a, _MM_FROUND_TRUNC);
1249EIGEN_STRONG_INLINE Packet8i ptrue<Packet8i>(
const Packet8i& a) {
1250#ifdef EIGEN_VECTORIZE_AVX2
1252 return _mm256_cmpeq_epi32(a, a);
1254 const __m256 b = _mm256_castsi256_ps(a);
1255 return _mm256_castps_si256(_mm256_cmp_ps(b, b, _CMP_TRUE_UQ));
1260EIGEN_STRONG_INLINE Packet8f ptrue<Packet8f>(
const Packet8f& a) {
1261#ifdef EIGEN_VECTORIZE_AVX2
1263 const __m256i b = _mm256_castps_si256(a);
1264 return _mm256_castsi256_ps(_mm256_cmpeq_epi32(b, b));
1266 return _mm256_cmp_ps(a, a, _CMP_TRUE_UQ);
1271EIGEN_STRONG_INLINE Packet4d ptrue<Packet4d>(
const Packet4d& a) {
1272#ifdef EIGEN_VECTORIZE_AVX2
1274 const __m256i b = _mm256_castpd_si256(a);
1275 return _mm256_castsi256_pd(_mm256_cmpeq_epi64(b, b));
1277 return _mm256_cmp_pd(a, a, _CMP_TRUE_UQ);
1282EIGEN_STRONG_INLINE Packet8f pand<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1283 return _mm256_and_ps(a, b);
1286EIGEN_STRONG_INLINE Packet4d pand<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1287 return _mm256_and_pd(a, b);
1290EIGEN_STRONG_INLINE Packet8i pand<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1291#ifdef EIGEN_VECTORIZE_AVX2
1292 return _mm256_and_si256(a, b);
1294 return _mm256_castps_si256(_mm256_and_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1298EIGEN_STRONG_INLINE Packet8ui pand<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1299#ifdef EIGEN_VECTORIZE_AVX2
1300 return _mm256_and_si256(a, b);
1302 return _mm256_castps_si256(_mm256_and_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1307EIGEN_STRONG_INLINE Packet8f por<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1308 return _mm256_or_ps(a, b);
1311EIGEN_STRONG_INLINE Packet4d por<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1312 return _mm256_or_pd(a, b);
1315EIGEN_STRONG_INLINE Packet8i por<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1316#ifdef EIGEN_VECTORIZE_AVX2
1317 return _mm256_or_si256(a, b);
1319 return _mm256_castps_si256(_mm256_or_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1323EIGEN_STRONG_INLINE Packet8ui por<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1324#ifdef EIGEN_VECTORIZE_AVX2
1325 return _mm256_or_si256(a, b);
1327 return _mm256_castps_si256(_mm256_or_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1332EIGEN_STRONG_INLINE Packet8f pxor<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1333 return _mm256_xor_ps(a, b);
1336EIGEN_STRONG_INLINE Packet4d pxor<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1337 return _mm256_xor_pd(a, b);
1340EIGEN_STRONG_INLINE Packet8i pxor<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1341#ifdef EIGEN_VECTORIZE_AVX2
1342 return _mm256_xor_si256(a, b);
1344 return _mm256_castps_si256(_mm256_xor_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1348EIGEN_STRONG_INLINE Packet8ui pxor<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1349#ifdef EIGEN_VECTORIZE_AVX2
1350 return _mm256_xor_si256(a, b);
1352 return _mm256_castps_si256(_mm256_xor_ps(_mm256_castsi256_ps(a), _mm256_castsi256_ps(b)));
1357EIGEN_STRONG_INLINE Packet8f pandnot<Packet8f>(
const Packet8f& a,
const Packet8f& b) {
1358 return _mm256_andnot_ps(b, a);
1361EIGEN_STRONG_INLINE Packet4d pandnot<Packet4d>(
const Packet4d& a,
const Packet4d& b) {
1362 return _mm256_andnot_pd(b, a);
1365EIGEN_STRONG_INLINE Packet8i pandnot<Packet8i>(
const Packet8i& a,
const Packet8i& b) {
1366#ifdef EIGEN_VECTORIZE_AVX2
1367 return _mm256_andnot_si256(b, a);
1369 return _mm256_castps_si256(_mm256_andnot_ps(_mm256_castsi256_ps(b), _mm256_castsi256_ps(a)));
1373EIGEN_STRONG_INLINE Packet8ui pandnot<Packet8ui>(
const Packet8ui& a,
const Packet8ui& b) {
1374#ifdef EIGEN_VECTORIZE_AVX2
1375 return _mm256_andnot_si256(b, a);
1377 return _mm256_castps_si256(_mm256_andnot_ps(_mm256_castsi256_ps(b), _mm256_castsi256_ps(a)));
1382EIGEN_STRONG_INLINE Packet8ui pcmp_lt(
const Packet8ui& a,
const Packet8ui& b) {
1383 return pxor(pcmp_eq(a, pmax(a, b)), ptrue(a));
1386EIGEN_STRONG_INLINE Packet8ui pcmp_le(
const Packet8ui& a,
const Packet8ui& b) {
1387 return pcmp_eq(a, pmin(a, b));
1391EIGEN_STRONG_INLINE Packet8f pround<Packet8f>(
const Packet8f& a) {
1392 const Packet8f mask = pset1frombits<Packet8f>(
static_cast<numext::uint32_t
>(0x80000000u));
1393 const Packet8f prev0dot5 = pset1frombits<Packet8f>(
static_cast<numext::uint32_t
>(0x3EFFFFFFu));
1394 return _mm256_round_ps(padd(por(pand(a, mask), prev0dot5), a), _MM_FROUND_TO_ZERO);
1397EIGEN_STRONG_INLINE Packet4d pround<Packet4d>(
const Packet4d& a) {
1398 const Packet4d mask = pset1frombits<Packet4d>(
static_cast<numext::uint64_t
>(0x8000000000000000ull));
1399 const Packet4d prev0dot5 = pset1frombits<Packet4d>(
static_cast<numext::uint64_t
>(0x3FDFFFFFFFFFFFFFull));
1400 return _mm256_round_pd(padd(por(pand(a, mask), prev0dot5), a), _MM_FROUND_TO_ZERO);
1404EIGEN_STRONG_INLINE Packet8f pselect<Packet8f>(
const Packet8f& mask,
const Packet8f& a,
const Packet8f& b) {
1405 return _mm256_blendv_ps(b, a, mask);
1408EIGEN_STRONG_INLINE Packet8i pselect<Packet8i>(
const Packet8i& mask,
const Packet8i& a,
const Packet8i& b) {
1409 return _mm256_castps_si256(
1410 _mm256_blendv_ps(_mm256_castsi256_ps(b), _mm256_castsi256_ps(a), _mm256_castsi256_ps(mask)));
1413EIGEN_STRONG_INLINE Packet8ui pselect<Packet8ui>(
const Packet8ui& mask,
const Packet8ui& a,
const Packet8ui& b) {
1414 return _mm256_castps_si256(
1415 _mm256_blendv_ps(_mm256_castsi256_ps(b), _mm256_castsi256_ps(a), _mm256_castsi256_ps(mask)));
1419EIGEN_STRONG_INLINE Packet4d pselect<Packet4d>(
const Packet4d& mask,
const Packet4d& a,
const Packet4d& b) {
1420 return _mm256_blendv_pd(b, a, mask);
1424EIGEN_STRONG_INLINE Packet8i parithmetic_shift_right(Packet8i a) {
1425#ifdef EIGEN_VECTORIZE_AVX2
1426 return _mm256_srai_epi32(a, N);
1428 __m128i lo = _mm_srai_epi32(_mm256_extractf128_si256(a, 0), N);
1429 __m128i hi = _mm_srai_epi32(_mm256_extractf128_si256(a, 1), N);
1430 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1435EIGEN_STRONG_INLINE Packet8i plogical_shift_right(Packet8i a) {
1436#ifdef EIGEN_VECTORIZE_AVX2
1437 return _mm256_srli_epi32(a, N);
1439 __m128i lo = _mm_srli_epi32(_mm256_extractf128_si256(a, 0), N);
1440 __m128i hi = _mm_srli_epi32(_mm256_extractf128_si256(a, 1), N);
1441 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1446EIGEN_STRONG_INLINE Packet8i plogical_shift_left(Packet8i a) {
1447#ifdef EIGEN_VECTORIZE_AVX2
1448 return _mm256_slli_epi32(a, N);
1450 __m128i lo = _mm_slli_epi32(_mm256_extractf128_si256(a, 0), N);
1451 __m128i hi = _mm_slli_epi32(_mm256_extractf128_si256(a, 1), N);
1452 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1457EIGEN_STRONG_INLINE Packet8ui parithmetic_shift_right(Packet8ui a) {
1458 return (Packet8ui)plogical_shift_right<N>((Packet8i)a);
1461EIGEN_STRONG_INLINE Packet8ui plogical_shift_right(Packet8ui a) {
1462 return (Packet8ui)plogical_shift_right<N>((Packet8i)a);
1465EIGEN_STRONG_INLINE Packet8ui plogical_shift_left(Packet8ui a) {
1466 return (Packet8ui)plogical_shift_left<N>((Packet8i)a);
1470EIGEN_STRONG_INLINE Packet8f pload<Packet8f>(
const float* from) {
1471 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_ps(from);
1474EIGEN_STRONG_INLINE Packet4d pload<Packet4d>(
const double* from) {
1475 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_pd(from);
1478EIGEN_STRONG_INLINE Packet8i pload<Packet8i>(
const int* from) {
1479 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_si256(
reinterpret_cast<const __m256i*
>(from));
1482EIGEN_STRONG_INLINE Packet8ui pload<Packet8ui>(
const uint32_t* from) {
1483 EIGEN_DEBUG_ALIGNED_LOAD
return _mm256_load_si256(
reinterpret_cast<const __m256i*
>(from));
1487EIGEN_STRONG_INLINE Packet8f ploadu<Packet8f>(
const float* from) {
1488 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_ps(from);
1491EIGEN_STRONG_INLINE Packet4d ploadu<Packet4d>(
const double* from) {
1492 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_pd(from);
1495EIGEN_STRONG_INLINE Packet8i ploadu<Packet8i>(
const int* from) {
1496 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_si256(
reinterpret_cast<const __m256i*
>(from));
1499EIGEN_STRONG_INLINE Packet8ui ploadu<Packet8ui>(
const uint32_t* from) {
1500 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_loadu_si256(
reinterpret_cast<const __m256i*
>(from));
1504EIGEN_STRONG_INLINE Packet8f ploadu<Packet8f>(
const float* from, uint8_t umask) {
1505#ifdef EIGEN_VECTORIZE_AVX512
1506 __mmask16 mask =
static_cast<__mmask16
>(umask & 0x00FF);
1507 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm512_castps512_ps256(_mm512_maskz_loadu_ps(mask, from));
1509 Packet8i mask = _mm256_set1_epi8(
static_cast<char>(umask));
1510 const Packet8i bit_mask =
1511 _mm256_set_epi32(0xffffff7f, 0xffffffbf, 0xffffffdf, 0xffffffef, 0xfffffff7, 0xfffffffb, 0xfffffffd, 0xfffffffe);
1512 mask = por<Packet8i>(mask, bit_mask);
1513 mask = pcmp_eq<Packet8i>(mask, _mm256_set1_epi32(0xffffffff));
1514 EIGEN_DEBUG_UNALIGNED_LOAD
return _mm256_maskload_ps(from, mask);
1520EIGEN_STRONG_INLINE Packet8f ploaddup<Packet8f>(
const float* from) {
1527 Packet8f tmp = _mm256_broadcast_ps((
const __m128*)(
const void*)from);
1529 tmp = _mm256_blend_ps(
1530 tmp, _mm256_castps128_ps256(_mm_permute_ps(_mm256_castps256_ps128(tmp), _MM_SHUFFLE(1, 0, 1, 0))), 15);
1532 return _mm256_permute_ps(tmp, _MM_SHUFFLE(3, 3, 2, 2));
1536EIGEN_STRONG_INLINE Packet4d ploaddup<Packet4d>(
const double* from) {
1537 Packet4d tmp = _mm256_broadcast_pd((
const __m128d*)(
const void*)from);
1538 return _mm256_permute_pd(tmp, 3 << 2);
1542EIGEN_STRONG_INLINE Packet8i ploaddup<Packet8i>(
const int* from) {
1543#ifdef EIGEN_VECTORIZE_AVX2
1544 const Packet8i a = _mm256_castsi128_si256(ploadu<Packet4i>(from));
1545 return _mm256_permutevar8x32_epi32(a, _mm256_setr_epi32(0, 0, 1, 1, 2, 2, 3, 3));
1547 __m256 tmp = _mm256_broadcast_ps((
const __m128*)(
const void*)from);
1549 tmp = _mm256_blend_ps(
1550 tmp, _mm256_castps128_ps256(_mm_permute_ps(_mm256_castps256_ps128(tmp), _MM_SHUFFLE(1, 0, 1, 0))), 15);
1552 return _mm256_castps_si256(_mm256_permute_ps(tmp, _MM_SHUFFLE(3, 3, 2, 2)));
1556EIGEN_STRONG_INLINE Packet8ui ploaddup<Packet8ui>(
const uint32_t* from) {
1557#ifdef EIGEN_VECTORIZE_AVX2
1558 const Packet8ui a = _mm256_castsi128_si256(ploadu<Packet4ui>(from));
1559 return _mm256_permutevar8x32_epi32(a, _mm256_setr_epi32(0, 0, 1, 1, 2, 2, 3, 3));
1561 __m256 tmp = _mm256_broadcast_ps((
const __m128*)(
const void*)from);
1563 tmp = _mm256_blend_ps(
1564 tmp, _mm256_castps128_ps256(_mm_permute_ps(_mm256_castps256_ps128(tmp), _MM_SHUFFLE(1, 0, 1, 0))), 15);
1567 return _mm256_castps_si256(_mm256_permute_ps(tmp, _MM_SHUFFLE(3, 3, 2, 2)));
1573EIGEN_STRONG_INLINE Packet8f ploadquad<Packet8f>(
const float* from) {
1574 Packet8f tmp = _mm256_castps128_ps256(_mm_broadcast_ss(from));
1575 return _mm256_insertf128_ps(tmp, _mm_broadcast_ss(from + 1), 1);
1578EIGEN_STRONG_INLINE Packet8i ploadquad<Packet8i>(
const int* from) {
1579 return _mm256_insertf128_si256(_mm256_set1_epi32(*from), _mm_set1_epi32(*(from + 1)), 1);
1582EIGEN_STRONG_INLINE Packet8ui ploadquad<Packet8ui>(
const uint32_t* from) {
1583 return _mm256_insertf128_si256(_mm256_set1_epi32(*from), _mm_set1_epi32(*(from + 1)), 1);
1587EIGEN_STRONG_INLINE
void pstore<float>(
float* to,
const Packet8f& from) {
1588 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_ps(to, from);
1591EIGEN_STRONG_INLINE
void pstore<double>(
double* to,
const Packet4d& from) {
1592 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_pd(to, from);
1595EIGEN_STRONG_INLINE
void pstore<int>(
int* to,
const Packet8i& from) {
1596 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_si256(
reinterpret_cast<__m256i*
>(to), from);
1599EIGEN_STRONG_INLINE
void pstore<uint32_t>(uint32_t* to,
const Packet8ui& from) {
1600 EIGEN_DEBUG_ALIGNED_STORE _mm256_store_si256(
reinterpret_cast<__m256i*
>(to), from);
1604EIGEN_STRONG_INLINE
void pstoreu<float>(
float* to,
const Packet8f& from) {
1605 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_ps(to, from);
1608EIGEN_STRONG_INLINE
void pstoreu<double>(
double* to,
const Packet4d& from) {
1609 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_pd(to, from);
1612EIGEN_STRONG_INLINE
void pstoreu<int>(
int* to,
const Packet8i& from) {
1613 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_si256(
reinterpret_cast<__m256i*
>(to), from);
1616EIGEN_STRONG_INLINE
void pstoreu<uint32_t>(uint32_t* to,
const Packet8ui& from) {
1617 EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_si256(
reinterpret_cast<__m256i*
>(to), from);
1621EIGEN_STRONG_INLINE
void pstoreu<float>(
float* to,
const Packet8f& from, uint8_t umask) {
1622#ifdef EIGEN_VECTORIZE_AVX512
1623 __mmask16 mask =
static_cast<__mmask16
>(umask & 0x00FF);
1624 EIGEN_DEBUG_UNALIGNED_STORE _mm512_mask_storeu_ps(to, mask, _mm512_castps256_ps512(from));
1626 Packet8i mask = _mm256_set1_epi8(
static_cast<char>(umask));
1627 const Packet8i bit_mask =
1628 _mm256_set_epi32(0x7f7f7f7f, 0xbfbfbfbf, 0xdfdfdfdf, 0xefefefef, 0xf7f7f7f7, 0xfbfbfbfb, 0xfdfdfdfd, 0xfefefefe);
1629 mask = por<Packet8i>(mask, bit_mask);
1630 mask = pcmp_eq<Packet8i>(mask, _mm256_set1_epi32(0xffffffff));
1633 const __m256i ifrom = _mm256_castps_si256(from);
1634 EIGEN_DEBUG_UNALIGNED_STORE _mm_maskmoveu_si128(_mm256_extractf128_si256(ifrom, 0), _mm256_extractf128_si256(mask, 0),
1635 reinterpret_cast<char*
>(to));
1636 EIGEN_DEBUG_UNALIGNED_STORE _mm_maskmoveu_si128(_mm256_extractf128_si256(ifrom, 1), _mm256_extractf128_si256(mask, 1),
1637 reinterpret_cast<char*
>(to + 4));
1639 EIGEN_DEBUG_UNALIGNED_STORE _mm256_maskstore_ps(to, mask, from);
1648EIGEN_DEVICE_FUNC
inline Packet8f pgather<float, Packet8f>(
const float* from,
Index stride) {
1649 return _mm256_set_ps(from[7 * stride], from[6 * stride], from[5 * stride], from[4 * stride], from[3 * stride],
1650 from[2 * stride], from[1 * stride], from[0 * stride]);
1653EIGEN_DEVICE_FUNC
inline Packet4d pgather<double, Packet4d>(
const double* from,
Index stride) {
1654 return _mm256_set_pd(from[3 * stride], from[2 * stride], from[1 * stride], from[0 * stride]);
1657EIGEN_DEVICE_FUNC
inline Packet8i pgather<int, Packet8i>(
const int* from,
Index stride) {
1658 return _mm256_set_epi32(from[7 * stride], from[6 * stride], from[5 * stride], from[4 * stride], from[3 * stride],
1659 from[2 * stride], from[1 * stride], from[0 * stride]);
1662EIGEN_DEVICE_FUNC
inline Packet8ui pgather<uint32_t, Packet8ui>(
const uint32_t* from,
Index stride) {
1663 return (Packet8ui)pgather<int, Packet8i>((
int*)from, stride);
1667EIGEN_DEVICE_FUNC
inline void pscatter<float, Packet8f>(
float* to,
const Packet8f& from,
Index stride) {
1668 __m128 low = _mm256_extractf128_ps(from, 0);
1669 to[stride * 0] = _mm_cvtss_f32(low);
1670 to[stride * 1] = _mm_cvtss_f32(_mm_shuffle_ps(low, low, 1));
1671 to[stride * 2] = _mm_cvtss_f32(_mm_shuffle_ps(low, low, 2));
1672 to[stride * 3] = _mm_cvtss_f32(_mm_shuffle_ps(low, low, 3));
1674 __m128 high = _mm256_extractf128_ps(from, 1);
1675 to[stride * 4] = _mm_cvtss_f32(high);
1676 to[stride * 5] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 1));
1677 to[stride * 6] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 2));
1678 to[stride * 7] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 3));
1681EIGEN_DEVICE_FUNC
inline void pscatter<double, Packet4d>(
double* to,
const Packet4d& from,
Index stride) {
1682 __m128d low = _mm256_extractf128_pd(from, 0);
1683 to[stride * 0] = _mm_cvtsd_f64(low);
1684 to[stride * 1] = _mm_cvtsd_f64(_mm_shuffle_pd(low, low, 1));
1685 __m128d high = _mm256_extractf128_pd(from, 1);
1686 to[stride * 2] = _mm_cvtsd_f64(high);
1687 to[stride * 3] = _mm_cvtsd_f64(_mm_shuffle_pd(high, high, 1));
1690EIGEN_DEVICE_FUNC
inline void pscatter<int, Packet8i>(
int* to,
const Packet8i& from,
Index stride) {
1691 __m128i low = _mm256_extractf128_si256(from, 0);
1692 to[stride * 0] = _mm_extract_epi32(low, 0);
1693 to[stride * 1] = _mm_extract_epi32(low, 1);
1694 to[stride * 2] = _mm_extract_epi32(low, 2);
1695 to[stride * 3] = _mm_extract_epi32(low, 3);
1697 __m128i high = _mm256_extractf128_si256(from, 1);
1698 to[stride * 4] = _mm_extract_epi32(high, 0);
1699 to[stride * 5] = _mm_extract_epi32(high, 1);
1700 to[stride * 6] = _mm_extract_epi32(high, 2);
1701 to[stride * 7] = _mm_extract_epi32(high, 3);
1704EIGEN_DEVICE_FUNC
inline void pscatter<uint32_t, Packet8ui>(uint32_t* to,
const Packet8ui& from,
Index stride) {
1705 pscatter<int, Packet8i>((
int*)to, (Packet8i)from, stride);
1709EIGEN_STRONG_INLINE
void pstore1<Packet8f>(
float* to,
const float& a) {
1710 Packet8f pa = pset1<Packet8f>(a);
1714EIGEN_STRONG_INLINE
void pstore1<Packet4d>(
double* to,
const double& a) {
1715 Packet4d pa = pset1<Packet4d>(a);
1719EIGEN_STRONG_INLINE
void pstore1<Packet8i>(
int* to,
const int& a) {
1720 Packet8i pa = pset1<Packet8i>(a);
1724#ifndef EIGEN_VECTORIZE_AVX512
1726EIGEN_STRONG_INLINE
void prefetch<float>(
const float* addr) {
1727 _mm_prefetch((SsePrefetchPtrType)(addr), _MM_HINT_T0);
1730EIGEN_STRONG_INLINE
void prefetch<double>(
const double* addr) {
1731 _mm_prefetch((SsePrefetchPtrType)(addr), _MM_HINT_T0);
1734EIGEN_STRONG_INLINE
void prefetch<int>(
const int* addr) {
1735 _mm_prefetch((SsePrefetchPtrType)(addr), _MM_HINT_T0);
1738EIGEN_STRONG_INLINE
void prefetch<uint32_t>(
const uint32_t* addr) {
1739 _mm_prefetch((SsePrefetchPtrType)(addr), _MM_HINT_T0);
1744EIGEN_STRONG_INLINE
float pfirst<Packet8f>(
const Packet8f& a) {
1745 return _mm_cvtss_f32(_mm256_castps256_ps128(a));
1748EIGEN_STRONG_INLINE
double pfirst<Packet4d>(
const Packet4d& a) {
1749 return _mm_cvtsd_f64(_mm256_castpd256_pd128(a));
1752EIGEN_STRONG_INLINE
int pfirst<Packet8i>(
const Packet8i& a) {
1753 return _mm_cvtsi128_si32(_mm256_castsi256_si128(a));
1756EIGEN_STRONG_INLINE uint32_t pfirst<Packet8ui>(
const Packet8ui& a) {
1757 return numext::bit_cast<uint32_t>(_mm_cvtsi128_si32(_mm256_castsi256_si128(a)));
1761EIGEN_STRONG_INLINE Packet8f preverse(
const Packet8f& a) {
1762 __m256 tmp = _mm256_shuffle_ps(a, a, 0x1b);
1763 return _mm256_permute2f128_ps(tmp, tmp, 1);
1766EIGEN_STRONG_INLINE Packet4d preverse(
const Packet4d& a) {
1767 __m256d tmp = _mm256_shuffle_pd(a, a, 5);
1768 return _mm256_permute2f128_pd(tmp, tmp, 1);
1772 __m256d swap_halves = _mm256_permute2f128_pd(a,a,1);
1773 return _mm256_permute_pd(swap_halves,5);
1777EIGEN_STRONG_INLINE Packet8i preverse(
const Packet8i& a) {
1778 return _mm256_castps_si256(preverse(_mm256_castsi256_ps(a)));
1781EIGEN_STRONG_INLINE Packet8ui preverse(
const Packet8ui& a) {
1782 return _mm256_castps_si256(preverse(_mm256_castsi256_ps(a)));
1785#ifdef EIGEN_VECTORIZE_AVX2
1787EIGEN_STRONG_INLINE Packet4l preverse(
const Packet4l& a) {
1788 return _mm256_castpd_si256(preverse(_mm256_castsi256_pd(a)));
1791EIGEN_STRONG_INLINE Packet4ul preverse(
const Packet4ul& a) {
1792 return _mm256_castpd_si256(preverse(_mm256_castsi256_pd(a)));
1798EIGEN_STRONG_INLINE Packet8f pabs(
const Packet8f& a) {
1799 const Packet8f mask = _mm256_castsi256_ps(_mm256_set1_epi32(0x7FFFFFFF));
1800 return _mm256_and_ps(a, mask);
1803EIGEN_STRONG_INLINE Packet4d pabs(
const Packet4d& a) {
1804 const Packet4d mask = _mm256_castsi256_pd(_mm256_set1_epi64x(0x7FFFFFFFFFFFFFFF));
1805 return _mm256_and_pd(a, mask);
1808EIGEN_STRONG_INLINE Packet8i pabs(
const Packet8i& a) {
1809#ifdef EIGEN_VECTORIZE_AVX2
1810 return _mm256_abs_epi32(a);
1812 __m128i lo = _mm_abs_epi32(_mm256_extractf128_si256(a, 0));
1813 __m128i hi = _mm_abs_epi32(_mm256_extractf128_si256(a, 1));
1814 return _mm256_insertf128_si256(_mm256_castsi128_si256(lo), (hi), 1);
1818EIGEN_STRONG_INLINE Packet8ui pabs(
const Packet8ui& a) {
1822#ifndef EIGEN_VECTORIZE_AVX512FP16
1824EIGEN_STRONG_INLINE Packet8h psignbit(
const Packet8h& a) {
1825 return _mm_cmpgt_epi16(_mm_setzero_si128(), a);
1830EIGEN_STRONG_INLINE Packet8bf psignbit(
const Packet8bf& a) {
1831 return _mm_cmpgt_epi16(_mm_setzero_si128(), a);
1834EIGEN_STRONG_INLINE Packet8f psignbit(
const Packet8f& a) {
1835#ifdef EIGEN_VECTORIZE_AVX2
1836 return _mm256_castsi256_ps(_mm256_cmpgt_epi32(_mm256_setzero_si256(), _mm256_castps_si256(a)));
1838 return _mm256_castsi256_ps(parithmetic_shift_right<31>(Packet8i(_mm256_castps_si256(a))));
1842EIGEN_STRONG_INLINE Packet8ui psignbit(
const Packet8ui& ) {
1843 return _mm256_setzero_si256();
1845#ifdef EIGEN_VECTORIZE_AVX2
1847EIGEN_STRONG_INLINE Packet4d psignbit(
const Packet4d& a) {
1848 return _mm256_castsi256_pd(_mm256_cmpgt_epi64(_mm256_setzero_si256(), _mm256_castpd_si256(a)));
1851EIGEN_STRONG_INLINE Packet4ul psignbit(
const Packet4ul& ) {
1852 return _mm256_setzero_si256();
1857EIGEN_STRONG_INLINE Packet8f pfrexp<Packet8f>(
const Packet8f& a, Packet8f& exponent) {
1858 return pfrexp_generic(a, exponent);
1863EIGEN_STRONG_INLINE Packet4d pfrexp_generic_get_biased_exponent(
const Packet4d& a) {
1864 const Packet4d cst_exp_mask = pset1frombits<Packet4d>(
static_cast<uint64_t
>(0x7ff0000000000000ull));
1865 __m256i a_expo = _mm256_castpd_si256(pand(a, cst_exp_mask));
1866#ifdef EIGEN_VECTORIZE_AVX2
1867 a_expo = _mm256_srli_epi64(a_expo, 52);
1868 __m128i lo = _mm256_extractf128_si256(a_expo, 0);
1869 __m128i hi = _mm256_extractf128_si256(a_expo, 1);
1871 __m128i lo = _mm256_extractf128_si256(a_expo, 0);
1872 __m128i hi = _mm256_extractf128_si256(a_expo, 1);
1873 lo = _mm_srli_epi64(lo, 52);
1874 hi = _mm_srli_epi64(hi, 52);
1876 Packet2d exponent_lo = _mm_cvtepi32_pd(vec4i_swizzle1(lo, 0, 2, 1, 3));
1877 Packet2d exponent_hi = _mm_cvtepi32_pd(vec4i_swizzle1(hi, 0, 2, 1, 3));
1878 Packet4d exponent = _mm256_insertf128_pd(_mm256_setzero_pd(), exponent_lo, 0);
1879 exponent = _mm256_insertf128_pd(exponent, exponent_hi, 1);
1884EIGEN_STRONG_INLINE Packet4d pfrexp<Packet4d>(
const Packet4d& a, Packet4d& exponent) {
1885 return pfrexp_generic(a, exponent);
1889EIGEN_STRONG_INLINE Packet8f pldexp<Packet8f>(
const Packet8f& a,
const Packet8f& exponent) {
1890 return pldexp_generic(a, exponent);
1894EIGEN_STRONG_INLINE Packet4d pldexp<Packet4d>(
const Packet4d& a,
const Packet4d& exponent) {
1896 const Packet4d max_exponent = pset1<Packet4d>(2099.0);
1897 const Packet4i e = _mm256_cvtpd_epi32(pmin(pmax(exponent, pnegate(max_exponent)), max_exponent));
1900 const Packet4i bias = pset1<Packet4i>(1023);
1901 Packet4i b = parithmetic_shift_right<2>(e);
1904 Packet4i hi = vec4i_swizzle1(padd(b, bias), 0, 2, 1, 3);
1905 Packet4i lo = _mm_slli_epi64(hi, 52);
1906 hi = _mm_slli_epi64(_mm_srli_epi64(hi, 32), 52);
1907 Packet4d c = _mm256_castsi256_pd(_mm256_insertf128_si256(_mm256_castsi128_si256(lo), hi, 1));
1908 Packet4d out = pmul(pmul(pmul(a, c), c), c);
1911 b = psub(psub(psub(e, b), b), b);
1912 hi = vec4i_swizzle1(padd(b, bias), 0, 2, 1, 3);
1913 lo = _mm_slli_epi64(hi, 52);
1914 hi = _mm_slli_epi64(_mm_srli_epi64(hi, 32), 52);
1915 c = _mm256_castsi256_pd(_mm256_insertf128_si256(_mm256_castsi128_si256(lo), hi, 1));
1921EIGEN_STRONG_INLINE Packet4d pldexp_fast<Packet4d>(
const Packet4d& a,
const Packet4d& exponent) {
1923 const Packet4d min_exponent = pset1<Packet4d>(-1023.0);
1924 const Packet4d max_exponent = pset1<Packet4d>(1024.0);
1925 const Packet4i e = _mm256_cvtpd_epi32(pmin(pmax(exponent, min_exponent), max_exponent));
1926 const Packet4i bias = pset1<Packet4i>(1023);
1929 Packet4i hi = vec4i_swizzle1(padd(e, bias), 0, 2, 1, 3);
1930 const Packet4i lo = _mm_slli_epi64(hi, 52);
1931 hi = _mm_slli_epi64(_mm_srli_epi64(hi, 32), 52);
1932 const Packet4d c = _mm256_castsi256_pd(_mm256_insertf128_si256(_mm256_castsi128_si256(lo), hi, 1));
1937EIGEN_STRONG_INLINE Packet4f predux_half_dowto4<Packet8f>(
const Packet8f& a) {
1938 return _mm_add_ps(_mm256_castps256_ps128(a), _mm256_extractf128_ps(a, 1));
1941EIGEN_STRONG_INLINE Packet4i predux_half_dowto4<Packet8i>(
const Packet8i& a) {
1942 return _mm_add_epi32(_mm256_castsi256_si128(a), _mm256_extractf128_si256(a, 1));
1945EIGEN_STRONG_INLINE Packet4ui predux_half_dowto4<Packet8ui>(
const Packet8ui& a) {
1946 return _mm_add_epi32(_mm256_castsi256_si128(a), _mm256_extractf128_si256(a, 1));
1949EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8f, 8>& kernel) {
1950 __m256 T0 = _mm256_unpacklo_ps(kernel.packet[0], kernel.packet[1]);
1951 __m256 T1 = _mm256_unpackhi_ps(kernel.packet[0], kernel.packet[1]);
1952 __m256 T2 = _mm256_unpacklo_ps(kernel.packet[2], kernel.packet[3]);
1953 __m256 T3 = _mm256_unpackhi_ps(kernel.packet[2], kernel.packet[3]);
1954 __m256 T4 = _mm256_unpacklo_ps(kernel.packet[4], kernel.packet[5]);
1955 __m256 T5 = _mm256_unpackhi_ps(kernel.packet[4], kernel.packet[5]);
1956 __m256 T6 = _mm256_unpacklo_ps(kernel.packet[6], kernel.packet[7]);
1957 __m256 T7 = _mm256_unpackhi_ps(kernel.packet[6], kernel.packet[7]);
1958 __m256 S0 = _mm256_shuffle_ps(T0, T2, _MM_SHUFFLE(1, 0, 1, 0));
1959 __m256 S1 = _mm256_shuffle_ps(T0, T2, _MM_SHUFFLE(3, 2, 3, 2));
1960 __m256 S2 = _mm256_shuffle_ps(T1, T3, _MM_SHUFFLE(1, 0, 1, 0));
1961 __m256 S3 = _mm256_shuffle_ps(T1, T3, _MM_SHUFFLE(3, 2, 3, 2));
1962 __m256 S4 = _mm256_shuffle_ps(T4, T6, _MM_SHUFFLE(1, 0, 1, 0));
1963 __m256 S5 = _mm256_shuffle_ps(T4, T6, _MM_SHUFFLE(3, 2, 3, 2));
1964 __m256 S6 = _mm256_shuffle_ps(T5, T7, _MM_SHUFFLE(1, 0, 1, 0));
1965 __m256 S7 = _mm256_shuffle_ps(T5, T7, _MM_SHUFFLE(3, 2, 3, 2));
1966 kernel.packet[0] = _mm256_permute2f128_ps(S0, S4, 0x20);
1967 kernel.packet[1] = _mm256_permute2f128_ps(S1, S5, 0x20);
1968 kernel.packet[2] = _mm256_permute2f128_ps(S2, S6, 0x20);
1969 kernel.packet[3] = _mm256_permute2f128_ps(S3, S7, 0x20);
1970 kernel.packet[4] = _mm256_permute2f128_ps(S0, S4, 0x31);
1971 kernel.packet[5] = _mm256_permute2f128_ps(S1, S5, 0x31);
1972 kernel.packet[6] = _mm256_permute2f128_ps(S2, S6, 0x31);
1973 kernel.packet[7] = _mm256_permute2f128_ps(S3, S7, 0x31);
1976EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8f, 4>& kernel) {
1977 __m256 T0 = _mm256_unpacklo_ps(kernel.packet[0], kernel.packet[1]);
1978 __m256 T1 = _mm256_unpackhi_ps(kernel.packet[0], kernel.packet[1]);
1979 __m256 T2 = _mm256_unpacklo_ps(kernel.packet[2], kernel.packet[3]);
1980 __m256 T3 = _mm256_unpackhi_ps(kernel.packet[2], kernel.packet[3]);
1982 __m256 S0 = _mm256_shuffle_ps(T0, T2, _MM_SHUFFLE(1, 0, 1, 0));
1983 __m256 S1 = _mm256_shuffle_ps(T0, T2, _MM_SHUFFLE(3, 2, 3, 2));
1984 __m256 S2 = _mm256_shuffle_ps(T1, T3, _MM_SHUFFLE(1, 0, 1, 0));
1985 __m256 S3 = _mm256_shuffle_ps(T1, T3, _MM_SHUFFLE(3, 2, 3, 2));
1987 kernel.packet[0] = _mm256_permute2f128_ps(S0, S1, 0x20);
1988 kernel.packet[1] = _mm256_permute2f128_ps(S2, S3, 0x20);
1989 kernel.packet[2] = _mm256_permute2f128_ps(S0, S1, 0x31);
1990 kernel.packet[3] = _mm256_permute2f128_ps(S2, S3, 0x31);
1993#define MM256_SHUFFLE_EPI32(A, B, M) \
1994 _mm256_castps_si256(_mm256_shuffle_ps(_mm256_castsi256_ps(A), _mm256_castsi256_ps(B), M))
1996#ifndef EIGEN_VECTORIZE_AVX2
1997#define MM256_UNPACKLO_EPI32(A, B) \
1998 _mm256_castps_si256(_mm256_unpacklo_ps(_mm256_castsi256_ps(A), _mm256_castsi256_ps(B)))
1999#define MM256_UNPACKHI_EPI32(A, B) \
2000 _mm256_castps_si256(_mm256_unpackhi_ps(_mm256_castsi256_ps(A), _mm256_castsi256_ps(B)))
2002#define MM256_UNPACKLO_EPI32(A, B) _mm256_unpacklo_epi32(A, B)
2003#define MM256_UNPACKHI_EPI32(A, B) _mm256_unpackhi_epi32(A, B)
2006EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8i, 8>& kernel) {
2007 __m256i T0 = MM256_UNPACKLO_EPI32(kernel.packet[0], kernel.packet[1]);
2008 __m256i T1 = MM256_UNPACKHI_EPI32(kernel.packet[0], kernel.packet[1]);
2009 __m256i T2 = MM256_UNPACKLO_EPI32(kernel.packet[2], kernel.packet[3]);
2010 __m256i T3 = MM256_UNPACKHI_EPI32(kernel.packet[2], kernel.packet[3]);
2011 __m256i T4 = MM256_UNPACKLO_EPI32(kernel.packet[4], kernel.packet[5]);
2012 __m256i T5 = MM256_UNPACKHI_EPI32(kernel.packet[4], kernel.packet[5]);
2013 __m256i T6 = MM256_UNPACKLO_EPI32(kernel.packet[6], kernel.packet[7]);
2014 __m256i T7 = MM256_UNPACKHI_EPI32(kernel.packet[6], kernel.packet[7]);
2015 __m256i S0 = MM256_SHUFFLE_EPI32(T0, T2, _MM_SHUFFLE(1, 0, 1, 0));
2016 __m256i S1 = MM256_SHUFFLE_EPI32(T0, T2, _MM_SHUFFLE(3, 2, 3, 2));
2017 __m256i S2 = MM256_SHUFFLE_EPI32(T1, T3, _MM_SHUFFLE(1, 0, 1, 0));
2018 __m256i S3 = MM256_SHUFFLE_EPI32(T1, T3, _MM_SHUFFLE(3, 2, 3, 2));
2019 __m256i S4 = MM256_SHUFFLE_EPI32(T4, T6, _MM_SHUFFLE(1, 0, 1, 0));
2020 __m256i S5 = MM256_SHUFFLE_EPI32(T4, T6, _MM_SHUFFLE(3, 2, 3, 2));
2021 __m256i S6 = MM256_SHUFFLE_EPI32(T5, T7, _MM_SHUFFLE(1, 0, 1, 0));
2022 __m256i S7 = MM256_SHUFFLE_EPI32(T5, T7, _MM_SHUFFLE(3, 2, 3, 2));
2023 kernel.packet[0] = _mm256_permute2f128_si256(S0, S4, 0x20);
2024 kernel.packet[1] = _mm256_permute2f128_si256(S1, S5, 0x20);
2025 kernel.packet[2] = _mm256_permute2f128_si256(S2, S6, 0x20);
2026 kernel.packet[3] = _mm256_permute2f128_si256(S3, S7, 0x20);
2027 kernel.packet[4] = _mm256_permute2f128_si256(S0, S4, 0x31);
2028 kernel.packet[5] = _mm256_permute2f128_si256(S1, S5, 0x31);
2029 kernel.packet[6] = _mm256_permute2f128_si256(S2, S6, 0x31);
2030 kernel.packet[7] = _mm256_permute2f128_si256(S3, S7, 0x31);
2032EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8ui, 8>& kernel) {
2033 ptranspose((PacketBlock<Packet8i, 8>&)kernel);
2036EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8i, 4>& kernel) {
2037 __m256i T0 = MM256_UNPACKLO_EPI32(kernel.packet[0], kernel.packet[1]);
2038 __m256i T1 = MM256_UNPACKHI_EPI32(kernel.packet[0], kernel.packet[1]);
2039 __m256i T2 = MM256_UNPACKLO_EPI32(kernel.packet[2], kernel.packet[3]);
2040 __m256i T3 = MM256_UNPACKHI_EPI32(kernel.packet[2], kernel.packet[3]);
2042 __m256i S0 = MM256_SHUFFLE_EPI32(T0, T2, _MM_SHUFFLE(1, 0, 1, 0));
2043 __m256i S1 = MM256_SHUFFLE_EPI32(T0, T2, _MM_SHUFFLE(3, 2, 3, 2));
2044 __m256i S2 = MM256_SHUFFLE_EPI32(T1, T3, _MM_SHUFFLE(1, 0, 1, 0));
2045 __m256i S3 = MM256_SHUFFLE_EPI32(T1, T3, _MM_SHUFFLE(3, 2, 3, 2));
2047 kernel.packet[0] = _mm256_permute2f128_si256(S0, S1, 0x20);
2048 kernel.packet[1] = _mm256_permute2f128_si256(S2, S3, 0x20);
2049 kernel.packet[2] = _mm256_permute2f128_si256(S0, S1, 0x31);
2050 kernel.packet[3] = _mm256_permute2f128_si256(S2, S3, 0x31);
2052EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet8ui, 4>& kernel) {
2053 ptranspose((PacketBlock<Packet8i, 4>&)kernel);
2056EIGEN_DEVICE_FUNC
inline void ptranspose(PacketBlock<Packet4d, 4>& kernel) {
2057 __m256d T0 = _mm256_shuffle_pd(kernel.packet[0], kernel.packet[1], 15);
2058 __m256d T1 = _mm256_shuffle_pd(kernel.packet[0], kernel.packet[1], 0);
2059 __m256d T2 = _mm256_shuffle_pd(kernel.packet[2], kernel.packet[3], 15);
2060 __m256d T3 = _mm256_shuffle_pd(kernel.packet[2], kernel.packet[3], 0);
2062 kernel.packet[1] = _mm256_permute2f128_pd(T0, T2, 32);
2063 kernel.packet[3] = _mm256_permute2f128_pd(T0, T2, 49);
2064 kernel.packet[0] = _mm256_permute2f128_pd(T1, T3, 32);
2065 kernel.packet[2] = _mm256_permute2f128_pd(T1, T3, 49);
2069#ifndef EIGEN_VECTORIZE_AVX512FP16
2071struct unpacket_traits<Packet8h> {
2072 typedef Eigen::half type;
2076 vectorizable =
true,
2077 masked_load_available =
false,
2078 masked_store_available =
false
2080 typedef Packet8h half;
2084EIGEN_STRONG_INLINE Packet8h pset1<Packet8h>(
const Eigen::half& from) {
2085 return _mm_set1_epi16(numext::bit_cast<numext::uint16_t>(from));
2089EIGEN_STRONG_INLINE Eigen::half pfirst<Packet8h>(
const Packet8h& from) {
2090 return numext::bit_cast<Eigen::half>(
static_cast<numext::uint16_t
>(_mm_extract_epi16(from, 0)));
2094EIGEN_STRONG_INLINE Packet8h pload<Packet8h>(
const Eigen::half* from) {
2095 return _mm_load_si128(
reinterpret_cast<const __m128i*
>(from));
2099EIGEN_STRONG_INLINE Packet8h ploadu<Packet8h>(
const Eigen::half* from) {
2100 return _mm_loadu_si128(
reinterpret_cast<const __m128i*
>(from));
2104EIGEN_STRONG_INLINE
void pstore<Eigen::half>(Eigen::half* to,
const Packet8h& from) {
2105 _mm_store_si128(
reinterpret_cast<__m128i*
>(to), from);
2109EIGEN_STRONG_INLINE
void pstoreu<Eigen::half>(Eigen::half* to,
const Packet8h& from) {
2110 _mm_storeu_si128(
reinterpret_cast<__m128i*
>(to), from);
2114EIGEN_STRONG_INLINE Packet8h ploaddup<Packet8h>(
const Eigen::half* from) {
2115 const numext::uint16_t a = numext::bit_cast<numext::uint16_t>(from[0]);
2116 const numext::uint16_t b = numext::bit_cast<numext::uint16_t>(from[1]);
2117 const numext::uint16_t c = numext::bit_cast<numext::uint16_t>(from[2]);
2118 const numext::uint16_t d = numext::bit_cast<numext::uint16_t>(from[3]);
2119 return _mm_set_epi16(d, d, c, c, b, b, a, a);
2123EIGEN_STRONG_INLINE Packet8h ploadquad<Packet8h>(
const Eigen::half* from) {
2124 const numext::uint16_t a = numext::bit_cast<numext::uint16_t>(from[0]);
2125 const numext::uint16_t b = numext::bit_cast<numext::uint16_t>(from[1]);
2126 return _mm_set_epi16(b, b, b, b, a, a, a, a);
2130EIGEN_STRONG_INLINE Packet8h ptrue(
const Packet8h& a) {
2131 return _mm_cmpeq_epi32(a, a);
2135EIGEN_STRONG_INLINE Packet8h pabs(
const Packet8h& a) {
2136 const __m128i sign_mask = _mm_set1_epi16(
static_cast<numext::uint16_t
>(0x8000));
2137 return _mm_andnot_si128(sign_mask, a);
2140EIGEN_STRONG_INLINE Packet8f half2float(
const Packet8h& a) {
2141#ifdef EIGEN_HAS_FP16_C
2142 return _mm256_cvtph_ps(a);
2144 Eigen::internal::Packet8f pp = _mm256_castsi256_ps(
2145 _mm256_insertf128_si256(_mm256_castsi128_si256(half2floatsse(a)), half2floatsse(_mm_srli_si128(a, 8)), 1));
2150EIGEN_STRONG_INLINE Packet8h float2half(
const Packet8f& a) {
2151#ifdef EIGEN_HAS_FP16_C
2152 return _mm256_cvtps_ph(a, _MM_FROUND_TO_NEAREST_INT);
2154 __m128i lo = float2half(_mm256_extractf128_ps(a, 0));
2155 __m128i hi = float2half(_mm256_extractf128_ps(a, 1));
2156 return _mm_packus_epi32(lo, hi);
2161EIGEN_STRONG_INLINE Packet8h pmin<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2162 return float2half(pmin<Packet8f>(half2float(a), half2float(b)));
2166EIGEN_STRONG_INLINE Packet8h pmax<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2167 return float2half(pmax<Packet8f>(half2float(a), half2float(b)));
2171EIGEN_STRONG_INLINE Packet8h plset<Packet8h>(
const half& a) {
2172 return float2half(plset<Packet8f>(
static_cast<float>(a)));
2176EIGEN_STRONG_INLINE Packet8h por(
const Packet8h& a,
const Packet8h& b) {
2179 return _mm_or_si128(a, b);
2182EIGEN_STRONG_INLINE Packet8h pxor(
const Packet8h& a,
const Packet8h& b) {
2183 return _mm_xor_si128(a, b);
2186EIGEN_STRONG_INLINE Packet8h pand(
const Packet8h& a,
const Packet8h& b) {
2187 return _mm_and_si128(a, b);
2190EIGEN_STRONG_INLINE Packet8h pandnot(
const Packet8h& a,
const Packet8h& b) {
2191 return _mm_andnot_si128(b, a);
2195EIGEN_STRONG_INLINE Packet8h pselect(
const Packet8h& mask,
const Packet8h& a,
const Packet8h& b) {
2196 return _mm_blendv_epi8(b, a, mask);
2200EIGEN_STRONG_INLINE Packet8h pround<Packet8h>(
const Packet8h& a) {
2201 return float2half(pround<Packet8f>(half2float(a)));
2205EIGEN_STRONG_INLINE Packet8h print<Packet8h>(
const Packet8h& a) {
2206 return float2half(print<Packet8f>(half2float(a)));
2210EIGEN_STRONG_INLINE Packet8h pceil<Packet8h>(
const Packet8h& a) {
2211 return float2half(pceil<Packet8f>(half2float(a)));
2215EIGEN_STRONG_INLINE Packet8h pfloor<Packet8h>(
const Packet8h& a) {
2216 return float2half(pfloor<Packet8f>(half2float(a)));
2220EIGEN_STRONG_INLINE Packet8h ptrunc<Packet8h>(
const Packet8h& a) {
2221 return float2half(ptrunc<Packet8f>(half2float(a)));
2225EIGEN_STRONG_INLINE Packet8h pisinf<Packet8h>(
const Packet8h& a) {
2226 constexpr uint16_t kInf = ((1 << 5) - 1) << 10;
2227 constexpr uint16_t kAbsMask = (1 << 15) - 1;
2228 return _mm_cmpeq_epi16(_mm_and_si128(a.m_val, _mm_set1_epi16(kAbsMask)), _mm_set1_epi16(kInf));
2232EIGEN_STRONG_INLINE Packet8h pisnan<Packet8h>(
const Packet8h& a) {
2233 constexpr uint16_t kInf = ((1 << 5) - 1) << 10;
2234 constexpr uint16_t kAbsMask = (1 << 15) - 1;
2235 return _mm_cmpgt_epi16(_mm_and_si128(a.m_val, _mm_set1_epi16(kAbsMask)), _mm_set1_epi16(kInf));
2239EIGEN_STRONG_INLINE __m128i pmaptosigned(
const __m128i& a) {
2240 constexpr uint16_t kAbsMask = (1 << 15) - 1;
2242 return _mm_sign_epi16(_mm_and_si128(a, _mm_set1_epi16(kAbsMask)), a);
2246EIGEN_STRONG_INLINE Packet8h pisordered(
const Packet8h& a,
const Packet8h& b) {
2247 constexpr uint16_t kInf = ((1 << 5) - 1) << 10;
2248 constexpr uint16_t kAbsMask = (1 << 15) - 1;
2249 __m128i abs_a = _mm_and_si128(a.m_val, _mm_set1_epi16(kAbsMask));
2250 __m128i abs_b = _mm_and_si128(b.m_val, _mm_set1_epi16(kAbsMask));
2253 return _mm_cmplt_epi16(_mm_max_epu16(abs_a, abs_b), _mm_set1_epi16(kInf + 1));
2257EIGEN_STRONG_INLINE Packet8h pcmp_eq(
const Packet8h& a,
const Packet8h& b) {
2258 __m128i isOrdered = pisordered(a, b);
2259 __m128i isEqual = _mm_cmpeq_epi16(pmaptosigned(a.m_val), pmaptosigned(b.m_val));
2260 return _mm_and_si128(isOrdered, isEqual);
2264EIGEN_STRONG_INLINE Packet8h pcmp_le(
const Packet8h& a,
const Packet8h& b) {
2265 __m128i isOrdered = pisordered(a, b);
2266 __m128i isGreater = _mm_cmpgt_epi16(pmaptosigned(a.m_val), pmaptosigned(b.m_val));
2267 return _mm_andnot_si128(isGreater, isOrdered);
2271EIGEN_STRONG_INLINE Packet8h pcmp_lt(
const Packet8h& a,
const Packet8h& b) {
2272 __m128i isOrdered = pisordered(a, b);
2273 __m128i isLess = _mm_cmplt_epi16(pmaptosigned(a.m_val), pmaptosigned(b.m_val));
2274 return _mm_and_si128(isOrdered, isLess);
2278EIGEN_STRONG_INLINE Packet8h pcmp_lt_or_nan(
const Packet8h& a,
const Packet8h& b) {
2279 __m128i isUnordered = por(pisnan(a), pisnan(b));
2280 __m128i isLess = _mm_cmplt_epi16(pmaptosigned(a.m_val), pmaptosigned(b.m_val));
2281 return _mm_or_si128(isUnordered, isLess);
2285EIGEN_STRONG_INLINE Packet8h pconj(
const Packet8h& a) {
2290EIGEN_STRONG_INLINE Packet8h pnegate(
const Packet8h& a) {
2291 Packet8h sign_mask = _mm_set1_epi16(
static_cast<numext::uint16_t
>(0x8000));
2292 return _mm_xor_si128(a, sign_mask);
2295#ifndef EIGEN_VECTORIZE_AVX512FP16
2297EIGEN_STRONG_INLINE Packet8h padd<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2298 Packet8f af = half2float(a);
2299 Packet8f bf = half2float(b);
2300 Packet8f rf = padd(af, bf);
2301 return float2half(rf);
2305EIGEN_STRONG_INLINE Packet8h psub<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2306 Packet8f af = half2float(a);
2307 Packet8f bf = half2float(b);
2308 Packet8f rf = psub(af, bf);
2309 return float2half(rf);
2313EIGEN_STRONG_INLINE Packet8h pmul<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2314 Packet8f af = half2float(a);
2315 Packet8f bf = half2float(b);
2316 Packet8f rf = pmul(af, bf);
2317 return float2half(rf);
2321EIGEN_STRONG_INLINE Packet8h pmadd<Packet8h>(
const Packet8h& a,
const Packet8h& b,
const Packet8h& c) {
2322 return float2half(pmadd(half2float(a), half2float(b), half2float(c)));
2326EIGEN_STRONG_INLINE Packet8h pmsub<Packet8h>(
const Packet8h& a,
const Packet8h& b,
const Packet8h& c) {
2327 return float2half(pmsub(half2float(a), half2float(b), half2float(c)));
2331EIGEN_STRONG_INLINE Packet8h pnmadd<Packet8h>(
const Packet8h& a,
const Packet8h& b,
const Packet8h& c) {
2332 return float2half(pnmadd(half2float(a), half2float(b), half2float(c)));
2336EIGEN_STRONG_INLINE Packet8h pnmsub<Packet8h>(
const Packet8h& a,
const Packet8h& b,
const Packet8h& c) {
2337 return float2half(pnmsub(half2float(a), half2float(b), half2float(c)));
2341EIGEN_STRONG_INLINE Packet8h pdiv<Packet8h>(
const Packet8h& a,
const Packet8h& b) {
2342 Packet8f af = half2float(a);
2343 Packet8f bf = half2float(b);
2344 Packet8f rf = pdiv(af, bf);
2345 return float2half(rf);
2350EIGEN_STRONG_INLINE Packet8h pgather<Eigen::half, Packet8h>(
const Eigen::half* from,
Index stride) {
2351 const numext::uint16_t s0 = numext::bit_cast<numext::uint16_t>(from[0 * stride]);
2352 const numext::uint16_t s1 = numext::bit_cast<numext::uint16_t>(from[1 * stride]);
2353 const numext::uint16_t s2 = numext::bit_cast<numext::uint16_t>(from[2 * stride]);
2354 const numext::uint16_t s3 = numext::bit_cast<numext::uint16_t>(from[3 * stride]);
2355 const numext::uint16_t s4 = numext::bit_cast<numext::uint16_t>(from[4 * stride]);
2356 const numext::uint16_t s5 = numext::bit_cast<numext::uint16_t>(from[5 * stride]);
2357 const numext::uint16_t s6 = numext::bit_cast<numext::uint16_t>(from[6 * stride]);
2358 const numext::uint16_t s7 = numext::bit_cast<numext::uint16_t>(from[7 * stride]);
2359 return _mm_set_epi16(s7, s6, s5, s4, s3, s2, s1, s0);
2363EIGEN_STRONG_INLINE
void pscatter<Eigen::half, Packet8h>(Eigen::half* to,
const Packet8h& from,
Index stride) {
2364 EIGEN_ALIGN32 Eigen::half aux[8];
2366 to[stride * 0] = aux[0];
2367 to[stride * 1] = aux[1];
2368 to[stride * 2] = aux[2];
2369 to[stride * 3] = aux[3];
2370 to[stride * 4] = aux[4];
2371 to[stride * 5] = aux[5];
2372 to[stride * 6] = aux[6];
2373 to[stride * 7] = aux[7];
2377EIGEN_STRONG_INLINE Packet8h preverse(
const Packet8h& a) {
2378 __m128i m = _mm_setr_epi8(14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1);
2379 return _mm_shuffle_epi8(a, m);
2382EIGEN_STRONG_INLINE
void ptranspose(PacketBlock<Packet8h, 8>& kernel) {
2383 __m128i a = kernel.packet[0];
2384 __m128i b = kernel.packet[1];
2385 __m128i c = kernel.packet[2];
2386 __m128i d = kernel.packet[3];
2387 __m128i e = kernel.packet[4];
2388 __m128i f = kernel.packet[5];
2389 __m128i g = kernel.packet[6];
2390 __m128i h = kernel.packet[7];
2392 __m128i a03b03 = _mm_unpacklo_epi16(a, b);
2393 __m128i c03d03 = _mm_unpacklo_epi16(c, d);
2394 __m128i e03f03 = _mm_unpacklo_epi16(e, f);
2395 __m128i g03h03 = _mm_unpacklo_epi16(g, h);
2396 __m128i a47b47 = _mm_unpackhi_epi16(a, b);
2397 __m128i c47d47 = _mm_unpackhi_epi16(c, d);
2398 __m128i e47f47 = _mm_unpackhi_epi16(e, f);
2399 __m128i g47h47 = _mm_unpackhi_epi16(g, h);
2401 __m128i a01b01c01d01 = _mm_unpacklo_epi32(a03b03, c03d03);
2402 __m128i a23b23c23d23 = _mm_unpackhi_epi32(a03b03, c03d03);
2403 __m128i e01f01g01h01 = _mm_unpacklo_epi32(e03f03, g03h03);
2404 __m128i e23f23g23h23 = _mm_unpackhi_epi32(e03f03, g03h03);
2405 __m128i a45b45c45d45 = _mm_unpacklo_epi32(a47b47, c47d47);
2406 __m128i a67b67c67d67 = _mm_unpackhi_epi32(a47b47, c47d47);
2407 __m128i e45f45g45h45 = _mm_unpacklo_epi32(e47f47, g47h47);
2408 __m128i e67f67g67h67 = _mm_unpackhi_epi32(e47f47, g47h47);
2410 __m128i a0b0c0d0e0f0g0h0 = _mm_unpacklo_epi64(a01b01c01d01, e01f01g01h01);
2411 __m128i a1b1c1d1e1f1g1h1 = _mm_unpackhi_epi64(a01b01c01d01, e01f01g01h01);
2412 __m128i a2b2c2d2e2f2g2h2 = _mm_unpacklo_epi64(a23b23c23d23, e23f23g23h23);
2413 __m128i a3b3c3d3e3f3g3h3 = _mm_unpackhi_epi64(a23b23c23d23, e23f23g23h23);
2414 __m128i a4b4c4d4e4f4g4h4 = _mm_unpacklo_epi64(a45b45c45d45, e45f45g45h45);
2415 __m128i a5b5c5d5e5f5g5h5 = _mm_unpackhi_epi64(a45b45c45d45, e45f45g45h45);
2416 __m128i a6b6c6d6e6f6g6h6 = _mm_unpacklo_epi64(a67b67c67d67, e67f67g67h67);
2417 __m128i a7b7c7d7e7f7g7h7 = _mm_unpackhi_epi64(a67b67c67d67, e67f67g67h67);
2419 kernel.packet[0] = a0b0c0d0e0f0g0h0;
2420 kernel.packet[1] = a1b1c1d1e1f1g1h1;
2421 kernel.packet[2] = a2b2c2d2e2f2g2h2;
2422 kernel.packet[3] = a3b3c3d3e3f3g3h3;
2423 kernel.packet[4] = a4b4c4d4e4f4g4h4;
2424 kernel.packet[5] = a5b5c5d5e5f5g5h5;
2425 kernel.packet[6] = a6b6c6d6e6f6g6h6;
2426 kernel.packet[7] = a7b7c7d7e7f7g7h7;
2429EIGEN_STRONG_INLINE
void ptranspose(PacketBlock<Packet8h, 4>& kernel) {
2430 EIGEN_ALIGN32 Eigen::half in[4][8];
2431 pstore<Eigen::half>(in[0], kernel.packet[0]);
2432 pstore<Eigen::half>(in[1], kernel.packet[1]);
2433 pstore<Eigen::half>(in[2], kernel.packet[2]);
2434 pstore<Eigen::half>(in[3], kernel.packet[3]);
2436 EIGEN_ALIGN32 Eigen::half out[4][8];
2438 for (
int i = 0; i < 4; ++i) {
2439 for (
int j = 0; j < 4; ++j) {
2440 out[i][j] = in[j][2 * i];
2442 for (
int j = 0; j < 4; ++j) {
2443 out[i][j + 4] = in[j][2 * i + 1];
2447 kernel.packet[0] = pload<Packet8h>(out[0]);
2448 kernel.packet[1] = pload<Packet8h>(out[1]);
2449 kernel.packet[2] = pload<Packet8h>(out[2]);
2450 kernel.packet[3] = pload<Packet8h>(out[3]);
2457EIGEN_STRONG_INLINE Packet8f Bf16ToF32(
const Packet8bf& a) {
2458#ifdef EIGEN_VECTORIZE_AVX2
2459 __m256i extend = _mm256_cvtepu16_epi32(a);
2460 return _mm256_castsi256_ps(_mm256_slli_epi32(extend, 16));
2462 __m128i lo = _mm_cvtepu16_epi32(a);
2463 __m128i hi = _mm_cvtepu16_epi32(_mm_srli_si128(a, 8));
2464 __m128i lo_shift = _mm_slli_epi32(lo, 16);
2465 __m128i hi_shift = _mm_slli_epi32(hi, 16);
2466 return _mm256_castsi256_ps(_mm256_insertf128_si256(_mm256_castsi128_si256(lo_shift), hi_shift, 1));
2471EIGEN_STRONG_INLINE Packet8bf F32ToBf16(
const Packet8f& a) {
2472 __m256i input = _mm256_castps_si256(a);
2474#ifdef EIGEN_VECTORIZE_AVX2
2476 __m256i t = _mm256_srli_epi32(input, 16);
2478 t = _mm256_and_si256(t, _mm256_set1_epi32(1));
2480 t = _mm256_add_epi32(t, _mm256_set1_epi32(0x7fff));
2482 t = _mm256_add_epi32(t, input);
2484 t = _mm256_srli_epi32(t, 16);
2486 __m256 mask = _mm256_cmp_ps(a, a, _CMP_ORD_Q);
2487 __m256i nan = _mm256_set1_epi32(0x7fc0);
2488 t = _mm256_blendv_epi8(nan, t, _mm256_castps_si256(mask));
2490 return _mm_packus_epi32(_mm256_extractf128_si256(t, 0), _mm256_extractf128_si256(t, 1));
2493 __m128i lo = _mm_srli_epi32(_mm256_extractf128_si256(input, 0), 16);
2494 __m128i hi = _mm_srli_epi32(_mm256_extractf128_si256(input, 1), 16);
2496 lo = _mm_and_si128(lo, _mm_set1_epi32(1));
2497 hi = _mm_and_si128(hi, _mm_set1_epi32(1));
2499 lo = _mm_add_epi32(lo, _mm_set1_epi32(0x7fff));
2500 hi = _mm_add_epi32(hi, _mm_set1_epi32(0x7fff));
2502 lo = _mm_add_epi32(lo, _mm256_extractf128_si256(input, 0));
2503 hi = _mm_add_epi32(hi, _mm256_extractf128_si256(input, 1));
2505 lo = _mm_srli_epi32(lo, 16);
2506 hi = _mm_srli_epi32(hi, 16);
2508 __m256 mask = _mm256_cmp_ps(a, a, _CMP_ORD_Q);
2509 __m128i nan = _mm_set1_epi32(0x7fc0);
2510 lo = _mm_blendv_epi8(nan, lo, _mm_castps_si128(_mm256_castps256_ps128(mask)));
2511 hi = _mm_blendv_epi8(nan, hi, _mm_castps_si128(_mm256_extractf128_ps(mask, 1)));
2513 return _mm_packus_epi32(lo, hi);
2518EIGEN_STRONG_INLINE Packet8bf pset1<Packet8bf>(
const bfloat16& from) {
2519 return _mm_set1_epi16(numext::bit_cast<numext::uint16_t>(from));
2523EIGEN_STRONG_INLINE bfloat16 pfirst<Packet8bf>(
const Packet8bf& from) {
2524 return numext::bit_cast<bfloat16>(
static_cast<numext::uint16_t
>(_mm_extract_epi16(from, 0)));
2528EIGEN_STRONG_INLINE Packet8bf pload<Packet8bf>(
const bfloat16* from) {
2529 return _mm_load_si128(
reinterpret_cast<const __m128i*
>(from));
2533EIGEN_STRONG_INLINE Packet8bf ploadu<Packet8bf>(
const bfloat16* from) {
2534 return _mm_loadu_si128(
reinterpret_cast<const __m128i*
>(from));
2538EIGEN_STRONG_INLINE
void pstore<bfloat16>(bfloat16* to,
const Packet8bf& from) {
2539 _mm_store_si128(
reinterpret_cast<__m128i*
>(to), from);
2543EIGEN_STRONG_INLINE
void pstoreu<bfloat16>(bfloat16* to,
const Packet8bf& from) {
2544 _mm_storeu_si128(
reinterpret_cast<__m128i*
>(to), from);
2548EIGEN_STRONG_INLINE Packet8bf ploaddup<Packet8bf>(
const bfloat16* from) {
2549 const numext::uint16_t a = numext::bit_cast<numext::uint16_t>(from[0]);
2550 const numext::uint16_t b = numext::bit_cast<numext::uint16_t>(from[1]);
2551 const numext::uint16_t c = numext::bit_cast<numext::uint16_t>(from[2]);
2552 const numext::uint16_t d = numext::bit_cast<numext::uint16_t>(from[3]);
2553 return _mm_set_epi16(d, d, c, c, b, b, a, a);
2557EIGEN_STRONG_INLINE Packet8bf ploadquad<Packet8bf>(
const bfloat16* from) {
2558 const numext::uint16_t a = numext::bit_cast<numext::uint16_t>(from[0]);
2559 const numext::uint16_t b = numext::bit_cast<numext::uint16_t>(from[1]);
2560 return _mm_set_epi16(b, b, b, b, a, a, a, a);
2564EIGEN_STRONG_INLINE Packet8bf ptrue(
const Packet8bf& a) {
2565 return _mm_cmpeq_epi32(a, a);
2569EIGEN_STRONG_INLINE Packet8bf pabs(
const Packet8bf& a) {
2570 const __m128i sign_mask = _mm_set1_epi16(
static_cast<numext::uint16_t
>(0x8000));
2571 return _mm_andnot_si128(sign_mask, a);
2575EIGEN_STRONG_INLINE Packet8bf pmin<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2576 return F32ToBf16(pmin<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2580EIGEN_STRONG_INLINE Packet8bf pmax<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2581 return F32ToBf16(pmax<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2585EIGEN_STRONG_INLINE Packet8bf plset<Packet8bf>(
const bfloat16& a) {
2586 return F32ToBf16(plset<Packet8f>(
static_cast<float>(a)));
2590EIGEN_STRONG_INLINE Packet8bf por(
const Packet8bf& a,
const Packet8bf& b) {
2591 return _mm_or_si128(a, b);
2594EIGEN_STRONG_INLINE Packet8bf pxor(
const Packet8bf& a,
const Packet8bf& b) {
2595 return _mm_xor_si128(a, b);
2598EIGEN_STRONG_INLINE Packet8bf pand(
const Packet8bf& a,
const Packet8bf& b) {
2599 return _mm_and_si128(a, b);
2602EIGEN_STRONG_INLINE Packet8bf pandnot(
const Packet8bf& a,
const Packet8bf& b) {
2603 return _mm_andnot_si128(b, a);
2607EIGEN_STRONG_INLINE Packet8bf pselect(
const Packet8bf& mask,
const Packet8bf& a,
const Packet8bf& b) {
2608 return _mm_blendv_epi8(b, a, mask);
2612EIGEN_STRONG_INLINE Packet8bf pround<Packet8bf>(
const Packet8bf& a) {
2613 return F32ToBf16(pround<Packet8f>(Bf16ToF32(a)));
2617EIGEN_STRONG_INLINE Packet8bf print<Packet8bf>(
const Packet8bf& a) {
2618 return F32ToBf16(print<Packet8f>(Bf16ToF32(a)));
2622EIGEN_STRONG_INLINE Packet8bf pceil<Packet8bf>(
const Packet8bf& a) {
2623 return F32ToBf16(pceil<Packet8f>(Bf16ToF32(a)));
2627EIGEN_STRONG_INLINE Packet8bf pfloor<Packet8bf>(
const Packet8bf& a) {
2628 return F32ToBf16(pfloor<Packet8f>(Bf16ToF32(a)));
2632EIGEN_STRONG_INLINE Packet8bf ptrunc<Packet8bf>(
const Packet8bf& a) {
2633 return F32ToBf16(ptrunc<Packet8f>(Bf16ToF32(a)));
2637EIGEN_STRONG_INLINE Packet8bf pcmp_eq(
const Packet8bf& a,
const Packet8bf& b) {
2638 return Pack16To8(pcmp_eq(Bf16ToF32(a), Bf16ToF32(b)));
2642EIGEN_STRONG_INLINE Packet8bf pcmp_le(
const Packet8bf& a,
const Packet8bf& b) {
2643 return Pack16To8(pcmp_le(Bf16ToF32(a), Bf16ToF32(b)));
2647EIGEN_STRONG_INLINE Packet8bf pcmp_lt(
const Packet8bf& a,
const Packet8bf& b) {
2648 return Pack16To8(pcmp_lt(Bf16ToF32(a), Bf16ToF32(b)));
2652EIGEN_STRONG_INLINE Packet8bf pcmp_lt_or_nan(
const Packet8bf& a,
const Packet8bf& b) {
2653 return Pack16To8(pcmp_lt_or_nan(Bf16ToF32(a), Bf16ToF32(b)));
2657EIGEN_STRONG_INLINE Packet8bf pconj(
const Packet8bf& a) {
2662EIGEN_STRONG_INLINE Packet8bf pnegate(
const Packet8bf& a) {
2663 Packet8bf sign_mask = _mm_set1_epi16(
static_cast<numext::uint16_t
>(0x8000));
2664 return _mm_xor_si128(a, sign_mask);
2668EIGEN_STRONG_INLINE Packet8bf padd<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2669 return F32ToBf16(padd<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2673EIGEN_STRONG_INLINE Packet8bf psub<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2674 return F32ToBf16(psub<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2678EIGEN_STRONG_INLINE Packet8bf pmul<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2679 return F32ToBf16(pmul<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2683EIGEN_STRONG_INLINE Packet8bf pmadd<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b,
const Packet8bf& c) {
2684 return F32ToBf16(pmadd(Bf16ToF32(a), Bf16ToF32(b), Bf16ToF32(c)));
2688EIGEN_STRONG_INLINE Packet8bf pmsub<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b,
const Packet8bf& c) {
2689 return F32ToBf16(pmsub(Bf16ToF32(a), Bf16ToF32(b), Bf16ToF32(c)));
2693EIGEN_STRONG_INLINE Packet8bf pnmadd<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b,
const Packet8bf& c) {
2694 return F32ToBf16(pnmadd(Bf16ToF32(a), Bf16ToF32(b), Bf16ToF32(c)));
2698EIGEN_STRONG_INLINE Packet8bf pnmsub<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b,
const Packet8bf& c) {
2699 return F32ToBf16(pnmsub(Bf16ToF32(a), Bf16ToF32(b), Bf16ToF32(c)));
2703EIGEN_STRONG_INLINE Packet8bf pdiv<Packet8bf>(
const Packet8bf& a,
const Packet8bf& b) {
2704 return F32ToBf16(pdiv<Packet8f>(Bf16ToF32(a), Bf16ToF32(b)));
2708EIGEN_STRONG_INLINE Packet8bf pgather<bfloat16, Packet8bf>(
const bfloat16* from,
Index stride) {
2709 const numext::uint16_t s0 = numext::bit_cast<numext::uint16_t>(from[0 * stride]);
2710 const numext::uint16_t s1 = numext::bit_cast<numext::uint16_t>(from[1 * stride]);
2711 const numext::uint16_t s2 = numext::bit_cast<numext::uint16_t>(from[2 * stride]);
2712 const numext::uint16_t s3 = numext::bit_cast<numext::uint16_t>(from[3 * stride]);
2713 const numext::uint16_t s4 = numext::bit_cast<numext::uint16_t>(from[4 * stride]);
2714 const numext::uint16_t s5 = numext::bit_cast<numext::uint16_t>(from[5 * stride]);
2715 const numext::uint16_t s6 = numext::bit_cast<numext::uint16_t>(from[6 * stride]);
2716 const numext::uint16_t s7 = numext::bit_cast<numext::uint16_t>(from[7 * stride]);
2717 return _mm_set_epi16(s7, s6, s5, s4, s3, s2, s1, s0);
2721EIGEN_STRONG_INLINE
void pscatter<bfloat16, Packet8bf>(bfloat16* to,
const Packet8bf& from,
Index stride) {
2722 EIGEN_ALIGN32 bfloat16 aux[8];
2724 to[stride * 0] = aux[0];
2725 to[stride * 1] = aux[1];
2726 to[stride * 2] = aux[2];
2727 to[stride * 3] = aux[3];
2728 to[stride * 4] = aux[4];
2729 to[stride * 5] = aux[5];
2730 to[stride * 6] = aux[6];
2731 to[stride * 7] = aux[7];
2735EIGEN_STRONG_INLINE Packet8bf preverse(
const Packet8bf& a) {
2736 __m128i m = _mm_setr_epi8(14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1);
2737 return _mm_shuffle_epi8(a, m);
2740EIGEN_STRONG_INLINE
void ptranspose(PacketBlock<Packet8bf, 8>& kernel) {
2741 __m128i a = kernel.packet[0];
2742 __m128i b = kernel.packet[1];
2743 __m128i c = kernel.packet[2];
2744 __m128i d = kernel.packet[3];
2745 __m128i e = kernel.packet[4];
2746 __m128i f = kernel.packet[5];
2747 __m128i g = kernel.packet[6];
2748 __m128i h = kernel.packet[7];
2750 __m128i a03b03 = _mm_unpacklo_epi16(a, b);
2751 __m128i c03d03 = _mm_unpacklo_epi16(c, d);
2752 __m128i e03f03 = _mm_unpacklo_epi16(e, f);
2753 __m128i g03h03 = _mm_unpacklo_epi16(g, h);
2754 __m128i a47b47 = _mm_unpackhi_epi16(a, b);
2755 __m128i c47d47 = _mm_unpackhi_epi16(c, d);
2756 __m128i e47f47 = _mm_unpackhi_epi16(e, f);
2757 __m128i g47h47 = _mm_unpackhi_epi16(g, h);
2759 __m128i a01b01c01d01 = _mm_unpacklo_epi32(a03b03, c03d03);
2760 __m128i a23b23c23d23 = _mm_unpackhi_epi32(a03b03, c03d03);
2761 __m128i e01f01g01h01 = _mm_unpacklo_epi32(e03f03, g03h03);
2762 __m128i e23f23g23h23 = _mm_unpackhi_epi32(e03f03, g03h03);
2763 __m128i a45b45c45d45 = _mm_unpacklo_epi32(a47b47, c47d47);
2764 __m128i a67b67c67d67 = _mm_unpackhi_epi32(a47b47, c47d47);
2765 __m128i e45f45g45h45 = _mm_unpacklo_epi32(e47f47, g47h47);
2766 __m128i e67f67g67h67 = _mm_unpackhi_epi32(e47f47, g47h47);
2768 kernel.packet[0] = _mm_unpacklo_epi64(a01b01c01d01, e01f01g01h01);
2769 kernel.packet[1] = _mm_unpackhi_epi64(a01b01c01d01, e01f01g01h01);
2770 kernel.packet[2] = _mm_unpacklo_epi64(a23b23c23d23, e23f23g23h23);
2771 kernel.packet[3] = _mm_unpackhi_epi64(a23b23c23d23, e23f23g23h23);
2772 kernel.packet[4] = _mm_unpacklo_epi64(a45b45c45d45, e45f45g45h45);
2773 kernel.packet[5] = _mm_unpackhi_epi64(a45b45c45d45, e45f45g45h45);
2774 kernel.packet[6] = _mm_unpacklo_epi64(a67b67c67d67, e67f67g67h67);
2775 kernel.packet[7] = _mm_unpackhi_epi64(a67b67c67d67, e67f67g67h67);
2778EIGEN_STRONG_INLINE
void ptranspose(PacketBlock<Packet8bf, 4>& kernel) {
2779 __m128i a = kernel.packet[0];
2780 __m128i b = kernel.packet[1];
2781 __m128i c = kernel.packet[2];
2782 __m128i d = kernel.packet[3];
2784 __m128i ab_03 = _mm_unpacklo_epi16(a, b);
2785 __m128i cd_03 = _mm_unpacklo_epi16(c, d);
2786 __m128i ab_47 = _mm_unpackhi_epi16(a, b);
2787 __m128i cd_47 = _mm_unpackhi_epi16(c, d);
2789 kernel.packet[0] = _mm_unpacklo_epi32(ab_03, cd_03);
2790 kernel.packet[1] = _mm_unpackhi_epi32(ab_03, cd_03);
2791 kernel.packet[2] = _mm_unpacklo_epi32(ab_47, cd_47);
2792 kernel.packet[3] = _mm_unpackhi_epi32(ab_47, cd_47);
2798inline __m128i segment_mask_4x8(
Index begin,
Index count) {
2799 eigen_assert(begin >= 0 && begin + count <= 4);
2801 mask <<= CHAR_BIT * count;
2803 mask <<= CHAR_BIT * begin;
2804#if !EIGEN_ARCH_x86_64
2805 return _mm_loadl_epi64(
reinterpret_cast<const __m128i*
>(&mask));
2807 return _mm_cvtsi64_si128(mask);
2812inline __m128i segment_mask_8x8(
Index begin,
Index count) {
2813 eigen_assert(begin >= 0 && begin + count <= 8);
2816 mask <<= (CHAR_BIT / 2) * count;
2817 mask <<= (CHAR_BIT / 2) * count;
2819 mask <<= CHAR_BIT * begin;
2820#if !EIGEN_ARCH_x86_64
2821 return _mm_loadl_epi64(
reinterpret_cast<const __m128i*
>(&mask));
2823 return _mm_cvtsi64_si128(mask);
2828inline __m128i segment_mask_4x32(
Index begin,
Index count) {
2829 eigen_assert(begin >= 0 && begin + count <= 4);
2830 return _mm_cvtepi8_epi32(segment_mask_4x8(begin, count));
2834inline __m128i segment_mask_2x64(
Index begin,
Index count) {
2835 eigen_assert(begin >= 0 && begin + count <= 2);
2836 return _mm_cvtepi8_epi64(segment_mask_4x8(begin, count));
2840inline __m256i segment_mask_8x32(
Index begin,
Index count) {
2841 __m128i mask_epi8 = segment_mask_8x8(begin, count);
2842#ifdef EIGEN_VECTORIZE_AVX2
2843 __m256i mask_epi32 = _mm256_cvtepi8_epi32(mask_epi8);
2845 __m128i mask_epi32_lo = _mm_cvtepi8_epi32(mask_epi8);
2846 __m128i mask_epi32_hi = _mm_cvtepi8_epi32(_mm_srli_epi64(mask_epi8, 32));
2847 __m256i mask_epi32 = _mm256_insertf128_si256(_mm256_castsi128_si256(mask_epi32_lo), mask_epi32_hi, 1);
2853inline __m256i segment_mask_4x64(
Index begin,
Index count) {
2854 __m128i mask_epi8 = segment_mask_4x8(begin, count);
2855#ifdef EIGEN_VECTORIZE_AVX2
2856 __m256i mask_epi64 = _mm256_cvtepi8_epi64(mask_epi8);
2858 __m128i mask_epi64_lo = _mm_cvtepi8_epi64(mask_epi8);
2859 __m128i mask_epi64_hi = _mm_cvtepi8_epi64(_mm_srli_epi64(mask_epi8, 16));
2860 __m256i mask_epi64 = _mm256_insertf128_si256(_mm256_castsi128_si256(mask_epi64_lo), mask_epi64_hi, 1);
2868struct has_packet_segment<Packet4f> : std::true_type {};
2871struct has_packet_segment<Packet8f> : std::true_type {};
2874inline Packet4f ploaduSegment<Packet4f>(
const float* from,
Index begin,
Index count) {
2875 return _mm_maskload_ps(from, segment_mask_4x32(begin, count));
2879inline void pstoreuSegment<float, Packet4f>(
float* to,
const Packet4f& from,
Index begin,
Index count) {
2880 _mm_maskstore_ps(to, segment_mask_4x32(begin, count), from);
2884inline Packet8f ploaduSegment<Packet8f>(
const float* from,
Index begin,
Index count) {
2885 return _mm256_maskload_ps(from, segment_mask_8x32(begin, count));
2889inline void pstoreuSegment<float, Packet8f>(
float* to,
const Packet8f& from,
Index begin,
Index count) {
2890 _mm256_maskstore_ps(to, segment_mask_8x32(begin, count), from);
2896struct has_packet_segment<Packet4i> : std::true_type {};
2899struct has_packet_segment<Packet8i> : std::true_type {};
2901#ifdef EIGEN_VECTORIZE_AVX2
2904inline Packet4i ploaduSegment<Packet4i>(
const int* from,
Index begin,
Index count) {
2905 return _mm_maskload_epi32(from, segment_mask_4x32(begin, count));
2909inline void pstoreuSegment<int, Packet4i>(
int* to,
const Packet4i& from,
Index begin,
Index count) {
2910 _mm_maskstore_epi32(to, segment_mask_4x32(begin, count), from);
2914inline Packet8i ploaduSegment<Packet8i>(
const int* from,
Index begin,
Index count) {
2915 return _mm256_maskload_epi32(from, segment_mask_8x32(begin, count));
2919inline void pstoreuSegment<int, Packet8i>(
int* to,
const Packet8i& from,
Index begin,
Index count) {
2920 _mm256_maskstore_epi32(to, segment_mask_8x32(begin, count), from);
2926inline Packet4i ploaduSegment<Packet4i>(
const int* from,
Index begin,
Index count) {
2927 return _mm_castps_si128(ploaduSegment<Packet4f>(
reinterpret_cast<const float*
>(from), begin, count));
2931inline void pstoreuSegment<int, Packet4i>(
int* to,
const Packet4i& from,
Index begin,
Index count) {
2932 pstoreuSegment<float, Packet4f>(
reinterpret_cast<float*
>(to), _mm_castsi128_ps(from), begin, count);
2936inline Packet8i ploaduSegment<Packet8i>(
const int* from,
Index begin,
Index count) {
2937 return _mm256_castps_si256(ploaduSegment<Packet8f>(
reinterpret_cast<const float*
>(from), begin, count));
2941inline void pstoreuSegment<int, Packet8i>(
int* to,
const Packet8i& from,
Index begin,
Index count) {
2942 pstoreuSegment<float, Packet8f>(
reinterpret_cast<float*
>(to), _mm256_castsi256_ps(from), begin, count);
2950struct has_packet_segment<Packet4ui> : std::true_type {};
2953struct has_packet_segment<Packet8ui> : std::true_type {};
2956inline Packet4ui ploaduSegment<Packet4ui>(
const uint32_t* from,
Index begin,
Index count) {
2957 return Packet4ui(ploaduSegment<Packet4i>(
reinterpret_cast<const int*
>(from), begin, count));
2961inline void pstoreuSegment<uint32_t, Packet4ui>(uint32_t* to,
const Packet4ui& from,
Index begin,
Index count) {
2962 pstoreuSegment<int, Packet4i>(
reinterpret_cast<int*
>(to), Packet4i(from), begin, count);
2966inline Packet8ui ploaduSegment<Packet8ui>(
const uint32_t* from,
Index begin,
Index count) {
2967 return Packet8ui(ploaduSegment<Packet8i>(
reinterpret_cast<const int*
>(from), begin, count));
2971inline void pstoreuSegment<uint32_t, Packet8ui>(uint32_t* to,
const Packet8ui& from,
Index begin,
Index count) {
2972 pstoreuSegment<int, Packet8i>(
reinterpret_cast<int*
>(to), Packet8i(from), begin, count);
2978struct has_packet_segment<Packet2d> : std::true_type {};
2981struct has_packet_segment<Packet4d> : std::true_type {};
2984inline Packet2d ploaduSegment<Packet2d>(
const double* from,
Index begin,
Index count) {
2985 return _mm_maskload_pd(from, segment_mask_2x64(begin, count));
2989inline void pstoreuSegment<double, Packet2d>(
double* to,
const Packet2d& from,
Index begin,
Index count) {
2990 _mm_maskstore_pd(to, segment_mask_2x64(begin, count), from);
2994inline Packet4d ploaduSegment<Packet4d>(
const double* from,
Index begin,
Index count) {
2995 return _mm256_maskload_pd(from, segment_mask_4x64(begin, count));
2999inline void pstoreuSegment<double, Packet4d>(
double* to,
const Packet4d& from,
Index begin,
Index count) {
3000 _mm256_maskstore_pd(to, segment_mask_4x64(begin, count), from);
3003#ifdef EIGEN_VECTORIZE_AVX2
3008struct has_packet_segment<Packet2l> : std::true_type {};
3011struct has_packet_segment<Packet4l> : std::true_type {};
3014inline Packet2l ploaduSegment<Packet2l>(
const int64_t* from,
Index begin,
Index count) {
3015 return _mm_maskload_epi64(
reinterpret_cast<const long long*
>(from), segment_mask_2x64(begin, count));
3018inline void pstoreuSegment<int64_t, Packet2l>(int64_t* to,
const Packet2l& from,
Index begin,
Index count) {
3019 _mm_maskstore_epi64(
reinterpret_cast<long long*
>(to), segment_mask_2x64(begin, count), from);
3022inline Packet4l ploaduSegment<Packet4l>(
const int64_t* from,
Index begin,
Index count) {
3023 return _mm256_maskload_epi64(
reinterpret_cast<const long long*
>(from), segment_mask_4x64(begin, count));
3026inline void pstoreuSegment<int64_t, Packet4l>(int64_t* to,
const Packet4l& from,
Index begin,
Index count) {
3027 _mm256_maskstore_epi64(
reinterpret_cast<long long*
>(to), segment_mask_4x64(begin, count), from);
3033struct has_packet_segment<Packet4ul> : std::true_type {};
3036inline Packet4ul ploaduSegment<Packet4ul>(
const uint64_t* from,
Index begin,
Index count) {
3037 return Packet4ul(ploaduSegment<Packet4l>(
reinterpret_cast<const int64_t*
>(from), begin, count));
3040inline void pstoreuSegment<uint64_t, Packet4ul>(uint64_t* to,
const Packet4ul& from,
Index begin,
Index count) {
3041 pstoreuSegment<int64_t, Packet4l>(
reinterpret_cast<int64_t*
>(to), Packet4l(from), begin, count);
@ Aligned32
Definition Constants.h:238
@ Aligned16
Definition Constants.h:237
Namespace containing all symbols from the Eigen library.
Definition B01_Experimental.dox:1
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:82