10#ifndef EIGEN_PACKET_MATH_ZVECTOR_H
11#define EIGEN_PACKET_MATH_ZVECTOR_H
17#ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
18#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 16
21#ifndef EIGEN_HAS_SINGLE_INSTRUCTION_MADD
22#define EIGEN_HAS_SINGLE_INSTRUCTION_MADD
25#ifndef EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS
26#define EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS 32
35typedef __vector
unsigned long long Packet2ul;
39#if !defined(__ARCH__) || (defined(__ARCH__) && __ARCH__ >= 12)
59#if !defined(__ARCH__) || (defined(__ARCH__) && __ARCH__ >= 12)
67#define _EIGEN_DECLARE_CONST_FAST_Packet4i(NAME,X) \
68 Packet4i p4i_##NAME = reinterpret_cast<Packet4i>(vec_splat_s32(X))
70#define _EIGEN_DECLARE_CONST_FAST_Packet2d(NAME,X) \
71 Packet2d p2d_##NAME = reinterpret_cast<Packet2d>(vec_splat_s64(X))
73#define _EIGEN_DECLARE_CONST_FAST_Packet2l(NAME,X) \
74 Packet2l p2l_##NAME = reinterpret_cast<Packet2l>(vec_splat_s64(X))
76#define _EIGEN_DECLARE_CONST_Packet4i(NAME,X) \
77 Packet4i p4i_##NAME = pset1<Packet4i>(X)
79#define _EIGEN_DECLARE_CONST_Packet2d(NAME,X) \
80 Packet2d p2d_##NAME = pset1<Packet2d>(X)
82#define _EIGEN_DECLARE_CONST_Packet2l(NAME,X) \
83 Packet2l p2l_##NAME = pset1<Packet2l>(X)
93static Packet2d p2d_ONE = { 1.0, 1.0 };
94static Packet2d p2d_ZERO_ = { numext::bit_cast<double>0x8000000000000000ull),
95 numext::bit_cast<double>0x8000000000000000ull) };
97#if !defined(__ARCH__) || (defined(__ARCH__) && __ARCH__ >= 12)
98#define _EIGEN_DECLARE_CONST_FAST_Packet4f(NAME,X) \
99 Packet4f p4f_##NAME = reinterpret_cast<Packet4f>(vec_splat_s32(X))
101#define _EIGEN_DECLARE_CONST_Packet4f(NAME,X) \
102 Packet4f p4f_##NAME = pset1<Packet4f>(X)
104#define _EIGEN_DECLARE_CONST_Packet4f_FROM_INT(NAME,X) \
105 const Packet4f p4f_##NAME = reinterpret_cast<Packet4f>(pset1<Packet4i>(X))
109static Packet4f p4f_MZERO = { 0x80000000, 0x80000000, 0x80000000, 0x80000000};
112static Packet4i p4i_COUNTDOWN = { 0, 1, 2, 3 };
113static Packet4f p4f_COUNTDOWN = { 0.0, 1.0, 2.0, 3.0 };
116static Packet16uc p16uc_PSET64_HI = { 0,1,2,3, 4,5,6,7, 0,1,2,3, 4,5,6,7 };
117static Packet16uc p16uc_DUPLICATE32_HI = { 0,1,2,3, 0,1,2,3, 4,5,6,7, 4,5,6,7 };
120#define _EIGEN_MASK_ALIGNMENT 0xfffffffffffffff0
122#define _EIGEN_ALIGNED_PTR(x) ((std::ptrdiff_t)(x) & _EIGEN_MASK_ALIGNMENT)
127static Packet16uc p16uc_FORWARD = { 0,1,2,3, 4,5,6,7, 8,9,10,11, 12,13,14,15 };
128static Packet16uc p16uc_REVERSE32 = { 12,13,14,15, 8,9,10,11, 4,5,6,7, 0,1,2,3 };
129static Packet16uc p16uc_REVERSE64 = { 8,9,10,11, 12,13,14,15, 0,1,2,3, 4,5,6,7 };
139static Packet16uc p16uc_TRANSPOSE64_HI = { 0,1,2,3, 4,5,6,7, 16,17,18,19, 20,21,22,23};
140static Packet16uc p16uc_TRANSPOSE64_LO = { 8,9,10,11, 12,13,14,15, 24,25,26,27, 28,29,30,31};
142static Packet16uc p16uc_COMPLEX32_REV = vec_sld(p16uc_REVERSE32, p16uc_REVERSE32, 8);
144static Packet16uc p16uc_COMPLEX32_REV2 = vec_sld(p16uc_FORWARD, p16uc_FORWARD, 8);
147#if EIGEN_HAS_BUILTIN(__builtin_prefetch) || EIGEN_COMP_GNUC
148 #define EIGEN_ZVECTOR_PREFETCH(ADDR) __builtin_prefetch(ADDR);
150 #define EIGEN_ZVECTOR_PREFETCH(ADDR) asm( " pfd [%[addr]]\n" :: [addr] "r" (ADDR) : "cc" );
153template<>
struct packet_traits<
int> : default_packet_traits
172struct packet_traits<float> : default_packet_traits {
204template<>
struct packet_traits<double> : default_packet_traits
246 s <<
vt.i[0] <<
", " <<
vt.i[1] <<
", " <<
vt.i[2] <<
", " <<
vt.i[3];
254 s << vt.ui[0] <<
", " << vt.ui[1] <<
", " << vt.ui[2] <<
", " << vt.ui[3];
262 s << vt.l[0] <<
", " << vt.l[1];
270 s << vt.ul[0] <<
", " << vt.ul[1] ;
278 s << vt.d[0] <<
", " << vt.d[1];
282#if !defined(__ARCH__) || (defined(__ARCH__) && __ARCH__ >= 12)
287 s << vt.f[0] <<
", " << vt.f[1] <<
", " << vt.f[2] <<
", " << vt.f[3];
381 to[0*stride] =
ai[0];
382 to[1*stride] =
ai[1];
383 to[2*stride] =
ai[2];
384 to[3*stride] =
ai[3];
391 to[0*stride] =
af[0];
392 to[1*stride] =
af[1];
542 Packet4i t0 = vec_mergeh(kernel.packet[0], kernel.packet[2]);
543 Packet4i t1 = vec_mergel(kernel.packet[0], kernel.packet[2]);
544 Packet4i t2 = vec_mergeh(kernel.packet[1], kernel.packet[3]);
545 Packet4i t3 = vec_mergel(kernel.packet[1], kernel.packet[3]);
546 kernel.packet[0] = vec_mergeh(t0, t2);
547 kernel.packet[1] = vec_mergel(t0, t2);
548 kernel.packet[2] = vec_mergeh(t1, t3);
549 kernel.packet[3] = vec_mergel(t1, t3);
554 Packet2d t0 = vec_perm(kernel.packet[0], kernel.packet[1], p16uc_TRANSPOSE64_HI);
555 Packet2d t1 = vec_perm(kernel.packet[0], kernel.packet[1], p16uc_TRANSPOSE64_LO);
556 kernel.packet[0] = t0;
557 kernel.packet[1] = t1;
576#if !defined(__ARCH__) || (defined(__ARCH__) && __ARCH__ < 12)
625 to.v4f[1] =
to.v4f[0];
654 to[0*stride] =
ai[0];
655 to[1*stride] =
ai[1];
656 to[2*stride] =
ai[2];
657 to[3*stride] =
ai[3];
663 c.v4f[0] =
a.v4f[0] +
b.v4f[0];
664 c.v4f[1] =
a.v4f[1] +
b.v4f[1];
671 c.v4f[0] =
a.v4f[0] -
b.v4f[0];
672 c.v4f[1] =
a.v4f[1] -
b.v4f[1];
679 c.v4f[0] =
a.v4f[0] *
b.v4f[0];
680 c.v4f[1] =
a.v4f[1] *
b.v4f[1];
687 c.v4f[0] =
a.v4f[0] /
b.v4f[0];
688 c.v4f[1] =
a.v4f[1] /
b.v4f[1];
695 c.v4f[0] = -
a.v4f[0];
696 c.v4f[1] = -
a.v4f[1];
735 res.v4f[0] =
por(
a.v4f[0],
b.v4f[0]);
736 res.v4f[1] =
por(
a.v4f[1],
b.v4f[1]);
811 return static_cast<float>(
first);
840 PacketBlock<Packet2d,2> t0,t1,t2,t3;
842 t0.packet[0] = kernel.packet[0].v4f[0];
843 t0.packet[1] = kernel.packet[1].v4f[0];
846 t1.packet[0] = kernel.packet[0].v4f[1];
847 t1.packet[1] = kernel.packet[1].v4f[1];
850 t2.packet[0] = kernel.packet[2].v4f[0];
851 t2.packet[1] = kernel.packet[3].v4f[0];
854 t3.packet[0] = kernel.packet[2].v4f[1];
855 t3.packet[1] = kernel.packet[3].v4f[1];
864 kernel.packet[0].v4f[0] = t0.packet[0];
865 kernel.packet[0].v4f[1] = t2.packet[0];
866 kernel.packet[1].v4f[0] = t0.packet[1];
867 kernel.packet[1].v4f[1] = t2.packet[1];
868 kernel.packet[2].v4f[0] = t1.packet[0];
869 kernel.packet[2].v4f[1] = t3.packet[0];
870 kernel.packet[3].v4f[0] = t1.packet[1];
871 kernel.packet[3].v4f[1] = t3.packet[1];
930 return vec_splats(from);
938 a0 = vec_splat(a3, 0);
939 a1 = vec_splat(a3, 1);
940 a2 = vec_splat(a3, 2);
941 a3 = vec_splat(a3, 3);
947 af[0] = from[0*stride];
948 af[1] = from[1*stride];
949 af[2] = from[2*stride];
950 af[3] = from[3*stride];
958 to[0*stride] = af[0];
959 to[1*stride] = af[1];
960 to[2*stride] = af[2];
961 to[3*stride] = af[3];
986 return vec_perm(
p,
p, p16uc_DUPLICATE32_HI);
997 b = vec_sld(
a,
a, 8);
999 b = vec_sld(sum, sum, 4);
1033 Packet4f t0 = vec_mergeh(kernel.packet[0], kernel.packet[2]);
1034 Packet4f t1 = vec_mergel(kernel.packet[0], kernel.packet[2]);
1035 Packet4f t2 = vec_mergeh(kernel.packet[1], kernel.packet[3]);
1036 Packet4f t3 = vec_mergel(kernel.packet[1], kernel.packet[3]);
1037 kernel.packet[0] = vec_mergeh(t0, t2);
1038 kernel.packet[1] = vec_mergel(t0, t2);
1039 kernel.packet[2] = vec_mergeh(t1, t3);
1040 kernel.packet[3] = vec_mergel(t1, t3);
1044 Packet4ui select = { ifPacket.select[0], ifPacket.select[1], ifPacket.select[2], ifPacket.select[3] };
1046 return vec_sel(elsePacket, thenPacket, mask);
#define _EIGEN_DECLARE_CONST_FAST_Packet4f(NAME, X)
Definition PacketMath.h:42
#define _EIGEN_DECLARE_CONST_FAST_Packet4i(NAME, X)
Definition PacketMath.h:45
ArrayXXi a
Definition Array_initializer_list_23_cxx11.cpp:1
Array< int, Dynamic, 1 > v
Definition Array_initializer_list_vector_cxx11.cpp:1
int i
Definition BiCGSTAB_step_by_step.cpp:9
#define EIGEN_DEBUG_ALIGNED_STORE
Definition GenericPacketMath.h:35
#define EIGEN_DEBUG_ALIGNED_LOAD
Definition GenericPacketMath.h:27
#define EIGEN_DEVICE_FUNC
Definition Macros.h:976
#define EIGEN_STRONG_INLINE
Definition Macros.h:917
cout<< "Here is the matrix m:"<< endl<< m<< endl;Matrix< ptrdiff_t, 3, 1 > res
Definition PartialRedux_count.cpp:3
float * p
Definition Tutorial_Map_using.cpp:9
#define _EIGEN_DECLARE_CONST_FAST_Packet2l(NAME, X)
Definition PacketMath.h:73
#define _EIGEN_DECLARE_CONST_FAST_Packet2d(NAME, X)
Definition PacketMath.h:70
#define EIGEN_ZVECTOR_PREFETCH(ADDR)
Definition PacketMath.h:150
Scalar Scalar * c
Definition benchVecAdd.cpp:17
Scalar * b
Definition benchVecAdd.cpp:17
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition gnuplot_common_settings.hh:12
@ Aligned16
Definition Constants.h:235
RealScalar s
Definition level1_cplx_impl.h:126
EIGEN_STRONG_INLINE Packet4f pandnot< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:914
v2f64 Packet2d
Definition PacketMath.h:820
EIGEN_STRONG_INLINE void pstoreu< double >(double *to, const Packet4d &from)
Definition PacketMath.h:627
EIGEN_STRONG_INLINE Packet4f vec_splat_packet4f(const Packet4f &from)
Definition PacketMath.h:579
EIGEN_STRONG_INLINE double predux< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1082
EIGEN_STRONG_INLINE Packet2cf pconj(const Packet2cf &a)
Definition Complex.h:167
v2i64 Packet2l
Definition PacketMath.h:821
EIGEN_STRONG_INLINE Packet4f pmin< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:832
EIGEN_STRONG_INLINE Packet2d padd< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:880
EIGEN_STRONG_INLINE Packet2d pandnot< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:960
__vector int Packet4i
Definition PacketMath.h:31
EIGEN_STRONG_INLINE Packet4i pabs< Packet4i >(const Packet4i &a)
Definition PacketMath.h:476
EIGEN_STRONG_INLINE Packet4f pcmp_eq< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:1400
EIGEN_STRONG_INLINE Packet4f padd< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:774
EIGEN_STRONG_INLINE Packet4i por< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:901
__vector unsigned char Packet16uc
Definition PacketMath.h:37
EIGEN_STRONG_INLINE Packet4i pset1< Packet4i >(const int &from)
Definition PacketMath.h:551
EIGEN_STRONG_INLINE Packet4f pabs< Packet4f >(const Packet4f &a)
Definition PacketMath.h:798
EIGEN_STRONG_INLINE float pfirst< Packet4f >(const Packet4f &a)
Definition PacketMath.h:1120
EIGEN_STRONG_INLINE Packet2d pand< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:939
EIGEN_STRONG_INLINE void ptranspose(PacketBlock< Packet2cf, 2 > &kernel)
Definition Complex.h:224
EIGEN_STRONG_INLINE Packet4i ploaddup< Packet4i >(const int *from)
Definition PacketMath.h:1008
EIGEN_STRONG_INLINE float predux_max< Packet4f >(const Packet4f &a)
Definition PacketMath.h:1693
EIGEN_STRONG_INLINE Packet2d ploaddup< Packet2d >(const double *from)
Definition PacketMath.h:1011
EIGEN_STRONG_INLINE Packet2d pxor< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:953
EIGEN_STRONG_INLINE Packet2d por< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:946
EIGEN_DEVICE_FUNC void pscatter< int, Packet4i >(int *to, const Packet4i &from, Index stride)
Definition PacketMath.h:700
EIGEN_STRONG_INLINE Packet4f ploaddup< Packet4f >(const float *from)
Definition PacketMath.h:1004
EIGEN_STRONG_INLINE Packet4f por< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:900
EIGEN_STRONG_INLINE int predux_min< Packet4i >(const Packet4i &a)
Definition PacketMath.h:1618
EIGEN_STRONG_INLINE Packet4i pxor< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:909
EIGEN_STRONG_INLINE double predux_max< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1116
EIGEN_STRONG_INLINE Packet4f pmul< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:795
EIGEN_DEVICE_FUNC Packet pmax(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:524
EIGEN_STRONG_INLINE Packet4i pblend(const Selector< 4 > &ifPacket, const Packet4i &thenPacket, const Packet4i &elsePacket)
Definition PacketMath.h:2107
EIGEN_DEVICE_FUNC Packet4f pgather< float, Packet4f >(const float *from, Index stride)
Definition PacketMath.h:613
EIGEN_STRONG_INLINE Packet4f pcmp_le(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:867
EIGEN_STRONG_INLINE Packet2d pset1< Packet2d >(const double &from)
Definition PacketMath.h:872
EIGEN_STRONG_INLINE Packet4f pload< Packet4f >(const float *from)
Definition PacketMath.h:443
EIGEN_STRONG_INLINE int predux_mul< Packet4i >(const Packet4i &a)
Definition PacketMath.h:1540
EIGEN_STRONG_INLINE void pstore< int >(int *to, const Packet4i &from)
Definition PacketMath.h:496
EIGEN_STRONG_INLINE Packet8h por(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1042
__vector unsigned int Packet4ui
Definition PacketMath.h:32
EIGEN_STRONG_INLINE Packet2cf preverse(const Packet2cf &a)
Definition Complex.h:184
__vector __bool int Packet4bi
Definition PacketMath.h:33
EIGEN_STRONG_INLINE void pstore< double >(double *to, const Packet4d &from)
Definition PacketMath.h:623
EIGEN_STRONG_INLINE Packet4f pcmp_le< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:1278
EIGEN_STRONG_INLINE Packet4i padd< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:775
EIGEN_DEVICE_FUNC unpacket_traits< Packet >::type predux_mul(const Packet &a)
Definition GenericPacketMath.h:882
EIGEN_STRONG_INLINE Packet4f pfloor< Packet4f >(const Packet4f &a)
Definition PacketMath.h:939
EIGEN_STRONG_INLINE Packet4f pmadd(const Packet4f &a, const Packet4f &b, const Packet4f &c)
Definition PacketMath.h:827
EIGEN_STRONG_INLINE Packet4i pandnot< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:915
EIGEN_DEVICE_FUNC Packet pmul(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:237
EIGEN_DEVICE_FUNC Packet pmin(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:512
EIGEN_STRONG_INLINE Packet4f pdiv< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:803
EIGEN_STRONG_INLINE Packet8h pandnot(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1053
EIGEN_STRONG_INLINE Packet2d pload< Packet2d >(const double *from)
Definition PacketMath.h:967
EIGEN_STRONG_INLINE Packet2d pmul< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:916
EIGEN_STRONG_INLINE Packet2cf pnegate(const Packet2cf &a)
Definition Complex.h:166
EIGEN_STRONG_INLINE float predux_mul< Packet4f >(const Packet4f &a)
Definition PacketMath.h:1533
EIGEN_STRONG_INLINE Packet4f pcmp_lt(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:868
EIGEN_STRONG_INLINE void prefetch< float >(const float *addr)
Definition PacketMath.h:1117
EIGEN_DEVICE_FUNC void pscatter< double, Packet2d >(double *to, const Packet2d &from, Index stride)
Definition PacketMath.h:1044
EIGEN_STRONG_INLINE Packet4i ploadu< Packet4i >(const int *from)
Definition PacketMath.h:972
EIGEN_STRONG_INLINE double predux_mul< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1092
EIGEN_STRONG_INLINE Packet2d pdiv< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:923
EIGEN_STRONG_INLINE double predux_min< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1101
EIGEN_STRONG_INLINE Packet4f pset1< Packet4f >(const float &from)
Definition PacketMath.h:547
EIGEN_STRONG_INLINE Packet4i psub< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:783
EIGEN_DEVICE_FUNC void pscatter< float, Packet4f >(float *to, const Packet4f &from, Index stride)
Definition PacketMath.h:695
EIGEN_STRONG_INLINE Packet2d plset< Packet2d >(const double &a)
Definition PacketMath.h:887
EIGEN_STRONG_INLINE Packet4f pcmp_lt< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:1339
EIGEN_STRONG_INLINE Packet4f pceil< Packet4f >(const Packet4f &a)
Definition PacketMath.h:938
EIGEN_STRONG_INLINE void pstore< float >(float *to, const Packet4f &from)
Definition PacketMath.h:491
EIGEN_STRONG_INLINE Packet4f pabs(const Packet4f &a)
Definition PacketMath.h:1176
std::ostream & operator<<(std::ostream &s, const Packet16c &v)
Definition PacketMath.h:371
EIGEN_STRONG_INLINE bfloat16 pfirst(const Packet8bf &a)
Definition PacketMath.h:1429
EIGEN_STRONG_INLINE void pbroadcast4< Packet2d >(const double *a, Packet2d &a0, Packet2d &a1, Packet2d &a2, Packet2d &a3)
Definition PacketMath.h:960
__m256i Packet8i
Definition PacketMath.h:32
EIGEN_CONSTEXPR Index first(const T &x) EIGEN_NOEXCEPT
Definition IndexedViewHelper.h:81
EIGEN_DEVICE_FUNC void pstore(Scalar *to, const Packet &from)
Definition GenericPacketMath.h:696
EIGEN_STRONG_INLINE Packet2d ploadu< Packet2d >(const double *from)
Definition PacketMath.h:1004
EIGEN_STRONG_INLINE Packet4f pxor< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:908
EIGEN_STRONG_INLINE Packet4i pmin< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:843
EIGEN_STRONG_INLINE Packet2d pabs< Packet2d >(const Packet2d &a)
Definition PacketMath.h:477
EIGEN_STRONG_INLINE Packet2cf pcmp_eq(const Packet2cf &a, const Packet2cf &b)
Definition Complex.h:231
EIGEN_STRONG_INLINE void pstoreu< int >(int *to, const Packet4i &from)
Definition PacketMath.h:1092
EIGEN_STRONG_INLINE Packet8h pand(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1050
EIGEN_STRONG_INLINE Packet8h pxor(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1047
EIGEN_STRONG_INLINE int pfirst< Packet4i >(const Packet4i &a)
Definition PacketMath.h:1121
EIGEN_STRONG_INLINE Packet4i plset< Packet4i >(const int &a)
Definition PacketMath.h:768
EIGEN_STRONG_INLINE float predux< Packet4f >(const Packet4f &a)
Definition PacketMath.h:1444
EIGEN_STRONG_INLINE Packet2d pceil< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1182
EIGEN_STRONG_INLINE Packet4f ploadu< Packet4f >(const float *from)
Definition PacketMath.h:968
EIGEN_STRONG_INLINE Packet4i pmul< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:796
EIGEN_STRONG_INLINE Packet4i pand< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:892
EIGEN_STRONG_INLINE Packet2d pmin< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:974
EIGEN_STRONG_INLINE int predux< Packet4i >(const Packet4i &a)
Definition PacketMath.h:1454
EIGEN_STRONG_INLINE Packet4f pand< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:891
EIGEN_DEVICE_FUNC Packet4i pgather< int, Packet4i >(const int *from, Index stride)
Definition PacketMath.h:618
EIGEN_STRONG_INLINE int predux_max< Packet4i >(const Packet4i &a)
Definition PacketMath.h:1698
EIGEN_DEVICE_FUNC Packet2d pgather< double, Packet2d >(const double *from, Index stride)
Definition PacketMath.h:1033
EIGEN_STRONG_INLINE Packet4i pmax< Packet4i >(const Packet4i &a, const Packet4i &b)
Definition PacketMath.h:861
EIGEN_STRONG_INLINE Packet4i pdiv< Packet4i >(const Packet4i &, const Packet4i &)
Definition PacketMath.h:821
EIGEN_STRONG_INLINE void pbroadcast4< Packet4f >(const float *a, Packet4f &a0, Packet4f &a1, Packet4f &a2, Packet4f &a3)
Definition PacketMath.h:591
EIGEN_STRONG_INLINE Packet4i pload< Packet4i >(const int *from)
Definition PacketMath.h:448
__vector float Packet4f
Definition PacketMath.h:30
EIGEN_STRONG_INLINE Packet2d psub< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:895
EIGEN_STRONG_INLINE Packet4f psub< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:782
EIGEN_STRONG_INLINE Packet4f plset< Packet4f >(const float &a)
Definition PacketMath.h:767
EIGEN_STRONG_INLINE void pstoreu< float >(float *to, const Packet4f &from)
Definition PacketMath.h:1088
EIGEN_STRONG_INLINE Packet2d pmax< Packet2d >(const Packet2d &a, const Packet2d &b)
Definition PacketMath.h:989
EIGEN_STRONG_INLINE Packet4f pround< Packet4f >(const Packet4f &a)
Definition PacketMath.h:921
EIGEN_STRONG_INLINE Packet2d pround< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1202
EIGEN_STRONG_INLINE void prefetch< int >(const int *addr)
Definition PacketMath.h:1118
EIGEN_STRONG_INLINE double pfirst< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1061
v2u64 Packet2ul
Definition PacketMath.h:822
EIGEN_STRONG_INLINE Packet2d pfloor< Packet2d >(const Packet2d &a)
Definition PacketMath.h:1163
EIGEN_STRONG_INLINE void pbroadcast4< Packet4i >(const int *a, Packet4i &a0, Packet4i &a1, Packet4i &a2, Packet4i &a3)
Definition PacketMath.h:597
EIGEN_STRONG_INLINE float predux_min< Packet4f >(const Packet4f &a)
Definition PacketMath.h:1613
EIGEN_STRONG_INLINE void prefetch< double >(const double *addr)
Definition PacketMath.h:692
EIGEN_STRONG_INLINE Packet4f pmax< Packet4f >(const Packet4f &a, const Packet4f &b)
Definition PacketMath.h:850
::uint64_t uint64_t
Definition Meta.h:58
::uint32_t uint32_t
Definition Meta.h:56
::int32_t int32_t
Definition Meta.h:57
::int64_t int64_t
Definition Meta.h:59
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:74
const Product< Lhs, Rhs > prod(const Lhs &lhs, const Rhs &rhs)
Definition evaluators.cpp:8
Definition BandTriangularSolver.h:13
@ HasRsqrt
Definition GenericPacketMath.h:67
@ HasSin
Definition GenericPacketMath.h:75
@ HasBlend
Definition GenericPacketMath.h:60
@ HasCos
Definition GenericPacketMath.h:76
@ HasCeil
Definition GenericPacketMath.h:101
@ HasExp
Definition GenericPacketMath.h:68
@ HasRound
Definition GenericPacketMath.h:98
@ HasSqrt
Definition GenericPacketMath.h:66
@ HasErf
Definition GenericPacketMath.h:88
@ HasLog
Definition GenericPacketMath.h:70
@ HasTanh
Definition GenericPacketMath.h:83
@ HasFloor
Definition GenericPacketMath.h:100
@ HasDiv
Definition GenericPacketMath.h:65
Packet2d half
Definition PacketMath.h:207
Packet2d type
Definition PacketMath.h:206
Packet4f type
Definition PacketMath.h:173
Packet4f half
Definition PacketMath.h:174
Packet4i type
Definition PacketMath.h:155
Packet4i half
Definition PacketMath.h:156
@ HasSub
Definition GenericPacketMath.h:118
@ HasMax
Definition GenericPacketMath.h:124
@ HasNegate
Definition GenericPacketMath.h:120
@ HasMul
Definition GenericPacketMath.h:119
@ HasAdd
Definition GenericPacketMath.h:117
@ HasMin
Definition GenericPacketMath.h:123
@ HasAbs
Definition GenericPacketMath.h:121
@ HasHalfPacket
Definition GenericPacketMath.h:114
@ size
Definition GenericPacketMath.h:112
@ AlignedOnScalar
Definition GenericPacketMath.h:113
@ Vectorizable
Definition GenericPacketMath.h:111
Definition ForwardDeclarations.h:17
Packet2d half
Definition PacketMath.h:237
Packet4f half
Definition PacketMath.h:236
Packet4i half
Definition PacketMath.h:235
Definition GenericPacketMath.h:133
T type
Definition GenericPacketMath.h:134
@ masked_load_available
Definition GenericPacketMath.h:141
@ size
Definition GenericPacketMath.h:138
@ masked_store_available
Definition GenericPacketMath.h:142
@ vectorizable
Definition GenericPacketMath.h:140
@ alignment
Definition GenericPacketMath.h:139
Definition PacketMath.h:47
Packet4f v4f
Definition PacketMath.h:60
Packet2ul v2ul
Definition PacketMath.h:57
Packet4i v4i
Definition PacketMath.h:54
Packet4ui v4ui
Definition PacketMath.h:55
Packet2l v2l
Definition PacketMath.h:56
Packet2d v2d
Definition PacketMath.h:58