summaryrefslogtreecommitdiffstats
path: root/vec_double_avx.h
blob: f3110952f4a5aa20e6f81d64021090fbd4278522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
// -*-C++-*-

#ifndef VEC_DOUBLE_AVX_H
#define VEC_DOUBLE_AVX_H

#include "floatprops.h"
#include "mathfuncs.h"
#include "vec_base.h"

#include <cmath>

// AVX intrinsics
#include <immintrin.h>



namespace vecmathlib {
  
  template<> struct boolvec<double,4>;
  template<> struct intvec<double,4>;
  template<> struct realvec<double,4>;
  
  
  
  template<>
  struct boolvec<double,4>: floatprops<double>
  {
    static int const size = 4;
    typedef bool scalar_t;
    typedef __m256d bvector_t;
    
    static_assert(size * sizeof(real_t) == sizeof(bvector_t),
                  "vector size is wrong");
    
  private:
    // true values have the sign bit set, false values have it unset
    static uint_t from_bool(bool a) { return - uint_t(a); }
    static bool to_bool(uint_t a) { return int_t(a) < int_t(0); }
  public:
    
    typedef boolvec boolvec_t;
    typedef intvec<real_t, size> intvec_t;
    typedef realvec<real_t, size> realvec_t;
    
    // Short names for type casts
    typedef real_t R;
    typedef int_t I;
    typedef uint_t U;
    typedef realvec_t RV;
    typedef intvec_t IV;
    typedef boolvec_t BV;
    typedef floatprops<real_t> FP;
    typedef mathfuncs<realvec_t> MF;
    
    
    
    bvector_t v;
    
    boolvec() {}
    boolvec(boolvec const& x): v(x.v) {}
    boolvec& operator=(boolvec const& x) { return v=x.v, *this; }
    boolvec(bvector_t x): v(x) {}
    boolvec(bool a):
    v(_mm256_castsi256_pd(_mm256_set1_epi64x(from_bool(a)))) {}
    boolvec(bool const* as):
    v(_mm256_castsi256_pd(_mm256_set_epi64x(from_bool(as[3]),
                                            from_bool(as[2]),
                                            from_bool(as[1]),
                                            from_bool(as[0])))) {}
    
    operator bvector_t() const { return v; }
    bool operator[](int n) const { return to_bool(((uint_t const*)&v)[n]); }
    boolvec& set_elt(int n, bool a)
    {
      return ((int_t*)&v)[n] = from_bool(a), *this;
    }
    
    
    
    auto as_int() const -> intvec_t;      // defined after intvec
    auto convert_int() const -> intvec_t; // defined after intvec
    
    
    
    boolvec operator!() const { return _mm256_xor_pd(boolvec(true), v); }
    
    boolvec operator&&(boolvec x) const { return _mm256_and_pd(v, x.v); }
    boolvec operator||(boolvec x) const { return _mm256_or_pd(v, x.v); }
    boolvec operator==(boolvec x) const { return !(*this==x); }
    boolvec operator!=(boolvec x) const { return _mm256_xor_pd(v, x.v); }
    
    bool all() const
    {
      return (*this)[0] && (*this)[1] && (*this)[2] && (*this)[3];
    }
    bool any() const
    {
      return (*this)[0] || (*this)[1] || (*this)[2] || (*this)[3];
    }
    
    
    
    // ifthen(condition, then-value, else-value)
    auto ifthen(intvec_t x,
                intvec_t y) const -> intvec_t; // defined after intvec
    auto ifthen(realvec_t x,
                realvec_t y) const -> realvec_t; // defined after realvec
    
  };
  
  
  
  template<>
  struct intvec<double,4>: floatprops<double>
  {
    static int const size = 4;
    typedef int_t scalar_t;
    typedef __m256i ivector_t;
    
    static_assert(size * sizeof(real_t) == sizeof(ivector_t),
                  "vector size is wrong");
    
