NEON/PacketMath.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) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2010 Konstantinos Margaritis <markos@freevec.org>
6 // Heavily based on Gael's SSE version.
7 //
8 // This Source Code Form is subject to the terms of the Mozilla
9 // Public License v. 2.0. If a copy of the MPL was not distributed
10 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 
12 #ifndef EIGEN_PACKET_MATH_NEON_H
13 #define EIGEN_PACKET_MATH_NEON_H
14 
15 namespace Eigen {
16 
17 namespace internal {
18 
19 #ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
20 #define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 8
21 #endif
22 
23 #ifndef EIGEN_HAS_SINGLE_INSTRUCTION_MADD
24 #define EIGEN_HAS_SINGLE_INSTRUCTION_MADD
25 #endif
26 
27 #ifndef EIGEN_HAS_SINGLE_INSTRUCTION_CJMADD
28 #define EIGEN_HAS_SINGLE_INSTRUCTION_CJMADD
29 #endif
30 
31 #ifndef EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS
32 #if EIGEN_ARCH_ARM64
33 #define EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS 32
34 #else
35 #define EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS 16
36 #endif
37 #endif
38 
39 #if EIGEN_COMP_MSVC
40 
41 // In MSVC's arm_neon.h header file, all NEON vector types
42 // are aliases to the same underlying type __n128.
43 // We thus have to wrap them to make them different C++ types.
44 // (See also bug 1428)
45 
46 template<typename T,int unique_id>
47 struct eigen_packet_wrapper
48 {
49  operator T&() { return m_val; }
50  operator const T&() const { return m_val; }
51  eigen_packet_wrapper() {}
52  eigen_packet_wrapper(const T &v) : m_val(v) {}
53  eigen_packet_wrapper& operator=(const T &v) {
54  m_val = v;
55  return *this;
56  }
57 
58  T m_val;
59 };
60 typedef eigen_packet_wrapper<float32x2_t,0> Packet2f;
61 typedef eigen_packet_wrapper<float32x4_t,1> Packet4f;
62 typedef eigen_packet_wrapper<int32x4_t ,2> Packet4i;
63 typedef eigen_packet_wrapper<int32x2_t ,3> Packet2i;
64 typedef eigen_packet_wrapper<uint32x4_t ,4> Packet4ui;
65 
66 #else
67 
68 typedef float32x2_t Packet2f;
69 typedef float32x4_t Packet4f;
70 typedef int32x4_t Packet4i;
71 typedef int32x2_t Packet2i;
72 typedef uint32x4_t Packet4ui;
73 
74 #endif // EIGEN_COMP_MSVC
75 
76 #define _EIGEN_DECLARE_CONST_Packet4f(NAME,X) \
77  const Packet4f p4f_##NAME = pset1<Packet4f>(X)
78 
79 #define _EIGEN_DECLARE_CONST_Packet4f_FROM_INT(NAME,X) \
80  const Packet4f p4f_##NAME = vreinterpretq_f32_u32(pset1<int32_t>(X))
81 
82 #define _EIGEN_DECLARE_CONST_Packet4i(NAME,X) \
83  const Packet4i p4i_##NAME = pset1<Packet4i>(X)
84 
85 #if EIGEN_ARCH_ARM64
86  // __builtin_prefetch tends to do nothing on ARM64 compilers because the
87  // prefetch instructions there are too detailed for __builtin_prefetch to map
88  // meaningfully to them.
89  #define EIGEN_ARM_PREFETCH(ADDR) __asm__ __volatile__("prfm pldl1keep, [%[addr]]\n" ::[addr] "r"(ADDR) : );
90 #elif EIGEN_HAS_BUILTIN(__builtin_prefetch) || EIGEN_COMP_GNUC
91  #define EIGEN_ARM_PREFETCH(ADDR) __builtin_prefetch(ADDR);
92 #elif defined __pld
93  #define EIGEN_ARM_PREFETCH(ADDR) __pld(ADDR)
94 #elif EIGEN_ARCH_ARM32
95  #define EIGEN_ARM_PREFETCH(ADDR) __asm__ __volatile__ ("pld [%[addr]]\n" :: [addr] "r" (ADDR) : );
96 #else
97  // by default no explicit prefetching
98  #define EIGEN_ARM_PREFETCH(ADDR)
99 #endif
100 
101 template<> struct packet_traits<float> : default_packet_traits
102 {
103  typedef Packet4f type;
104  typedef Packet4f half; // Packet2f intrinsics not implemented yet
105  enum {
106  Vectorizable = 1,
107  AlignedOnScalar = 1,
108  size = 4,
109  HasHalfPacket=0, // Packet2f intrinsics not implemented yet
110 
111  HasDiv = 1,
112  // FIXME check the Has*
113  HasSin = 0,
114  HasCos = 0,
115  HasLog = 0,
116  HasExp = 1,
117  HasSqrt = 0
118  };
119 };
121 {
122  typedef Packet4i type;
123  typedef Packet4i half; // Packet2i intrinsics not implemented yet
124  enum {
125  Vectorizable = 1,
126  AlignedOnScalar = 1,
127  size=4,
128  HasHalfPacket=0 // Packet2i intrinsics not implemented yet
129  // FIXME check the Has*
130  };
131 };
132 
133 #if EIGEN_GNUC_AT_MOST(4,4) && !EIGEN_COMP_LLVM
134 // workaround gcc 4.2, 4.3 and 4.4 compilatin issue
135 EIGEN_STRONG_INLINE float32x4_t vld1q_f32(const float* x) { return ::vld1q_f32((const float32_t*)x); }
136 EIGEN_STRONG_INLINE float32x2_t vld1_f32 (const float* x) { return ::vld1_f32 ((const float32_t*)x); }
137 EIGEN_STRONG_INLINE float32x2_t vld1_dup_f32 (const float* x) { return ::vld1_dup_f32 ((const float32_t*)x); }
138 EIGEN_STRONG_INLINE void vst1q_f32(float* to, float32x4_t from) { ::vst1q_f32((float32_t*)to,from); }
139 EIGEN_STRONG_INLINE void vst1_f32 (float* to, float32x2_t from) { ::vst1_f32 ((float32_t*)to,from); }
140 #endif
141 
142 template<> struct unpacket_traits<Packet4f> { typedef float type; enum {size=4, alignment=Aligned16}; typedef Packet4f half; };
143 template<> struct unpacket_traits<Packet4i> { typedef int32_t type; enum {size=4, alignment=Aligned16}; typedef Packet4i half; };
144 
145 template<> EIGEN_STRONG_INLINE Packet4f pset1<Packet4f>(const float& from) { return vdupq_n_f32(from); }
146 template<> EIGEN_STRONG_INLINE Packet4i pset1<Packet4i>(const int32_t& from) { return vdupq_n_s32(from); }
147 
148 template<> EIGEN_STRONG_INLINE Packet4f plset<Packet4f>(const float& a)
149 {
150  const float f[] = {0, 1, 2, 3};
151  Packet4f countdown = vld1q_f32(f);
152  return vaddq_f32(pset1<Packet4f>(a), countdown);
153 }
154 template<> EIGEN_STRONG_INLINE Packet4i plset<Packet4i>(const int32_t& a)
155 {
156  const int32_t i[] = {0, 1, 2, 3};
157  Packet4i countdown = vld1q_s32(i);
158  return vaddq_s32(pset1<Packet4i>(a), countdown);
159 }
160 
161 template<> EIGEN_STRONG_INLINE Packet4f padd<Packet4f>(const Packet4f& a, const Packet4f& b) { return vaddq_f32(a,b); }
162 template<> EIGEN_STRONG_INLINE Packet4i padd<Packet4i>(const Packet4i& a, const Packet4i& b) { return vaddq_s32(a,b); }
163 
164 template<> EIGEN_STRONG_INLINE Packet4f psub<Packet4f>(const Packet4f& a, const Packet4f& b) { return vsubq_f32(a,b); }
165 template<> EIGEN_STRONG_INLINE Packet4i psub<Packet4i>(const Packet4i& a, const Packet4i& b) { return vsubq_s32(a,b); }
166 
167 template<> EIGEN_STRONG_INLINE Packet4f pnegate(const Packet4f& a) { return vnegq_f32(a); }
168 template<> EIGEN_STRONG_INLINE Packet4i pnegate(const Packet4i& a) { return vnegq_s32(a); }
169 
170 template<> EIGEN_STRONG_INLINE Packet4f pconj(const Packet4f& a) { return a; }
171 template<> EIGEN_STRONG_INLINE Packet4i pconj(const Packet4i& a) { return a; }
172 
173 template<> EIGEN_STRONG_INLINE Packet4f pmul<Packet4f>(const Packet4f& a, const Packet4f& b) { return vmulq_f32(a,b); }
174 template<> EIGEN_STRONG_INLINE Packet4i pmul<Packet4i>(const Packet4i& a, const Packet4i& b) { return vmulq_s32(a,b); }
175 
176 template<> EIGEN_STRONG_INLINE Packet4f pdiv<Packet4f>(const Packet4f& a, const Packet4f& b)
177 {
178 #if EIGEN_ARCH_ARM64
179  return vdivq_f32(a,b);
180 #else
181  Packet4f inv, restep, div;
182 
183  // NEON does not offer a divide instruction, we have to do a reciprocal approximation
184  // However NEON in contrast to other SIMD engines (AltiVec/SSE), offers
185  // a reciprocal estimate AND a reciprocal step -which saves a few instructions
186  // vrecpeq_f32() returns an estimate to 1/b, which we will finetune with
187  // Newton-Raphson and vrecpsq_f32()
188  inv = vrecpeq_f32(b);
189 
190  // This returns a differential, by which we will have to multiply inv to get a better
191  // approximation of 1/b.
192  restep = vrecpsq_f32(b, inv);
193  inv = vmulq_f32(restep, inv);
194 
195  // Finally, multiply a by 1/b and get the wanted result of the division.
196  div = vmulq_f32(a, inv);
197 
198  return div;
199 #endif
200 }
201 
202 template<> EIGEN_STRONG_INLINE Packet4i pdiv<Packet4i>(const Packet4i& /*a*/, const Packet4i& /*b*/)
203 { eigen_assert(false && "packet integer division are not supported by NEON");
204  return pset1<Packet4i>(0);
205 }
206 
207 // Clang/ARM wrongly advertises __ARM_FEATURE_FMA even when it's not available,
208 // then implements a slow software scalar fallback calling fmaf()!
209 // Filed LLVM bug:
210 // https://llvm.org/bugs/show_bug.cgi?id=27216
211 #if (defined __ARM_FEATURE_FMA) && !(EIGEN_COMP_CLANG && EIGEN_ARCH_ARM)
212 // See bug 936.
213 // FMA is available on VFPv4 i.e. when compiling with -mfpu=neon-vfpv4.
214 // FMA is a true fused multiply-add i.e. only 1 rounding at the end, no intermediate rounding.
215 // MLA is not fused i.e. does 2 roundings.
216 // In addition to giving better accuracy, FMA also gives better performance here on a Krait (Nexus 4):
217 // MLA: 10 GFlop/s ; FMA: 12 GFlops/s.
218 template<> EIGEN_STRONG_INLINE Packet4f pmadd(const Packet4f& a, const Packet4f& b, const Packet4f& c) { return vfmaq_f32(c,a,b); }
219 #else
220 template<> EIGEN_STRONG_INLINE Packet4f pmadd(const Packet4f& a, const Packet4f& b, const Packet4f& c) {
221 #if EIGEN_COMP_CLANG && EIGEN_ARCH_ARM
222  // Clang/ARM will replace VMLA by VMUL+VADD at least for some values of -mcpu,
223  // at least -mcpu=cortex-a8 and -mcpu=cortex-a7. Since the former is the default on
224  // -march=armv7-a, that is a very common case.
225  // See e.g. this thread:
226  // http://lists.llvm.org/pipermail/llvm-dev/2013-December/068806.html
227  // Filed LLVM bug:
228  // https://llvm.org/bugs/show_bug.cgi?id=27219
229  Packet4f r = c;
230  asm volatile(
231  "vmla.f32 %q[r], %q[a], %q[b]"
232  : [r] "+w" (r)
233  : [a] "w" (a),
234  [b] "w" (b)
235  : );
236  return r;
237 #else
238  return vmlaq_f32(c,a,b);
239 #endif
240 }
241 #endif
242 
243 // No FMA instruction for int, so use MLA unconditionally.
244 template<> EIGEN_STRONG_INLINE Packet4i pmadd(const Packet4i& a, const Packet4i& b, const Packet4i& c) { return vmlaq_s32(c,a,b); }
245 
246 template<> EIGEN_STRONG_INLINE Packet4f pmin<Packet4f>(const Packet4f& a, const Packet4f& b) { return vminq_f32(a,b); }
247 template<> EIGEN_STRONG_INLINE Packet4i pmin<Packet4i>(const Packet4i& a, const Packet4i& b) { return vminq_s32(a,b); }
248 
249 template<> EIGEN_STRONG_INLINE Packet4f pmax<Packet4f>(const Packet4f& a, const Packet4f& b) { return vmaxq_f32(a,b); }
250 template<> EIGEN_STRONG_INLINE Packet4i pmax<Packet4i>(const Packet4i& a, const Packet4i& b) { return vmaxq_s32(a,b); }
251 
252 // Logical Operations are not supported for float, so we have to reinterpret casts using NEON intrinsics
253 template<> EIGEN_STRONG_INLINE Packet4f pand<Packet4f>(const Packet4f& a, const Packet4f& b)
254 {
255  return vreinterpretq_f32_u32(vandq_u32(vreinterpretq_u32_f32(a),vreinterpretq_u32_f32(b)));
256 }
257 template<> EIGEN_STRONG_INLINE Packet4i pand<Packet4i>(const Packet4i& a, const Packet4i& b) { return vandq_s32(a,b); }
258 
259 template<> EIGEN_STRONG_INLINE Packet4f por<Packet4f>(const Packet4f& a, const Packet4f& b)
260 {
261  return vreinterpretq_f32_u32(vorrq_u32(vreinterpretq_u32_f32(a),vreinterpretq_u32_f32(b)));
262 }
263 template<> EIGEN_STRONG_INLINE Packet4i por<Packet4i>(const Packet4i& a, const Packet4i& b) { return vorrq_s32(a,b); }
264 
265 template<> EIGEN_STRONG_INLINE Packet4f pxor<Packet4f>(const Packet4f& a, const Packet4f& b)
266 {
267  return vreinterpretq_f32_u32(veorq_u32(vreinterpretq_u32_f32(a),vreinterpretq_u32_f32(b)));
268 }
269 template<> EIGEN_STRONG_INLINE Packet4i pxor<Packet4i>(const Packet4i& a, const Packet4i& b) { return veorq_s32(a,b); }
270 
271 template<> EIGEN_STRONG_INLINE Packet4f pandnot<Packet4f>(const Packet4f& a, const Packet4f& b)
272 {
273  return vreinterpretq_f32_u32(vbicq_u32(vreinterpretq_u32_f32(a),vreinterpretq_u32_f32(b)));
274 }
275 template<> EIGEN_STRONG_INLINE Packet4i pandnot<Packet4i>(const Packet4i& a, const Packet4i& b) { return vbicq_s32(a,b); }
276 
277 template<> EIGEN_STRONG_INLINE Packet4f pload<Packet4f>(const float* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_f32(from); }
278 template<> EIGEN_STRONG_INLINE Packet4i pload<Packet4i>(const int32_t* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_s32(from); }
279 
280 template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_f32(from); }
281 template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int32_t* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_s32(from); }
282 
283 template<> EIGEN_STRONG_INLINE Packet4f ploaddup<Packet4f>(const float* from)
284 {
285  float32x2_t lo, hi;
286  lo = vld1_dup_f32(from);
287  hi = vld1_dup_f32(from+1);
288  return vcombine_f32(lo, hi);
289 }
290 template<> EIGEN_STRONG_INLINE Packet4i ploaddup<Packet4i>(const int32_t* from)
291 {
292  int32x2_t lo, hi;
293  lo = vld1_dup_s32(from);
294  hi = vld1_dup_s32(from+1);
295  return vcombine_s32(lo, hi);
296 }
297 
298 template<> EIGEN_STRONG_INLINE void pstore<float> (float* to, const Packet4f& from) { EIGEN_DEBUG_ALIGNED_STORE vst1q_f32(to, from); }
299 template<> EIGEN_STRONG_INLINE void pstore<int32_t>(int32_t* to, const Packet4i& from) { EIGEN_DEBUG_ALIGNED_STORE vst1q_s32(to, from); }
300 
301 template<> EIGEN_STRONG_INLINE void pstoreu<float> (float* to, const Packet4f& from) { EIGEN_DEBUG_UNALIGNED_STORE vst1q_f32(to, from); }
302 template<> EIGEN_STRONG_INLINE void pstoreu<int32_t>(int32_t* to, const Packet4i& from) { EIGEN_DEBUG_UNALIGNED_STORE vst1q_s32(to, from); }
303 
304 template<> EIGEN_DEVICE_FUNC inline Packet4f pgather<float, Packet4f>(const float* from, Index stride)
305 {
306  Packet4f res = pset1<Packet4f>(0.f);
307  res = vsetq_lane_f32(from[0*stride], res, 0);
308  res = vsetq_lane_f32(from[1*stride], res, 1);
309  res = vsetq_lane_f32(from[2*stride], res, 2);
310  res = vsetq_lane_f32(from[3*stride], res, 3);
311  return res;
312 }
313 template<> EIGEN_DEVICE_FUNC inline Packet4i pgather<int32_t, Packet4i>(const int32_t* from, Index stride)
314 {
315  Packet4i res = pset1<Packet4i>(0);
316  res = vsetq_lane_s32(from[0*stride], res, 0);
317  res = vsetq_lane_s32(from[1*stride], res, 1);
318  res = vsetq_lane_s32(from[2*stride], res, 2);
319  res = vsetq_lane_s32(from[3*stride], res, 3);
320  return res;
321 }
322 
323 template<> EIGEN_DEVICE_FUNC inline void pscatter<float, Packet4f>(float* to, const Packet4f& from, Index stride)
324 {
325  to[stride*0] = vgetq_lane_f32(from, 0);
326  to[stride*1] = vgetq_lane_f32(from, 1);
327  to[stride*2] = vgetq_lane_f32(from, 2);
328  to[stride*3] = vgetq_lane_f32(from, 3);
329 }
330 template<> EIGEN_DEVICE_FUNC inline void pscatter<int32_t, Packet4i>(int32_t* to, const Packet4i& from, Index stride)
331 {
332  to[stride*0] = vgetq_lane_s32(from, 0);
333  to[stride*1] = vgetq_lane_s32(from, 1);
334  to[stride*2] = vgetq_lane_s32(from, 2);
335  to[stride*3] = vgetq_lane_s32(from, 3);
336 }
337 
338 template<> EIGEN_STRONG_INLINE void prefetch<float> (const float* addr) { EIGEN_ARM_PREFETCH(addr); }
339 template<> EIGEN_STRONG_INLINE void prefetch<int32_t>(const int32_t* addr) { EIGEN_ARM_PREFETCH(addr); }
340 
341 // FIXME only store the 2 first elements ?
342 template<> EIGEN_STRONG_INLINE float pfirst<Packet4f>(const Packet4f& a) { float EIGEN_ALIGN16 x[4]; vst1q_f32(x, a); return x[0]; }
343 template<> EIGEN_STRONG_INLINE int32_t pfirst<Packet4i>(const Packet4i& a) { int32_t EIGEN_ALIGN16 x[4]; vst1q_s32(x, a); return x[0]; }
344 
345 template<> EIGEN_STRONG_INLINE Packet4f preverse(const Packet4f& a) {
346  float32x2_t a_lo, a_hi;
347  Packet4f a_r64;
348 
349  a_r64 = vrev64q_f32(a);
350  a_lo = vget_low_f32(a_r64);
351  a_hi = vget_high_f32(a_r64);
352  return vcombine_f32(a_hi, a_lo);
353 }
354 template<> EIGEN_STRONG_INLINE Packet4i preverse(const Packet4i& a) {
355  int32x2_t a_lo, a_hi;
356  Packet4i a_r64;
357 
358  a_r64 = vrev64q_s32(a);
359  a_lo = vget_low_s32(a_r64);
360  a_hi = vget_high_s32(a_r64);
361  return vcombine_s32(a_hi, a_lo);
362 }
363 
364 template<> EIGEN_STRONG_INLINE Packet4f pabs(const Packet4f& a) { return vabsq_f32(a); }
365 template<> EIGEN_STRONG_INLINE Packet4i pabs(const Packet4i& a) { return vabsq_s32(a); }
366 
367 template<> EIGEN_STRONG_INLINE float predux<Packet4f>(const Packet4f& a)
368 {
369  float32x2_t a_lo, a_hi, sum;
370 
371  a_lo = vget_low_f32(a);
372  a_hi = vget_high_f32(a);
373  sum = vpadd_f32(a_lo, a_hi);
374  sum = vpadd_f32(sum, sum);
375  return vget_lane_f32(sum, 0);
376 }
377 
378 template<> EIGEN_STRONG_INLINE Packet4f preduxp<Packet4f>(const Packet4f* vecs)
379 {
380  float32x4x2_t vtrn1, vtrn2, res1, res2;
381  Packet4f sum1, sum2, sum;
382 
383  // NEON zip performs interleaving of the supplied vectors.
384  // We perform two interleaves in a row to acquire the transposed vector
385  vtrn1 = vzipq_f32(vecs[0], vecs[2]);
386  vtrn2 = vzipq_f32(vecs[1], vecs[3]);
387  res1 = vzipq_f32(vtrn1.val[0], vtrn2.val[0]);
388  res2 = vzipq_f32(vtrn1.val[1], vtrn2.val[1]);
389 
390  // Do the addition of the resulting vectors
391  sum1 = vaddq_f32(res1.val[0], res1.val[1]);
392  sum2 = vaddq_f32(res2.val[0], res2.val[1]);
393  sum = vaddq_f32(sum1, sum2);
394 
395  return sum;
396 }
397 
398 template<> EIGEN_STRONG_INLINE int32_t predux<Packet4i>(const Packet4i& a)
399 {
400  int32x2_t a_lo, a_hi, sum;
401 
402  a_lo = vget_low_s32(a);
403  a_hi = vget_high_s32(a);
404  sum = vpadd_s32(a_lo, a_hi);
405  sum = vpadd_s32(sum, sum);
406  return vget_lane_s32(sum, 0);
407 }
408 
409 template<> EIGEN_STRONG_INLINE Packet4i preduxp<Packet4i>(const Packet4i* vecs)
410 {
411  int32x4x2_t vtrn1, vtrn2, res1, res2;
412  Packet4i sum1, sum2, sum;
413 
414  // NEON zip performs interleaving of the supplied vectors.
415  // We perform two interleaves in a row to acquire the transposed vector
416  vtrn1 = vzipq_s32(vecs[0], vecs[2]);
417  vtrn2 = vzipq_s32(vecs[1], vecs[3]);
418  res1 = vzipq_s32(vtrn1.val[0], vtrn2.val[0]);
419  res2 = vzipq_s32(vtrn1.val[1], vtrn2.val[1]);
420 
421  // Do the addition of the resulting vectors
422  sum1 = vaddq_s32(res1.val[0], res1.val[1]);
423  sum2 = vaddq_s32(res2.val[0], res2.val[1]);
424  sum = vaddq_s32(sum1, sum2);
425 
426  return sum;
427 }
428 
429 // Other reduction functions:
430 // mul
431 template<> EIGEN_STRONG_INLINE float predux_mul<Packet4f>(const Packet4f& a)
432 {
433  float32x2_t a_lo, a_hi, prod;
434 
435  // Get a_lo = |a1|a2| and a_hi = |a3|a4|
436  a_lo = vget_low_f32(a);
437  a_hi = vget_high_f32(a);
438  // Get the product of a_lo * a_hi -> |a1*a3|a2*a4|
439  prod = vmul_f32(a_lo, a_hi);
440  // Multiply prod with its swapped value |a2*a4|a1*a3|
441  prod = vmul_f32(prod, vrev64_f32(prod));
442 
443  return vget_lane_f32(prod, 0);
444 }
446 {
447  int32x2_t a_lo, a_hi, prod;
448 
449  // Get a_lo = |a1|a2| and a_hi = |a3|a4|
450  a_lo = vget_low_s32(a);
451  a_hi = vget_high_s32(a);
452  // Get the product of a_lo * a_hi -> |a1*a3|a2*a4|
453  prod = vmul_s32(a_lo, a_hi);
454  // Multiply prod with its swapped value |a2*a4|a1*a3|
455  prod = vmul_s32(prod, vrev64_s32(prod));
456 
457  return vget_lane_s32(prod, 0);
458 }
459 
460 // min
461 template<> EIGEN_STRONG_INLINE float predux_min<Packet4f>(const Packet4f& a)
462 {
463  float32x2_t a_lo, a_hi, min;
464 
465  a_lo = vget_low_f32(a);
466  a_hi = vget_high_f32(a);
467  min = vpmin_f32(a_lo, a_hi);
468  min = vpmin_f32(min, min);
469 
470  return vget_lane_f32(min, 0);
471 }
472 
474 {
475  int32x2_t a_lo, a_hi, min;
476 
477  a_lo = vget_low_s32(a);
478  a_hi = vget_high_s32(a);
479  min = vpmin_s32(a_lo, a_hi);
480  min = vpmin_s32(min, min);
481 
482  return vget_lane_s32(min, 0);
483 }
484 
485 // max
486 template<> EIGEN_STRONG_INLINE float predux_max<Packet4f>(const Packet4f& a)
487 {
488  float32x2_t a_lo, a_hi, max;
489 
490  a_lo = vget_low_f32(a);
491  a_hi = vget_high_f32(a);
492  max = vpmax_f32(a_lo, a_hi);
493  max = vpmax_f32(max, max);
494 
495  return vget_lane_f32(max, 0);
496 }
497 
499 {
500  int32x2_t a_lo, a_hi, max;
501 
502  a_lo = vget_low_s32(a);
503  a_hi = vget_high_s32(a);
504  max = vpmax_s32(a_lo, a_hi);
505  max = vpmax_s32(max, max);
506 
507  return vget_lane_s32(max, 0);
508 }
509 
510 // this PALIGN_NEON business is to work around a bug in LLVM Clang 3.0 causing incorrect compilation errors,
511 // see bug 347 and this LLVM bug: http://llvm.org/bugs/show_bug.cgi?id=11074
512 #define PALIGN_NEON(Offset,Type,Command) \
513 template<>\
514 struct palign_impl<Offset,Type>\
515 {\
516  EIGEN_STRONG_INLINE static void run(Type& first, const Type& second)\
517  {\
518  if (Offset!=0)\
519  first = Command(first, second, Offset);\
520  }\
521 };\
522 
523 PALIGN_NEON(0,Packet4f,vextq_f32)
524 PALIGN_NEON(1,Packet4f,vextq_f32)
525 PALIGN_NEON(2,Packet4f,vextq_f32)
526 PALIGN_NEON(3,Packet4f,vextq_f32)
527 PALIGN_NEON(0,Packet4i,vextq_s32)
528 PALIGN_NEON(1,Packet4i,vextq_s32)
529 PALIGN_NEON(2,Packet4i,vextq_s32)
530 PALIGN_NEON(3,Packet4i,vextq_s32)
531 
532 #undef PALIGN_NEON
533 
534 EIGEN_DEVICE_FUNC inline void
535 ptranspose(PacketBlock<Packet4f,4>& kernel) {
536  float32x4x2_t tmp1 = vzipq_f32(kernel.packet[0], kernel.packet[1]);
537  float32x4x2_t tmp2 = vzipq_f32(kernel.packet[2], kernel.packet[3]);
538 
539  kernel.packet[0] = vcombine_f32(vget_low_f32(tmp1.val[0]), vget_low_f32(tmp2.val[0]));
540  kernel.packet[1] = vcombine_f32(vget_high_f32(tmp1.val[0]), vget_high_f32(tmp2.val[0]));
541  kernel.packet[2] = vcombine_f32(vget_low_f32(tmp1.val[1]), vget_low_f32(tmp2.val[1]));
542  kernel.packet[3] = vcombine_f32(vget_high_f32(tmp1.val[1]), vget_high_f32(tmp2.val[1]));
543 }
544 
545 EIGEN_DEVICE_FUNC inline void
546 ptranspose(PacketBlock<Packet4i,4>& kernel) {
547  int32x4x2_t tmp1 = vzipq_s32(kernel.packet[0], kernel.packet[1]);
548  int32x4x2_t tmp2 = vzipq_s32(kernel.packet[2], kernel.packet[3]);
549  kernel.packet[0] = vcombine_s32(vget_low_s32(tmp1.val[0]), vget_low_s32(tmp2.val[0]));
550  kernel.packet[1] = vcombine_s32(vget_high_s32(tmp1.val[0]), vget_high_s32(tmp2.val[0]));
551  kernel.packet[2] = vcombine_s32(vget_low_s32(tmp1.val[1]), vget_low_s32(tmp2.val[1]));
552  kernel.packet[3] = vcombine_s32(vget_high_s32(tmp1.val[1]), vget_high_s32(tmp2.val[1]));
553 }
554 
555 //---------- double ----------
556 
557 // Clang 3.5 in the iOS toolchain has an ICE triggered by NEON intrisics for double.
558 // Confirmed at least with __apple_build_version__ = 6000054.
559 #ifdef __apple_build_version__
560 // Let's hope that by the time __apple_build_version__ hits the 601* range, the bug will be fixed.
561 // https://gist.github.com/yamaya/2924292 suggests that the 3 first digits are only updated with
562 // major toolchain updates.
563 #define EIGEN_APPLE_DOUBLE_NEON_BUG (__apple_build_version__ < 6010000)
564 #else
565 #define EIGEN_APPLE_DOUBLE_NEON_BUG 0
566 #endif
567 
568 #if EIGEN_ARCH_ARM64 && !EIGEN_APPLE_DOUBLE_NEON_BUG
569 
570 // Bug 907: workaround missing declarations of the following two functions in the ADK
571 // Defining these functions as templates ensures that if these intrinsics are
572 // already defined in arm_neon.h, then our workaround doesn't cause a conflict
573 // and has lower priority in overload resolution.
574 template <typename T>
575 uint64x2_t vreinterpretq_u64_f64(T a)
576 {
577  return (uint64x2_t) a;
578 }
579 
580 template <typename T>
581 float64x2_t vreinterpretq_f64_u64(T a)
582 {
583  return (float64x2_t) a;
584 }
585 
586 typedef float64x2_t Packet2d;
587 typedef float64x1_t Packet1d;
588 
589 template<> struct packet_traits<double> : default_packet_traits
590 {
591  typedef Packet2d type;
592  typedef Packet2d half;
593  enum {
594  Vectorizable = 1,
595  AlignedOnScalar = 1,
596  size = 2,
597  HasHalfPacket=0,
598 
599  HasDiv = 1,
600  // FIXME check the Has*
601  HasSin = 0,
602  HasCos = 0,
603  HasLog = 0,
604  HasExp = 0,
605  HasSqrt = 0
606  };
607 };
608 
609 template<> struct unpacket_traits<Packet2d> { typedef double type; enum {size=2, alignment=Aligned16}; typedef Packet2d half; };
610 
611 template<> EIGEN_STRONG_INLINE Packet2d pset1<Packet2d>(const double& from) { return vdupq_n_f64(from); }
612 
613 template<> EIGEN_STRONG_INLINE Packet2d plset<Packet2d>(const double& a)
614 {
615  const double countdown_raw[] = {0.0,1.0};
616  const Packet2d countdown = vld1q_f64(countdown_raw);
617  return vaddq_f64(pset1<Packet2d>(a), countdown);
618 }
619 template<> EIGEN_STRONG_INLINE Packet2d padd<Packet2d>(const Packet2d& a, const Packet2d& b) { return vaddq_f64(a,b); }
620 
621 template<> EIGEN_STRONG_INLINE Packet2d psub<Packet2d>(const Packet2d& a, const Packet2d& b) { return vsubq_f64(a,b); }
622 
623 template<> EIGEN_STRONG_INLINE Packet2d pnegate(const Packet2d& a) { return vnegq_f64(a); }
624 
625 template<> EIGEN_STRONG_INLINE Packet2d pconj(const Packet2d& a) { return a; }
626 
627 template<> EIGEN_STRONG_INLINE Packet2d pmul<Packet2d>(const Packet2d& a, const Packet2d& b) { return vmulq_f64(a,b); }
628 
629 template<> EIGEN_STRONG_INLINE Packet2d pdiv<Packet2d>(const Packet2d& a, const Packet2d& b) { return vdivq_f64(a,b); }
630 
631 #ifdef __ARM_FEATURE_FMA
632 // See bug 936. See above comment about FMA for float.
633 template<> EIGEN_STRONG_INLINE Packet2d pmadd(const Packet2d& a, const Packet2d& b, const Packet2d& c) { return vfmaq_f64(c,a,b); }
634 #else
635 template<> EIGEN_STRONG_INLINE Packet2d pmadd(const Packet2d& a, const Packet2d& b, const Packet2d& c) { return vmlaq_f64(c,a,b); }
636 #endif
637 
638 template<> EIGEN_STRONG_INLINE Packet2d pmin<Packet2d>(const Packet2d& a, const Packet2d& b) { return vminq_f64(a,b); }
639 
640 template<> EIGEN_STRONG_INLINE Packet2d pmax<Packet2d>(const Packet2d& a, const Packet2d& b) { return vmaxq_f64(a,b); }
641 
642 // Logical Operations are not supported for float, so we have to reinterpret casts using NEON intrinsics
643 template<> EIGEN_STRONG_INLINE Packet2d pand<Packet2d>(const Packet2d& a, const Packet2d& b)
644 {
645  return vreinterpretq_f64_u64(vandq_u64(vreinterpretq_u64_f64(a),vreinterpretq_u64_f64(b)));
646 }
647 
648 template<> EIGEN_STRONG_INLINE Packet2d por<Packet2d>(const Packet2d& a, const Packet2d& b)
649 {
650  return vreinterpretq_f64_u64(vorrq_u64(vreinterpretq_u64_f64(a),vreinterpretq_u64_f64(b)));
651 }
652 
653 template<> EIGEN_STRONG_INLINE Packet2d pxor<Packet2d>(const Packet2d& a, const Packet2d& b)
654 {
655  return vreinterpretq_f64_u64(veorq_u64(vreinterpretq_u64_f64(a),vreinterpretq_u64_f64(b)));
656 }
657 
658 template<> EIGEN_STRONG_INLINE Packet2d pandnot<Packet2d>(const Packet2d& a, const Packet2d& b)
659 {
660  return vreinterpretq_f64_u64(vbicq_u64(vreinterpretq_u64_f64(a),vreinterpretq_u64_f64(b)));
661 }
662 
663 template<> EIGEN_STRONG_INLINE Packet2d pload<Packet2d>(const double* from) { EIGEN_DEBUG_ALIGNED_LOAD return vld1q_f64(from); }
664 
665 template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from) { EIGEN_DEBUG_UNALIGNED_LOAD return vld1q_f64(from); }
666 
667 template<> EIGEN_STRONG_INLINE Packet2d ploaddup<Packet2d>(const double* from)
668 {
669  return vld1q_dup_f64(from);
670 }
671 template<> EIGEN_STRONG_INLINE void pstore<double>(double* to, const Packet2d& from) { EIGEN_DEBUG_ALIGNED_STORE vst1q_f64(to, from); }
672 
673 template<> EIGEN_STRONG_INLINE void pstoreu<double>(double* to, const Packet2d& from) { EIGEN_DEBUG_UNALIGNED_STORE vst1q_f64(to, from); }
674 
675 template<> EIGEN_DEVICE_FUNC inline Packet2d pgather<double, Packet2d>(const double* from, Index stride)
676 {
677  Packet2d res = pset1<Packet2d>(0.0);
678  res = vsetq_lane_f64(from[0*stride], res, 0);
679  res = vsetq_lane_f64(from[1*stride], res, 1);
680  return res;
681 }
682 template<> EIGEN_DEVICE_FUNC inline void pscatter<double, Packet2d>(double* to, const Packet2d& from, Index stride)
683 {
684  to[stride*0] = vgetq_lane_f64(from, 0);
685  to[stride*1] = vgetq_lane_f64(from, 1);
686 }
687 template<> EIGEN_STRONG_INLINE void prefetch<double>(const double* addr) { EIGEN_ARM_PREFETCH(addr); }
688 
689 // FIXME only store the 2 first elements ?
690 template<> EIGEN_STRONG_INLINE double pfirst<Packet2d>(const Packet2d& a) { return vgetq_lane_f64(a, 0); }
691 
692 template<> EIGEN_STRONG_INLINE Packet2d preverse(const Packet2d& a) { return vcombine_f64(vget_high_f64(a), vget_low_f64(a)); }
693 
694 template<> EIGEN_STRONG_INLINE Packet2d pabs(const Packet2d& a) { return vabsq_f64(a); }
695 
696 #if EIGEN_COMP_CLANG && defined(__apple_build_version__)
697 // workaround ICE, see bug 907
698 template<> EIGEN_STRONG_INLINE double predux<Packet2d>(const Packet2d& a) { return (vget_low_f64(a) + vget_high_f64(a))[0]; }
699 #else
700 template<> EIGEN_STRONG_INLINE double predux<Packet2d>(const Packet2d& a) { return vget_lane_f64(vget_low_f64(a) + vget_high_f64(a), 0); }
701 #endif
702 
703 template<> EIGEN_STRONG_INLINE Packet2d preduxp<Packet2d>(const Packet2d* vecs)
704 {
705  float64x2_t trn1, trn2;
706 
707  // NEON zip performs interleaving of the supplied vectors.
708  // We perform two interleaves in a row to acquire the transposed vector
709  trn1 = vzip1q_f64(vecs[0], vecs[1]);
710  trn2 = vzip2q_f64(vecs[0], vecs[1]);
711 
712  // Do the addition of the resulting vectors
713  return vaddq_f64(trn1, trn2);
714 }
715 // Other reduction functions:
716 // mul
717 #if EIGEN_COMP_CLANG && defined(__apple_build_version__)
718 template<> EIGEN_STRONG_INLINE double predux_mul<Packet2d>(const Packet2d& a) { return (vget_low_f64(a) * vget_high_f64(a))[0]; }
719 #else
720 template<> EIGEN_STRONG_INLINE double predux_mul<Packet2d>(const Packet2d& a) { return vget_lane_f64(vget_low_f64(a) * vget_high_f64(a), 0); }
721 #endif
722 
723 // min
724 template<> EIGEN_STRONG_INLINE double predux_min<Packet2d>(const Packet2d& a) { return vgetq_lane_f64(vpminq_f64(a, a), 0); }
725 
726 // max
727 template<> EIGEN_STRONG_INLINE double predux_max<Packet2d>(const Packet2d& a) { return vgetq_lane_f64(vpmaxq_f64(a, a), 0); }
728 
729 // this PALIGN_NEON business is to work around a bug in LLVM Clang 3.0 causing incorrect compilation errors,
730 // see bug 347 and this LLVM bug: http://llvm.org/bugs/show_bug.cgi?id=11074
731 #define PALIGN_NEON(Offset,Type,Command) \
732 template<>\
733 struct palign_impl<Offset,Type>\
734 {\
735  EIGEN_STRONG_INLINE static void run(Type& first, const Type& second)\
736  {\
737  if (Offset!=0)\
738  first = Command(first, second, Offset);\
739  }\
740 };\
741 
742 PALIGN_NEON(0,Packet2d,vextq_f64)
743 PALIGN_NEON(1,Packet2d,vextq_f64)
744 #undef PALIGN_NEON
745 
746 EIGEN_DEVICE_FUNC inline void
747 ptranspose(PacketBlock<Packet2d,2>& kernel) {
748  float64x2_t trn1 = vzip1q_f64(kernel.packet[0], kernel.packet[1]);
749  float64x2_t trn2 = vzip2q_f64(kernel.packet[0], kernel.packet[1]);
750 
751  kernel.packet[0] = trn1;
752  kernel.packet[1] = trn2;
753 }
754 #endif // EIGEN_ARCH_ARM64
755 
756 } // end namespace internal
757 
758 } // end namespace Eigen
759 
760 #endif // EIGEN_PACKET_MATH_NEON_H
EIGEN_STRONG_INLINE Packet4i ploaddup< Packet4i >(const int *from)
EIGEN_DEVICE_FUNC Packet4i pgather< int32_t, Packet4i >(const int32_t *from, Index stride)
EIGEN_STRONG_INLINE Packet4f pxor< Packet4f >(const Packet4f &a, const Packet4f &b)
#define max(a, b)
Definition: datatypes.h:20
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
EIGEN_STRONG_INLINE Packet2d plset< Packet2d >(const double &a)
__vector float Packet4f
EIGEN_STRONG_INLINE int pfirst< Packet4i >(const Packet4i &a)
EIGEN_DEVICE_FUNC void pscatter< float, Packet4f >(float *to, const Packet4f &from, Index stride)
EIGEN_STRONG_INLINE double predux_min< Packet2d >(const Packet2d &a)
EIGEN_STRONG_INLINE Packet4i pload< Packet4i >(const int *from)
Scalar * b
Definition: benchVecAdd.cpp:17
EIGEN_STRONG_INLINE double predux_max< Packet2d >(const Packet2d &a)
EIGEN_STRONG_INLINE Packet4i plset< Packet4i >(const int &a)
#define EIGEN_DEBUG_UNALIGNED_LOAD
#define min(a, b)
Definition: datatypes.h:19
EIGEN_STRONG_INLINE float pfirst< Packet4f >(const Packet4f &a)
ArrayXcf v
Definition: Cwise_arg.cpp:1
EIGEN_STRONG_INLINE Packet4f ploaddup< Packet4f >(const float *from)
Scalar Scalar * c
Definition: benchVecAdd.cpp:17
EIGEN_DEVICE_FUNC void pscatter< int32_t, Packet4i >(int32_t *to, const Packet4i &from, Index stride)
EIGEN_STRONG_INLINE int predux< Packet4i >(const Packet4i &a)
#define EIGEN_DEBUG_ALIGNED_STORE
__vector unsigned int Packet4ui
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
EIGEN_STRONG_INLINE Packet4i ploadu< Packet4i >(const int *from)
__vector int Packet4i
EIGEN_STRONG_INLINE float predux_max< Packet4f >(const Packet4f &a)
EIGEN_STRONG_INLINE void pstoreu< int32_t >(int32_t *to, const Packet4i &from)
#define EIGEN_DEBUG_UNALIGNED_STORE
EIGEN_STRONG_INLINE void prefetch< float >(const float *addr)
EIGEN_STRONG_INLINE Packet4i pdiv< Packet4i >(const Packet4i &, const Packet4i &)
EIGEN_STRONG_INLINE int predux_min< Packet4i >(const Packet4i &a)
EIGEN_STRONG_INLINE void pstoreu< double >(double *to, const Packet4d &from)
#define EIGEN_DEBUG_ALIGNED_LOAD
Array33i a
EIGEN_STRONG_INLINE Packet2d padd< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE Packet2d ploaddup< Packet2d >(const double *from)
EIGEN_STRONG_INLINE double predux_mul< Packet2d >(const Packet2d &a)
EIGEN_STRONG_INLINE Packet2d preduxp< Packet2d >(const Packet2d *vecs)
EIGEN_STRONG_INLINE Packet2d pdiv< Packet2d >(const Packet2d &a, const Packet2d &b)
cout<< "Here is the matrix m:"<< endl<< m<< endl;Matrix< ptrdiff_t, 3, 1 > res
EIGEN_STRONG_INLINE Packet4i pmul< Packet4i >(const Packet4i &a, const Packet4i &b)
Scalar Scalar int size
Definition: benchVecAdd.cpp:17
EIGEN_STRONG_INLINE Packet2d pandnot< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE void pstore< double >(double *to, const Packet4d &from)
EIGEN_STRONG_INLINE Packet4f pdiv< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet4f pmin< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet2d pmin< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE Packet4i pand< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE int predux_max< Packet4i >(const Packet4i &a)
EIGEN_STRONG_INLINE Packet4i pmin< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE Packet4f ploadu< Packet4f >(const float *from)
EIGEN_STRONG_INLINE void ptranspose(PacketBlock< Packet2cf, 2 > &kernel)
EIGEN_STRONG_INLINE Packet4i pxor< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE void pstore< float >(float *to, const Packet4f &from)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
EIGEN_DEVICE_FUNC void pscatter< double, Packet2d >(double *to, const Packet2d &from, Index stride)
#define eigen_assert(x)
Definition: Macros.h:579
EIGEN_STRONG_INLINE Packet4f por< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet2d pmax< Packet2d >(const Packet2d &a, const Packet2d &b)
signed int int32_t
Definition: ms_stdint.h:82
Point2(* f)(const Point3 &, OptionalJacobian< 2, 3 >)
EIGEN_STRONG_INLINE Packet4i preduxp< Packet4i >(const Packet4i *vecs)
const mpreal sum(const mpreal tab[], const unsigned long int n, int &status, mp_rnd_t mode=mpreal::get_default_rnd())
Definition: mpreal.h:2381
EIGEN_STRONG_INLINE Packet4f pandnot< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE float predux< Packet4f >(const Packet4f &a)
EIGEN_STRONG_INLINE Packet2d pand< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE Packet2d ploadu< Packet2d >(const double *from)
EIGEN_STRONG_INLINE Packet2cf pconj(const Packet2cf &a)
EIGEN_STRONG_INLINE float predux_min< Packet4f >(const Packet4f &a)
EIGEN_STRONG_INLINE Packet2d pload< Packet2d >(const double *from)
EIGEN_STRONG_INLINE Packet2d psub< Packet2d >(const Packet2d &a, const Packet2d &b)
#define PALIGN_NEON(Offset, Type, Command)
EIGEN_STRONG_INLINE void pstoreu< float >(float *to, const Packet4f &from)
EIGEN_STRONG_INLINE int predux_mul< Packet4i >(const Packet4i &a)
EIGEN_STRONG_INLINE Packet4f pmul< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE double predux< Packet2d >(const Packet2d &a)
EIGEN_STRONG_INLINE Packet4f pload< Packet4f >(const float *from)
#define EIGEN_ALIGN16
Definition: Macros.h:753
EIGEN_STRONG_INLINE Packet4i pmax< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE Packet2d pxor< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE void pstore< int32_t >(int32_t *to, const Packet4i &from)
EIGEN_STRONG_INLINE Packet2cf pnegate(const Packet2cf &a)
float32x2_t Packet2f
EIGEN_STRONG_INLINE Packet4i por< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE Packet4i padd< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE Packet4f padd< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet4i pandnot< Packet4i >(const Packet4i &a, const Packet4i &b)
#define EIGEN_ARM_PREFETCH(ADDR)
EIGEN_STRONG_INLINE Packet4f pmadd(const Packet4f &a, const Packet4f &b, const Packet4f &c)
EIGEN_STRONG_INLINE Packet4f preduxp< Packet4f >(const Packet4f *vecs)
EIGEN_STRONG_INLINE Packet2d pset1< Packet2d >(const double &from)
EIGEN_STRONG_INLINE Packet4f plset< Packet4f >(const float &a)
EIGEN_DEVICE_FUNC Packet2d pgather< double, Packet2d >(const double *from, Index stride)
int32x2_t Packet2i
EIGEN_STRONG_INLINE Packet2d pmul< Packet2d >(const Packet2d &a, const Packet2d &b)
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
EIGEN_STRONG_INLINE Packet4f pmax< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet4f pset1< Packet4f >(const float &from)
EIGEN_STRONG_INLINE void prefetch< int32_t >(const int32_t *addr)
EIGEN_STRONG_INLINE double pfirst< Packet2d >(const Packet2d &a)
EIGEN_DEVICE_FUNC Packet4f pgather< float, Packet4f >(const float *from, Index stride)
EIGEN_STRONG_INLINE void prefetch< double >(const double *addr)
EIGEN_STRONG_INLINE Packet4i psub< Packet4i >(const Packet4i &a, const Packet4i &b)
EIGEN_STRONG_INLINE Packet4f psub< Packet4f >(const Packet4f &a, const Packet4f &b)
EIGEN_STRONG_INLINE Packet4i pset1< Packet4i >(const int &from)
EIGEN_STRONG_INLINE Packet2d por< Packet2d >(const Packet2d &a, const Packet2d &b)
EIGEN_STRONG_INLINE Packet2cf preverse(const Packet2cf &a)
EIGEN_STRONG_INLINE float predux_mul< Packet4f >(const Packet4f &a)
EIGEN_STRONG_INLINE Packet4f pabs(const Packet4f &a)
const Product< Lhs, Rhs > prod(const Lhs &lhs, const Rhs &rhs)
Definition: evaluators.cpp:8
EIGEN_STRONG_INLINE Packet4f pand< Packet4f >(const Packet4f &a, const Packet4f &b)


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:43:07