TR-mbed 1.0
Loading...
Searching...
No Matches
Complex.h
Go to the documentation of this file.
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2018 Gael Guennebaud <gael.guennebaud@inria.fr>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#ifndef EIGEN_COMPLEX_AVX512_H
11#define EIGEN_COMPLEX_AVX512_H
12
13namespace Eigen {
14
15namespace internal {
16
17//---------- float ----------
24
25template<> struct packet_traits<std::complex<float> > : default_packet_traits
26{
27 typedef Packet8cf type;
28 typedef Packet4cf half;
29 enum {
30 Vectorizable = 1,
32 size = 8,
33 HasHalfPacket = 1,
34
35 HasAdd = 1,
36 HasSub = 1,
37 HasMul = 1,
38 HasDiv = 1,
39 HasNegate = 1,
40 HasSqrt = 1,
41 HasAbs = 0,
42 HasAbs2 = 0,
43 HasMin = 0,
44 HasMax = 0,
45 HasSetLinear = 0
46 };
47};
48
49template<> struct unpacket_traits<Packet8cf> {
50 typedef std::complex<float> type;
51 typedef Packet4cf half;
53 enum {
54 size = 8,
59 };
60};
61
66{
67 return Packet8cf(pnegate(a.v));
68}
70{
72 0x00000000,0x80000000,0x00000000,0x80000000,0x00000000,0x80000000,0x00000000,0x80000000,
73 0x00000000,0x80000000,0x00000000,0x80000000,0x00000000,0x80000000,0x00000000,0x80000000));
74 return Packet8cf(pxor(a.v,mask));
75}
76
82
83template<> EIGEN_STRONG_INLINE Packet8cf pand <Packet8cf>(const Packet8cf& a, const Packet8cf& b) { return Packet8cf(pand(a.v,b.v)); }
84template<> EIGEN_STRONG_INLINE Packet8cf por <Packet8cf>(const Packet8cf& a, const Packet8cf& b) { return Packet8cf(por(a.v,b.v)); }
85template<> EIGEN_STRONG_INLINE Packet8cf pxor <Packet8cf>(const Packet8cf& a, const Packet8cf& b) { return Packet8cf(pxor(a.v,b.v)); }
87
88template <>
93
96
97
98template<> EIGEN_STRONG_INLINE Packet8cf pset1<Packet8cf>(const std::complex<float>& from)
99{
100 return Packet8cf(_mm512_castpd_ps(pload1<Packet8d>((const double*)(const void*)&from)));
101}
102
103template<> EIGEN_STRONG_INLINE Packet8cf ploaddup<Packet8cf>(const std::complex<float>* from)
104{
105 return Packet8cf( _mm512_castpd_ps( ploaddup<Packet8d>((const double*)(const void*)from )) );
106}
107template<> EIGEN_STRONG_INLINE Packet8cf ploadquad<Packet8cf>(const std::complex<float>* from)
108{
109 return Packet8cf( _mm512_castpd_ps( ploadquad<Packet8d>((const double*)(const void*)from )) );
110}
111
114
115template<> EIGEN_DEVICE_FUNC inline Packet8cf pgather<std::complex<float>, Packet8cf>(const std::complex<float>* from, Index stride)
116{
117 return Packet8cf(_mm512_castpd_ps(pgather<double,Packet8d>((const double*)(const void*)from, stride)));
118}
119
120template<> EIGEN_DEVICE_FUNC inline void pscatter<std::complex<float>, Packet8cf>(std::complex<float>* to, const Packet8cf& from, Index stride)
121{
122 pscatter((double*)(void*)to, _mm512_castps_pd(from.v), stride);
123}
124
125template<> EIGEN_STRONG_INLINE std::complex<float> pfirst<Packet8cf>(const Packet8cf& a)
126{
128}
129
132 _mm512_permutexvar_epi64( _mm512_set_epi32(0, 0, 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7),
134}
135
136template<> EIGEN_STRONG_INLINE std::complex<float> predux<Packet8cf>(const Packet8cf& a)
137{
140}
141
142template<> EIGEN_STRONG_INLINE std::complex<float> predux_mul<Packet8cf>(const Packet8cf& a)
143{
146}
147
148template <>
155
157
166
168{
169 return Packet8cf(_mm512_shuffle_ps(x.v, x.v, _MM_SHUFFLE(2, 3, 0 ,1)));
170}
171
172//---------- double ----------
179
180template<> struct packet_traits<std::complex<double> > : default_packet_traits
181{
184 enum {
185 Vectorizable = 1,
186 AlignedOnScalar = 0,
187 size = 4,
188 HasHalfPacket = 1,
189
190 HasAdd = 1,
191 HasSub = 1,
192 HasMul = 1,
193 HasDiv = 1,
194 HasNegate = 1,
195 HasSqrt = 1,
196 HasAbs = 0,
197 HasAbs2 = 0,
198 HasMin = 0,
199 HasMax = 0,
200 HasSetLinear = 0
201 };
202};
203
204template<> struct unpacket_traits<Packet4cd> {
205 typedef std::complex<double> type;
208 enum {
209 size = 4,
214 };
215};
216
221{
222 const __m512d mask = _mm512_castsi512_pd(
223 _mm512_set_epi32(0x80000000,0x0,0x0,0x0,0x80000000,0x0,0x0,0x0,
224 0x80000000,0x0,0x0,0x0,0x80000000,0x0,0x0,0x0));
225 return Packet4cd(pxor(a.v,mask));
226}
227
229{
230 __m512d tmp1 = _mm512_shuffle_pd(a.v,a.v,0x0);
231 __m512d tmp2 = _mm512_shuffle_pd(a.v,a.v,0xFF);
232 __m512d tmp3 = _mm512_shuffle_pd(b.v,b.v,0x55);
233 __m512d odd = _mm512_mul_pd(tmp2, tmp3);
234 return Packet4cd(_mm512_fmaddsub_pd(tmp1, b.v, odd));
235}
236
239template<> EIGEN_STRONG_INLINE Packet4cd por <Packet4cd>(const Packet4cd& a, const Packet4cd& b) { return Packet4cd(por(a.v,b.v)); }
242
243template <>
248
249template<> EIGEN_STRONG_INLINE Packet4cd pload <Packet4cd>(const std::complex<double>* from)
250{ EIGEN_DEBUG_ALIGNED_LOAD return Packet4cd(pload<Packet8d>((const double*)from)); }
251template<> EIGEN_STRONG_INLINE Packet4cd ploadu<Packet4cd>(const std::complex<double>* from)
253
254template<> EIGEN_STRONG_INLINE Packet4cd pset1<Packet4cd>(const std::complex<double>& from)
255{
256 #ifdef EIGEN_VECTORIZE_AVX512DQ
258 #else
260 #endif
261}
262
267
268template<> EIGEN_STRONG_INLINE void pstore <std::complex<double> >(std::complex<double> * to, const Packet4cd& from) { EIGEN_DEBUG_ALIGNED_STORE pstore((double*)to, from.v); }
269template<> EIGEN_STRONG_INLINE void pstoreu<std::complex<double> >(std::complex<double> * to, const Packet4cd& from) { EIGEN_DEBUG_UNALIGNED_STORE pstoreu((double*)to, from.v); }
270
277
287
288template<> EIGEN_STRONG_INLINE std::complex<double> pfirst<Packet4cd>(const Packet4cd& a)
289{
290 __m128d low = extract128<0>(a.v);
291 EIGEN_ALIGN16 double res[2];
292 _mm_store_pd(res, low);
293 return std::complex<double>(res[0],res[1]);
294}
295
299
300template<> EIGEN_STRONG_INLINE std::complex<double> predux<Packet4cd>(const Packet4cd& a)
301{
304}
305
306template<> EIGEN_STRONG_INLINE std::complex<double> predux_mul<Packet4cd>(const Packet4cd& a)
307{
310}
311
313{
315 { return padd(pmul(x,y),c); }
316
318 {
319 return internal::pmul(a, pconj(b));
320 }
321};
322
324{
326 { return padd(pmul(x,y),c); }
327
329 {
330 return internal::pmul(pconj(a), b);
331 }
332};
333
335{
337 { return padd(pmul(x,y),c); }
338
340 {
341 return pconj(internal::pmul(a, b));
342 }
343};
344
346
354
359
360EIGEN_DEVICE_FUNC inline void
363
364 pb.packet[0] = _mm512_castps_pd(kernel.packet[0].v);
365 pb.packet[1] = _mm512_castps_pd(kernel.packet[1].v);
366 pb.packet[2] = _mm512_castps_pd(kernel.packet[2].v);
367 pb.packet[3] = _mm512_castps_pd(kernel.packet[3].v);
368 ptranspose(pb);
369 kernel.packet[0].v = _mm512_castpd_ps(pb.packet[0]);
370 kernel.packet[1].v = _mm512_castpd_ps(pb.packet[1]);
371 kernel.packet[2].v = _mm512_castpd_ps(pb.packet[2]);
372 kernel.packet[3].v = _mm512_castpd_ps(pb.packet[3]);
373}
374
375EIGEN_DEVICE_FUNC inline void
378
379 pb.packet[0] = _mm512_castps_pd(kernel.packet[0].v);
380 pb.packet[1] = _mm512_castps_pd(kernel.packet[1].v);
381 pb.packet[2] = _mm512_castps_pd(kernel.packet[2].v);
382 pb.packet[3] = _mm512_castps_pd(kernel.packet[3].v);
383 pb.packet[4] = _mm512_castps_pd(kernel.packet[4].v);
384 pb.packet[5] = _mm512_castps_pd(kernel.packet[5].v);
385 pb.packet[6] = _mm512_castps_pd(kernel.packet[6].v);
386 pb.packet[7] = _mm512_castps_pd(kernel.packet[7].v);
387 ptranspose(pb);
388 kernel.packet[0].v = _mm512_castpd_ps(pb.packet[0]);
389 kernel.packet[1].v = _mm512_castpd_ps(pb.packet[1]);
390 kernel.packet[2].v = _mm512_castpd_ps(pb.packet[2]);
391 kernel.packet[3].v = _mm512_castpd_ps(pb.packet[3]);
392 kernel.packet[4].v = _mm512_castpd_ps(pb.packet[4]);
393 kernel.packet[5].v = _mm512_castpd_ps(pb.packet[5]);
394 kernel.packet[6].v = _mm512_castpd_ps(pb.packet[6]);
395 kernel.packet[7].v = _mm512_castpd_ps(pb.packet[7]);
396}
397
398EIGEN_DEVICE_FUNC inline void
400 __m512d T0 = _mm512_shuffle_f64x2(kernel.packet[0].v, kernel.packet[1].v, (shuffle_mask<0,1,0,1>::mask)); // [a0 a1 b0 b1]
401 __m512d T1 = _mm512_shuffle_f64x2(kernel.packet[0].v, kernel.packet[1].v, (shuffle_mask<2,3,2,3>::mask)); // [a2 a3 b2 b3]
402 __m512d T2 = _mm512_shuffle_f64x2(kernel.packet[2].v, kernel.packet[3].v, (shuffle_mask<0,1,0,1>::mask)); // [c0 c1 d0 d1]
403 __m512d T3 = _mm512_shuffle_f64x2(kernel.packet[2].v, kernel.packet[3].v, (shuffle_mask<2,3,2,3>::mask)); // [c2 c3 d2 d3]
404
405 kernel.packet[3] = Packet4cd(_mm512_shuffle_f64x2(T1, T3, (shuffle_mask<1,3,1,3>::mask))); // [a3 b3 c3 d3]
406 kernel.packet[2] = Packet4cd(_mm512_shuffle_f64x2(T1, T3, (shuffle_mask<0,2,0,2>::mask))); // [a2 b2 c2 d2]
407 kernel.packet[1] = Packet4cd(_mm512_shuffle_f64x2(T0, T2, (shuffle_mask<1,3,1,3>::mask))); // [a1 b1 c1 d1]
408 kernel.packet[0] = Packet4cd(_mm512_shuffle_f64x2(T0, T2, (shuffle_mask<0,2,0,2>::mask))); // [a0 b0 c0 d0]
409}
410
414
418
419} // end namespace internal
420} // end namespace Eigen
421
422#endif // EIGEN_COMPLEX_AVX512_H
ArrayXXi a
Definition Array_initializer_list_23_cxx11.cpp:1
Array< int, Dynamic, 1 > v
Definition Array_initializer_list_vector_cxx11.cpp:1
#define EIGEN_ALIGN16
Definition ConfigureVectorization.h:153
#define EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(PACKET_CPLX, PACKET_REAL)
Definition ConjHelper.h:14
#define EIGEN_DEBUG_ALIGNED_STORE
Definition GenericPacketMath.h:35
#define EIGEN_DEBUG_ALIGNED_LOAD
Definition GenericPacketMath.h:27
#define EIGEN_DEBUG_UNALIGNED_STORE
Definition GenericPacketMath.h:39
#define EIGEN_DEBUG_UNALIGNED_LOAD
Definition GenericPacketMath.h:31
#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
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
EIGEN_STRONG_INLINE Packet8cf ploaddup< Packet8cf >(const std::complex< float > *from)
Definition Complex.h:103
EIGEN_STRONG_INLINE std::complex< float > pfirst< Packet8cf >(const Packet8cf &a)
Definition Complex.h:125
EIGEN_STRONG_INLINE Packet2cf pconj(const Packet2cf &a)
Definition Complex.h:167
EIGEN_STRONG_INLINE Packet8cf psqrt< Packet8cf >(const Packet8cf &a)
Definition Complex.h:415
EIGEN_STRONG_INLINE std::complex< float > predux_mul< Packet8cf >(const Packet8cf &a)
Definition Complex.h:142
EIGEN_DEVICE_FUNC Packet padd(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:215
EIGEN_STRONG_INLINE Packet8cf por< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:84
EIGEN_STRONG_INLINE Packet8cf pand< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:83
EIGEN_DEVICE_FUNC unpacket_traits< Packet >::type predux(const Packet &a)
Definition GenericPacketMath.h:875
EIGEN_STRONG_INLINE std::complex< double > pfirst< Packet4cd >(const Packet4cd &a)
Definition Complex.h:288
EIGEN_STRONG_INLINE Packet8cf ploadquad< Packet8cf >(const std::complex< float > *from)
Definition Complex.h:107
EIGEN_STRONG_INLINE Packet4cd pcplxflip< Packet4cd >(const Packet4cd &x)
Definition Complex.h:355
EIGEN_STRONG_INLINE Packet8cf pmul< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:77
EIGEN_STRONG_INLINE void ptranspose(PacketBlock< Packet2cf, 2 > &kernel)
Definition Complex.h:224
EIGEN_STRONG_INLINE Packet4cd pandnot< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:241
__m512d Packet8d
Definition PacketMath.h:33
const Scalar & y
Definition MathFunctions.h:821
EIGEN_STRONG_INLINE Packet4cd pset1< Packet4cd >(const std::complex< double > &from)
Definition Complex.h:254
EIGEN_DEVICE_FUNC Packet pdiv(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:244
EIGEN_STRONG_INLINE Packet4cd por< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:239
EIGEN_STRONG_INLINE std::complex< double > predux_mul< Packet4cd >(const Packet4cd &a)
Definition Complex.h:306
EIGEN_STRONG_INLINE Packet8cf pandnot< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:86
EIGEN_STRONG_INLINE Packet8h por(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1042
EIGEN_STRONG_INLINE Packet2cf preverse(const Packet2cf &a)
Definition Complex.h:184
EIGEN_STRONG_INLINE Packet4cd pand< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:238
EIGEN_DEVICE_FUNC unpacket_traits< Packet >::type predux_mul(const Packet &a)
Definition GenericPacketMath.h:882
EIGEN_DEVICE_FUNC Packet pmul(const Packet &a, const Packet &b)
Definition GenericPacketMath.h:237
EIGEN_STRONG_INLINE Packet8h ptrue(const Packet8h &a)
Definition PacketMath.h:978
EIGEN_STRONG_INLINE Packet8h pandnot(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1053
EIGEN_STRONG_INLINE Packet2cf pnegate(const Packet2cf &a)
Definition Complex.h:166
EIGEN_STRONG_INLINE Packet4cd ptrue< Packet4cd >(const Packet4cd &a)
Definition Complex.h:237
EIGEN_STRONG_INLINE Packet4cd padd< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:217
EIGEN_DEVICE_FUNC void pscatter(Scalar *to, const Packet &from, Index)
Definition GenericPacketMath.h:715
EIGEN_STRONG_INLINE Packet8cf pxor< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:85
EIGEN_STRONG_INLINE Packet4cd ploadu< Packet4cd >(const std::complex< double > *from)
Definition Complex.h:251
EIGEN_STRONG_INLINE Packet8cf pcplxflip< Packet8cf >(const Packet8cf &x)
Definition Complex.h:167
EIGEN_STRONG_INLINE Packet4cf predux_half_dowto4< Packet8cf >(const Packet8cf &a)
Definition Complex.h:149
EIGEN_STRONG_INLINE Packet8cf ptrue< Packet8cf >(const Packet8cf &a)
Definition Complex.h:62
EIGEN_STRONG_INLINE std::complex< double > predux< Packet4cd >(const Packet4cd &a)
Definition Complex.h:300
EIGEN_STRONG_INLINE bfloat16 pfirst(const Packet8bf &a)
Definition PacketMath.h:1429
EIGEN_STRONG_INLINE Packet8cf pload< Packet8cf >(const std::complex< float > *from)
Definition Complex.h:94
EIGEN_STRONG_INLINE Packet8cf psub< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:64
EIGEN_STRONG_INLINE Packet4cd pload< Packet4cd >(const std::complex< double > *from)
Definition Complex.h:249
EIGEN_DEVICE_FUNC void pstore(Scalar *to, const Packet &from)
Definition GenericPacketMath.h:696
EIGEN_STRONG_INLINE Packet2cf pcmp_eq(const Packet2cf &a, const Packet2cf &b)
Definition Complex.h:231
EIGEN_DEVICE_FUNC void pstoreu(Scalar *to, const Packet &from)
Definition GenericPacketMath.h:700
EIGEN_STRONG_INLINE Packet8h pand(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1050
EIGEN_STRONG_INLINE Packet4cd pxor< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:240
EIGEN_STRONG_INLINE Packet8h pxor(const Packet8h &a, const Packet8h &b)
Definition PacketMath.h:1047
EIGEN_STRONG_INLINE Packet8cf ploadu< Packet8cf >(const std::complex< float > *from)
Definition Complex.h:95
EIGEN_STRONG_INLINE Packet8cf pset1< Packet8cf >(const std::complex< float > &from)
Definition Complex.h:98
EIGEN_STRONG_INLINE Packet4cd psub< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:218
EIGEN_STRONG_INLINE std::complex< float > predux< Packet8cf >(const Packet8cf &a)
Definition Complex.h:136
EIGEN_STRONG_INLINE Packet8cf padd< Packet8cf >(const Packet8cf &a, const Packet8cf &b)
Definition Complex.h:63
EIGEN_STRONG_INLINE Packet4cd pmul< Packet4cd >(const Packet4cd &a, const Packet4cd &b)
Definition Complex.h:228
EIGEN_STRONG_INLINE Packet4cd psqrt< Packet4cd >(const Packet4cd &a)
Definition Complex.h:411
__m512 Packet16f
Definition PacketMath.h:31
EIGEN_STRONG_INLINE Packet4cd ploaddup< Packet4cd >(const std::complex< double > *from)
Definition Complex.h:263
EIGEN_DEVICE_FUNC internal::add_const_on_value_type< EIGEN_MATHFUNC_RETVAL(real_ref, Scalar)>::type real_ref(const Scalar &x)
Definition MathFunctions.h:1237
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
Definition BandTriangularSolver.h:13
Definition BFloat16.h:88
Definition Complex.h:188
Definition Complex.h:31
Definition Complex.h:174
__m512d v
Definition Complex.h:177
EIGEN_STRONG_INLINE Packet4cd()
Definition Complex.h:175
EIGEN_STRONG_INLINE Packet4cd(const __m512d &a)
Definition Complex.h:176
Definition Complex.h:19
Definition Complex.h:19
__m512 v
Definition Complex.h:22
EIGEN_STRONG_INLINE Packet8cf()
Definition Complex.h:20
EIGEN_STRONG_INLINE Packet8cf(const __m512 &a)
Definition Complex.h:21
EIGEN_STRONG_INLINE Packet4cd pmul(const Packet4cd &a, const Packet4cd &b) const
Definition Complex.h:317
EIGEN_STRONG_INLINE Packet4cd pmadd(const Packet4cd &x, const Packet4cd &y, const Packet4cd &c) const
Definition Complex.h:314
EIGEN_STRONG_INLINE Packet4cd pmadd(const Packet4cd &x, const Packet4cd &y, const Packet4cd &c) const
Definition Complex.h:325
EIGEN_STRONG_INLINE Packet4cd pmul(const Packet4cd &a, const Packet4cd &b) const
Definition Complex.h:328
EIGEN_STRONG_INLINE Packet4cd pmul(const Packet4cd &a, const Packet4cd &b) const
Definition Complex.h:339
EIGEN_STRONG_INLINE Packet4cd pmadd(const Packet4cd &x, const Packet4cd &y, const Packet4cd &c) const
Definition Complex.h:336
Definition ConjHelper.h:63
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ResultType pmul(const LhsType &x, const RhsType &y) const
Definition ConjHelper.h:71
Definition GenericPacketMath.h:43
@ HasSqrt
Definition GenericPacketMath.h:66
@ HasDiv
Definition GenericPacketMath.h:65
Definition GenericPacketMath.h:107
@ 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
@ HasSetLinear
Definition GenericPacketMath.h:126
@ HasMin
Definition GenericPacketMath.h:123
@ HasAbs2
Definition GenericPacketMath.h:122
@ 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 PacketMath.h:56
Definition ForwardDeclarations.h:17
Packet8d as_real
Definition Complex.h:207
Packet2cd half
Definition Complex.h:206
std::complex< double > type
Definition Complex.h:205
Packet16f as_real
Definition Complex.h:52
std::complex< float > type
Definition Complex.h:50
Packet4cf half
Definition Complex.h:51
Definition GenericPacketMath.h:133
@ 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 datatypes.h:12