    typedef boolvec<real_t, size> boolvec_t;
    typedef intvec intvec_t;
    typedef realvec<real_t, size> realvec_t;
    
    // Short names for type casts
    typedef real_t R;
    typedef int_t I;
    typedef uint_t U;
    typedef realvec_t RV;
    typedef intvec_t IV;
    typedef boolvec_t BV;
    typedef floatprops<real_t> FP;
    typedef mathfuncs<realvec_t> MF;
    
    
    
    ivector_t v;
    
    intvec() {}
    intvec(intvec const& x): v(x.v) {}
    intvec& operator=(intvec const& x) { return v=x.v, *this; }
    intvec(ivector_t x): v(x) {}
    intvec(int_t a): v(_mm256_set1_epi64x(a)) {}
    intvec(int_t const* as): v(_mm256_set_epi64x(as[3], as[2], as[1], as[0])) {}
    
    operator ivector_t() const { return v; }
    int_t operator[](int n) const { return ((int_t const*)&v)[n]; }
    intvec& set_elt(int n, int_t a) { return ((int_t*)&v)[n]=a, *this; }
    
    
    
    auto as_bool() const -> boolvec_t { return _mm256_castsi256_pd(v); }
    auto convert_bool() const -> boolvec_t
    {
      // Result: convert_bool(0)=false, convert_bool(else)=true
      // There is no intrinsic to compare with zero. Instead, we check
      // whether x is positive and x-1 is negative.
      intvec x = *this;
      intvec xm1 = x - 1;
      // We know that boolvec values depend only on the sign bit
      // return (~xm1 | x).as_bool();
      return x.as_bool() || !xm1.as_bool();
    }
    auto as_float() const -> realvec_t; // defined after realvec
    auto convert_float() const -> realvec_t; // defined after realvec
    
    
    
    // Note: not all arithmetic operations are supported!
    
    intvec operator+() const { return *this; }
    intvec operator-() const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      v01 = _mm_sub_epi64(_mm_set1_epi64x(0), v01);
      v23 = _mm_sub_epi64(_mm_set1_epi64x(0), v23);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    
    intvec operator+(intvec x) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      __m128i xv01 = _mm256_castsi256_si128(x.v);
      __m128i xv23 = _mm256_extractf128_si256(x.v, 1);
      v01 = _mm_add_epi64(v01, xv01);
      v23 = _mm_add_epi64(v23, xv23);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec operator-(intvec x) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      __m128i xv01 = _mm256_castsi256_si128(x.v);
      __m128i xv23 = _mm256_extractf128_si256(x.v, 1);
      v01 = _mm_sub_epi64(v01, xv01);
      v23 = _mm_sub_epi64(v23, xv23);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    
    intvec& operator+=(intvec const& x) { return *this=*this+x; }
    intvec& operator-=(intvec const& x) { return *this=*this-x; }
    
    
    
    intvec operator~() const
    {
      return _mm256_castpd_si256(_mm256_xor_pd(_mm256_castsi256_pd(IV(~U(0))),
                                               _mm256_castsi256_pd(v)));
    }
    
    intvec operator&(intvec x) const
    {
      return _mm256_castpd_si256(_mm256_and_pd(_mm256_castsi256_pd(v),
                                               _mm256_castsi256_pd(x.v)));
    }
    intvec operator|(intvec x) const
    {
      return _mm256_castpd_si256(_mm256_or_pd(_mm256_castsi256_pd(v),
                                              _mm256_castsi256_pd(x.v)));
    }
    intvec operator^(intvec x) const
    {
      return _mm256_castpd_si256(_mm256_xor_pd(_mm256_castsi256_pd(v),
                                               _mm256_castsi256_pd(x.v)));
    }
    
    intvec& operator&=(intvec const& x) { return *this=*this&x; }
    intvec& operator|=(intvec const& x) { return *this=*this|x; }
    intvec& operator^=(intvec const& x) { return *this=*this^x; }
    
    
    
    // SSE2 shift instructions potentially relevant for 64-bit
    // operations:
    //    _mm_slli_epi64
    //    _mm_srli_epi64
    //    _mm_sll_epi64
    //    _mm_srl_epi64
    //    _mm_srai_epi32
    //    _mm_sra_epi32
    //    _mm_srli_si128
    //    _mm_slli_si128
    intvec lsr(int_t n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      v01 = _mm_srli_epi64(v01, n);
      v23 = _mm_srli_epi64(v23, n);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec operator>>(int_t n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      // There is no _mm_srai_epi64. To emulate it, add 0x8000000
      // before shifting, and subtracted the shifted 0x80000000 after shifting
#if 0
      __m128i signmask01 = _mm_sub_epi64(_mm_set1_epi64x(0),
                                         _mm_srli_epi64(v01, 63));
      __m128i signmask23 = _mm_sub_epi64(_mm_set1_epi64x(0),
                                         _mm_srli_epi64(v23, 63));
      v01 = _mm_xor_si128(signmask01, v01);
      v23 = _mm_xor_si128(signmask23, v23);
      v01 = _mm_srli_epi64(v01, n);
      v23 = _mm_srli_epi64(v23, n);
      v01 = _mm_xor_si128(signmask01, v01);
      v23 = _mm_xor_si128(signmask23, v23);
#else
      // Convert signed to unsiged
      v01 += _mm_set1_epi64x(U(1) << (bits-1));
      v23 += _mm_set1_epi64x(U(1) << (bits-1));
      // Shift
      v01 = _mm_srli_epi64(v01, n);
      v23 = _mm_srli_epi64(v23, n);
      // Undo conversion
      v01 -= _mm_set1_epi64x(U(1) << (bits-n));
      v23 -= _mm_set1_epi64x(U(1) << (bits-n));
#endif
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec operator<<(int_t n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      v01 = _mm_slli_epi64(v01, n);
      v23 = _mm_slli_epi64(v23, n);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec& operator>>=(int_t n) { return *this=*this>>n; }
    intvec& operator<<=(int_t n) { return *this=*this<<n; }
    
    intvec lsr(intvec n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      __m128i nv01 = _mm256_castsi256_si128(n.v);
      __m128i nv23 = _mm256_extractf128_si256(n.v, 1);
      v01 = _mm_srl_epi64(v01, nv01);
      v23 = _mm_srl_epi64(v23, nv23);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec operator>>(intvec n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      __m128i nv01 = _mm256_castsi256_si128(n.v);
      __m128i nv23 = _mm256_extractf128_si256(n.v, 1);
#if 0
      // There is no _mm_srai_epi64. To emulate it, invert all bits
      // before and after shifting if the sign bit is set.
      __m128i signmask01 = _mm_sub_epi64(_mm_set1_epi64x(0),
                                         _mm_srli_epi64(v01, 63));
      __m128i signmask23 = _mm_sub_epi64(_mm_set1_epi64x(0),
                                         _mm_srli_epi64(v23, 63));
      v01 = _mm_xor_si128(signmask01, v01);
      v23 = _mm_xor_si128(signmask23, v23);
      v01 = _mm_srl_epi64(v01, nv01);
      v23 = _mm_srl_epi64(v23, nv23);
      v01 = _mm_xor_si128(signmask01, v01);
      v23 = _mm_xor_si128(signmask23, v23);
#else
      // Convert signed to unsiged
      v01 += _mm_set1_epi64x(U(1) << (bits-1));
      v23 += _mm_set1_epi64x(U(1) << (bits-1));
      // Shift
      v01 = _mm_srl_epi64(v01, nv01);
      v23 = _mm_srl_epi64(v23, nv23);
      // Undo conversion
      v01 -= _mm_sll_epi64(_mm_set1_epi64x(1),
                           _mm_sub_epi64(_mm_set1_epi64x(bits), nv01));
      v23 -= _mm_sll_epi64(_mm_set1_epi64x(1),
                           _mm_sub_epi64(_mm_set1_epi64x(bits), nv23));
#endif
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec operator<<(intvec n) const
    {
      __m128i v01 = _mm256_castsi256_si128(v);
      __m128i v23 = _mm256_extractf128_si256(v, 1);
      __m128i nv01 = _mm256_castsi256_si128(n.v);
      __m128i nv23 = _mm256_extractf128_si256(n.v, 1);
      v01 = _mm_sll_epi64(v01, nv01);
      v23 = _mm_sll_epi64(v23, nv23);
      return _mm256_insertf128_si256(_mm256_castsi128_si256(v01), v23, 1);
    }
    intvec& operator>>=(intvec n) { return *this=*this>>n; }
    intvec& operator<<=(intvec n) { return *this=*this<<n; }
  };
  
  
  
  template<>
  struct realvec<double,4>: floatprops<double>
  {
    static int const size = 4;
    typedef real_t scalar_t;
    typedef __m256d vector_t;
    
    static constexpr char const* const name = "<AVX:4*double>";
    inline void barrier() { asm("": "+x" (v)); }
    
    static_assert(size * sizeof(real_t) == sizeof(vector_t),
                  "vector size is wrong");
    
    typedef boolvec<real_t, size> boolvec_t;
    typedef intvec<real_t, size> intvec_t;
    typedef realvec realvec_t;
    
    // Short names for type casts
    typedef real_t R;
    typedef int_t I;
    typedef uint_t U;
    typedef realvec_t RV;
    typedef intvec_t IV;
    typedef boolvec_t BV;
    typedef floatprops<real_t> FP;
    typedef mathfuncs<realvec_t> MF;
    
    
    
    vector_t v;
    
    realvec() {}
    realvec(realvec const& x): v(x.v) {}
    realvec& operator=(realvec const& x) { return v=x.v, *this; }
    realvec(vector_t x): v(x) {}
    realvec(real_t a): v(_mm256_set1_pd(a)) {}
    realvec(real_t const* as): v(_mm256_set_pd(as[3], as[2], as[1], as[0])) {}
    
    operator vector_t() const { return v; }
    real_t operator[](int n) const { return ((real_t const*)&v)[n]; }
    realvec& set_elt(int n, real_t a) { return ((real_t*)&v)[n]=a, *this; }
    
    
    
    intvec_t as_int() const { return _mm256_castpd_si256(v); }
    intvec_t convert_int() const { return MF::vml_convert_int(*this); }
    
    
    
    realvec operator+() const { return *this; }
    realvec operator-() const { return _mm256_sub_pd(_mm256_set1_pd(0.0), v); }
    
    realvec operator+(realvec x) const { return _mm256_add_pd(v, x.v); }
    realvec operator-(realvec x) const { return _mm256_sub_pd(v, x.v); }
    realvec operator*(realvec x) const { return _mm256_mul_pd(v, x.v); }
    realvec operator/(realvec x) const { return _mm256_div_pd(v, x.v); }
    
    realvec& operator+=(realvec const& x) { return *this=*this+x; }
    realvec& operator-=(realvec const& x) { return *this=*this-x; }
    realvec& operator*=(realvec const& x) { return *this=*this*x; }
    realvec& operator/=(realvec const& x) { return *this=*this/x; }
    
    real_t prod() const
    {
      return (*this)[0] * (*this)[1] * (*this)[2] * (*this)[3];
    }
    real_t sum() const
    {
      return (*this)[0] + (*this)[1] + (*this)[2] + (*this)[3];
    }
    
    
    
    boolvec_t operator==(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_EQ_OQ);
    }
    boolvec_t operator!=(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_NEQ_OQ);
    }
    boolvec_t operator<(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_LT_OQ);
    }
    boolvec_t operator<=(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_LE_OQ);
    }
    boolvec_t operator>(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_GT_OQ);
    }
    boolvec_t operator>=(realvec const& x) const
    {
      return _mm256_cmp_pd(v, x.v, _CMP_GE_OQ);
    }
    
    
    
    realvec acos() const { return MF::vml_acos(*this); }
    realvec acosh() const { return MF::vml_acosh(*this); }
    realvec asin() const { return MF::vml_asin(*this); }
    realvec asinh() const { return MF::vml_asinh(*this); }
    realvec atan() const { return MF::vml_atan(*this); }
    realvec atanh() const { return MF::vml_atanh(*this); }
    realvec ceil() const { return _mm256_ceil_pd(v); }
    realvec copysign(realvec y) const { return MF::vml_copysign(*this, y); }
    realvec cos() const { return MF::vml_cos(*this); }
    realvec cosh() const { return MF::vml_cosh(*this); }
    realvec exp() const { return MF::vml_exp(*this); }
    realvec exp10() const { return MF::vml_exp10(*this); }
    realvec exp2() const { return MF::vml_exp2(*this); }
    realvec expm1() const { return MF::vml_expm1(*this); }
    realvec fabs() const { return MF::vml_fabs(*this); }
    realvec floor() const { return _mm256_floor_pd(v); }
    realvec fmod(realvec y) const { return MF::vml_fmod(*this, y); }
    intvec_t ilogb() const { return MF::vml_ilogb(*this); }
    realvec log() const { return MF::vml_log(*this); }
    realvec log10() const { return MF::vml_log10(*this); }
    realvec log1p() const { return MF::vml_log1p(*this); }
    realvec log2() const { return MF::vml_log2(*this); }
    realvec pow(realvec y) const { return MF::vml_pow(*this, y); }
    realvec rcp() const { return _mm256_div_pd(_mm256_set1_pd(1.0), v); }
    realvec remainder(realvec y) const { return MF::vml_remainder(*this, y); }
    realvec round() const { return _mm256_round_pd(v, _MM_FROUND_NINT); }
    realvec rsqrt() const { return MF::vml_rsqrt(*this); }
    realvec scalbn(intvec_t n) const { return MF::vml_scalbn(*this, n); }
    boolvec_t signbit() const { return v; }
    realvec sin() const { return MF::vml_sin(*this); }
    realvec sinh() const { return MF::vml_sinh(*this); }
    realvec sqrt() const { return _mm256_sqrt_pd(v); }
    realvec tan() const { return MF::vml_tan(*this); }
    realvec tanh() const { return MF::vml_tanh(*this); }
  };
  
  
  
  // boolvec definitions
  
  inline
  auto boolvec<double,4>::as_int() const -> intvec_t
  {
    return _mm256_castpd_si256(v);
  }
  
  inline
  auto boolvec<double,4>::convert_int() const -> intvec_t
  {
    //return ifthen(v, U(1), U(0));
    return lsr(as_int(), bits-1);
  }
  
  inline
  auto boolvec<double,4>::ifthen(intvec_t x, intvec_t y) const -> intvec_t
  {
    return ifthen(x.as_float(), y.as_float()).as_int();
  }
  
  inline
  auto boolvec<double,4>::ifthen(realvec_t x, realvec_t y) const -> realvec_t
  {
    return _mm256_blendv_pd(y.v, x.v, v);
  }

  
  
  // intvec definitions
  
  inline auto intvec<double,4>::as_float() const -> realvec_t
  {
    return _mm256_castsi256_pd(v);
  }
  
  inline auto intvec<double,4>::convert_float() const -> realvec_t
  {
    return MF::vml_convert_float(*this);
  }
  
} // namespace vecmathlib

#endif  // #ifndef VEC_DOUBLE_AVX_H
OpenPOWER on IntegriCloud