summaryrefslogtreecommitdiffstats
path: root/vec_test.h
blob: c27b75e60b4c17dac125cad8a2fc76945958c876 (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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
// -*-C++-*-

#ifndef VEC_TEST_H
#define VEC_TEST_H

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

#include <cmath>
#ifndef VML_NO_IOSTREAM
#include <sstream>
#endif

namespace vecmathlib {

template <typename T, int N> struct booltestvec;
template <typename T, int N> struct inttestvec;
template <typename T, int N> struct realtestvec;

template <typename T, int N> struct booltestvec : floatprops<T> {
  typedef typename floatprops<T>::int_t int_t;
  typedef typename floatprops<T>::uint_t uint_t;
  typedef typename floatprops<T>::real_t real_t;

  static int const size = N;
  typedef bool scalar_t;
  typedef bool bvector_t[size];
  static int const alignment = sizeof(bool);

  typedef booltestvec boolvec_t;
  typedef inttestvec<real_t, size> intvec_t;
  typedef realtestvec<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;

  booltestvec() {}
  // can't have a non-trivial copy constructor; if so, objects won't
  // be passed in registers
  // booltestvec(booltestvec const& x): v(x.v) {}
  // booltestvec& operator=(booltestvec const& x) { return v=x.v, *this; }
  // booltestvec(vector_t x): v(x) {}
  booltestvec(bool a) {
    for (int d = 0; d < size; ++d)
      v[d] = a;
  }
  booltestvec(bool const *as) {
    for (int d = 0; d < size; ++d)
      v[d] = as[d];
  }

  bool operator[](int n) const { return v[n]; }
  boolvec_t &set_elt(int n, bool a) { return v[n] = a, *this; }

  intvec_t as_int() const;      // defined after inttestvec
  intvec_t convert_int() const; // defined after inttestvec

  boolvec_t operator!() const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = !v[d];
    return res;
  }

  boolvec_t operator&&(boolvec_t x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] && x.v[d];
    return res;
  }
  boolvec_t operator||(boolvec_t x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] || x.v[d];
    return res;
  }
  boolvec_t operator==(boolvec_t x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] == x.v[d];
    return res;
  }
  boolvec_t operator!=(boolvec_t x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] != x.v[d];
    return res;
  }

  bool all() const {
    bool res = v[0];
    for (int d = 1; d < size; ++d)
      res = res && v[d];
    return res;
  }
  bool any() const {
    bool res = v[0];
    for (int d = 1; d < size; ++d)
      res = res || v[d];
    return res;
  }

  // ifthen(condition, then-value, else-value)
  boolvec_t ifthen(boolvec_t x, boolvec_t y) const;
  intvec_t ifthen(intvec_t x, intvec_t y) const;    // defined after inttestvec
  realvec_t ifthen(realvec_t x, realvec_t y) const; // defined after realtestvec
};

template <typename T, int N> struct inttestvec : floatprops<T> {
  typedef typename floatprops<T>::int_t int_t;
  typedef typename floatprops<T>::uint_t uint_t;
  typedef typename floatprops<T>::real_t real_t;

  static int const size = N;
  typedef int_t scalar_t;
  typedef int_t ivector_t[size];
  static int const alignment = sizeof(int_t);

  typedef booltestvec<real_t, size> boolvec_t;
  typedef inttestvec intvec_t;
  typedef realtestvec<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;

  inttestvec() {}
  // can't have a non-trivial copy constructor; if so, objects won't
  // be passed in registers
  // inttestvec(inttestvec const& x): v(x.v) {}
  // inttestvec& operator=(inttestvec const& x) { return v=x.v, *this; }
  // inttestvec(vector_t x): v(x) {}
  inttestvec(int_t a) {
    for (int d = 0; d < size; ++d)
      v[d] = a;
  }
  inttestvec(int_t const *as) {
    for (int d = 0; d < size; ++d)
      v[d] = as[d];
  }
  static intvec_t iota() {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = d;
    return res;
  }

  int_t operator[](int n) const { return v[n]; }
  intvec_t &set_elt(int n, int_t a) { return v[n] = a, *this; }

  boolvec_t as_bool() const { return convert_bool(); }
  boolvec_t convert_bool() const {
    // result: convert_bool(0)=false, convert_bool(else)=true
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d];
    return res;
  }
  realvec_t as_float() const;      // defined after realtestvec
  realvec_t convert_float() const; // defined after realtestvec

  intvec_t operator+() const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = +v[d];
    return res;
  }
  intvec_t operator-() const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = -v[d];
    return res;
  }

  intvec_t &operator+=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] += x.v[d];
    return *this;
  }
  intvec_t &operator-=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] -= x.v[d];
    return *this;
  }
  intvec_t &operator*=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] *= x.v[d];
    return *this;
  }
  intvec_t &operator/=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] /= x.v[d];
    return *this;
  }
  intvec_t &operator%=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] %= x.v[d];
    return *this;
  }

  intvec_t operator+(intvec_t x) const {
    intvec_t res = *this;
    return res += x;
  }
  intvec_t operator-(intvec_t x) const {
    intvec_t res = *this;
    return res -= x;
  }
  intvec_t operator*(intvec_t x) const {
    intvec_t res = *this;
    return res *= x;
  }
  intvec_t operator/(intvec_t x) const {
    intvec_t res = *this;
    return res /= x;
  }
  intvec_t operator%(intvec_t x) const {
    intvec_t res = *this;
    return res %= x;
  }

  intvec_t operator~() const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = ~v[d];
    return res;
  }

  intvec_t &operator&=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] &= x.v[d];
    return *this;
  }
  intvec_t &operator|=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] |= x.v[d];
    return *this;
  }
  intvec_t &operator^=(intvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] ^= x.v[d];
    return *this;
  }

  intvec_t operator&(intvec_t x) const {
    intvec_t res = *this;
    return res &= x;
  }
  intvec_t operator|(intvec_t x) const {
    intvec_t res = *this;
    return res |= x;
  }
  intvec_t operator^(intvec_t x) const {
    intvec_t res = *this;
    return res ^= x;
  }

  intvec_t bitifthen(intvec_t x, intvec_t y) const {
    return MF::vml_bitifthen(*this, x, y);
  }

  intvec_t lsr(int_t n) const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = I(U(v[d]) >> U(n));
    return res;
  }
  intvec_t rotate(int_t n) const { return MF::vml_rotate(*this, n); }
  intvec_t &operator>>=(int_t n) {
    for (int d = 0; d < size; ++d)
      v[d] >>= n;
    return *this;
  }
  intvec_t &operator<<=(int_t n) {
    for (int d = 0; d < size; ++d)
      v[d] <<= n;
    return *this;
  }
  intvec_t operator>>(int_t n) const {
    intvec_t res = *this;
    return res >>= n;
  }
  intvec_t operator<<(int_t n) const {
    intvec_t res = *this;
    return res <<= n;
  }

  intvec_t lsr(intvec_t n) const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = I(U(v[d]) >> U(n.v[d]));
    return res;
  }
  intvec_t rotate(intvec_t n) const { return MF::vml_rotate(*this, n); }
  intvec_t &operator>>=(intvec_t n) {
    for (int d = 0; d < size; ++d)
      v[d] >>= n.v[d];
    return *this;
  }
  intvec_t &operator<<=(intvec_t n) {
    for (int d = 0; d < size; ++d)
      v[d] <<= n.v[d];
    return *this;
  }
  intvec_t operator>>(intvec_t n) const {
    intvec_t res = *this;
    return res >>= n;
  }
  intvec_t operator<<(intvec_t n) const {
    intvec_t res = *this;
    return res <<= n;
  }

  intvec_t clz() const { return MF::vml_clz(*this); }
  intvec_t popcount() const { return MF::vml_popcount(*this); }

  boolvec_t operator==(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] == x.v[d];
    return res;
  }
  boolvec_t operator!=(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] != x.v[d];
    return res;
  }
  boolvec_t operator<(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] < x.v[d];
    return res;
  }
  boolvec_t operator<=(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] <= x.v[d];
    return res;
  }
  boolvec_t operator>(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] > x.v[d];
    return res;
  }
  boolvec_t operator>=(intvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] >= x.v[d];
    return res;
  }

  intvec_t abs() const { return MF::vml_abs(*this); }
  boolvec_t isignbit() const { return MF::vml_isignbit(*this); }
  intvec_t max(intvec_t x) const { return MF::vml_max(*this, x); }
  intvec_t min(intvec_t x) const { return MF::vml_min(*this, x); }
};

template <typename T, int N> struct realtestvec : floatprops<T> {
  typedef typename floatprops<T>::int_t int_t;
  typedef typename floatprops<T>::uint_t uint_t;
  typedef typename floatprops<T>::real_t real_t;

  static int const size = N;
  typedef real_t scalar_t;
  typedef real_t vector_t[size];
  static int const alignment = sizeof(real_t);

#ifndef VML_NO_IOSTREAM
  static char const *name() {
    static std::string name_;
    if (name_.empty()) {
      std::stringstream buf;
      buf << "<VML:" << N << "*" << FP::name() << ">";
      name_ = buf.str();
    }
    return name_.c_str();
  }
#endif
  void barrier() {
#if defined __GNUC__ && !defined __clang__ && !defined __ICC
// GCC crashes when +X is used as constraint
#if defined __SSE2__
    for (int d = 0; d < size; ++d)
      __asm__("" : "+x"(v[d]));
#elif defined __PPC64__ // maybe also __PPC__
    for (int d = 0; d < size; ++d)
      __asm__("" : "+f"(v[d]));
#elif defined __arm__
    for (int d = 0; d < size; ++d)
      __asm__("" : "+w"(v[d]));
#else
#error "Floating point barrier undefined on this architecture"
#endif
#elif defined __clang__
    for (int d = 0; d < size; ++d)
      __asm__("" : "+X"(v[d]));
#elif defined __ICC
    for (int d = 0; d < size; ++d) {
      real_t tmp = v[d];
      __asm__("" : "+X"(tmp));
      v[d] = tmp;
    }
#elif defined __IBMCPP__
    for (int d = 0; d < size; ++d)
      __asm__("" : "+f"(v[d]));
#else
#error "Floating point barrier undefined on this architecture"
#endif
  }

  typedef booltestvec<real_t, size> boolvec_t;
  typedef inttestvec<real_t, size> intvec_t;
  typedef realtestvec 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;

  realtestvec() {}
  // can't have a non-trivial copy constructor; if so, objects won't
  // be passed in registers
  // realtestvec(realtestvec const& x): v(x.v) {}
  // realtestvec& operator=(realtestvec const& x) { return v=x.v, *this; }
  // realtestvec(vector_t x): v(x) {}
  realtestvec(real_t a) {
    for (int d = 0; d < size; ++d)
      v[d] = a;
  }
  realtestvec(real_t const *as) {
    for (int d = 0; d < size; ++d)
      v[d] = as[d];
  }

  real_t operator[](int n) const { return v[n]; }
  realvec_t &set_elt(int n, real_t a) { return v[n] = a, *this; }

  typedef vecmathlib::mask_t<realvec_t> mask_t;

  static realvec_t loada(real_t const *p) {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    return loadu(p);
  }
  static realvec_t loadu(real_t const *p) {
    realvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = p[d];
    return res;
  }
  static realvec_t loadu(real_t const *p, size_t ioff) {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    return loadu(p + ioff);
  }
  realvec_t loada(real_t const *p, mask_t const &m) const {
    return m.m.ifthen(loada(p), *this);
  }
  realvec_t loadu(real_t const *p, mask_t const &m) const {
    return m.m.ifthen(loadu(p), *this);
  }
  realvec_t loadu(real_t const *p, size_t ioff, mask_t const &m) const {
    return m.m.ifthen(loadu(p, ioff), *this);
  }

  void storea(real_t *p) const {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    storeu(p);
  }
  void storeu(real_t *p) const {
    for (int d = 0; d < size; ++d)
      p[d] = v[d];
  }
  void storeu(real_t *p, size_t ioff) const {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    storeu(p + ioff);
  }
  void storea(real_t *p, mask_t const &m) const {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    storeu(p, m);
  }
  void storeu(real_t *p, mask_t const &m) const {
    for (int d = 0; d < size; ++d)
      if (m.m[d])
        p[d] = v[d];
  }
  void storeu(real_t *p, size_t ioff, mask_t const &m) const {
    VML_ASSERT(intptr_t(p) % alignment == 0);
    storeu(p + ioff, m);
  }

  intvec_t as_int() const {
    intvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = FP::as_int(v[d]);
    return res;
  }
  intvec_t convert_int() const { return MF::vml_convert_int(*this); }

  realvec_t operator+() const {
    realvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = +v[d];
    return res;
  }
  realvec_t operator-() const {
    realvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = -v[d];
    return res;
  }

  realvec_t &operator+=(realvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] += x.v[d];
    return *this;
  }
  realvec_t &operator-=(realvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] -= x.v[d];
    return *this;
  }
  realvec_t &operator*=(realvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] *= x.v[d];
    return *this;
  }
  realvec_t &operator/=(realvec_t const &x) {
    for (int d = 0; d < size; ++d)
      v[d] /= x.v[d];
    return *this;
  }

  realvec_t operator+(realvec_t x) const {
    realvec_t res = *this;
    return res += x;
  }
  realvec_t operator-(realvec_t x) const {
    realvec_t res = *this;
    return res -= x;
  }
  realvec_t operator*(realvec_t x) const {
    realvec_t res = *this;
    return res *= x;
  }
  realvec_t operator/(realvec_t x) const {
    realvec_t res = *this;
    return res /= x;
  }

  real_t maxval() const {
    real_t res = v[0];
    for (int d = 1; d < size; ++d)
      res = vml_std::fmax(res, v[d]);
    return res;
  }
  real_t minval() const {
    real_t res = v[0];
    for (int d = 1; d < size; ++d)
      res = vml_std::fmin(res, v[d]);
    return res;
  }
  real_t prod() const {
    real_t res = v[0];
    for (int d = 1; d < size; ++d)
      res *= v[d];
    return res;
  }
  real_t sum() const {
    real_t res = v[0];
    for (int d = 1; d < size; ++d)
      res += v[d];
    return res;
  }

  boolvec_t operator==(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] == x.v[d];
    return res;
  }
  boolvec_t operator!=(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] != x.v[d];
    return res;
  }
  boolvec_t operator<(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] < x.v[d];
    return res;
  }
  boolvec_t operator<=(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] <= x.v[d];
    return res;
  }
  boolvec_t operator>(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] > x.v[d];
    return res;
  }
  boolvec_t operator>=(realvec_t const &x) const {
    boolvec_t res;
    for (int d = 0; d < size; ++d)
      res.v[d] = v[d] >= x.v[d];
    return res;
  }

  realvec_t acos() const { return MF::vml_acos(*this); }
  realvec_t acosh() const { return MF::vml_acosh(*this); }
  realvec_t asin() const { return MF::vml_asin(*this); }
  realvec_t asinh() const { return MF::vml_asinh(*this); }
  realvec_t atan() const { return MF::vml_atan(*this); }
  realvec_t atan2(realvec_t y) const { return MF::vml_atan2(*this, y); }
  realvec_t atanh() const { return MF::vml_atanh(*this); }
  realvec_t cbrt() const { return MF::vml_cbrt(*this); }
  realvec_t ceil() const { return MF::vml_ceil(*this); }
  realvec_t copysign(realvec_t y) const { return MF::vml_copysign(*this, y); }
  realvec_t cos() const { return MF::vml_cos(*this); }
  realvec_t cosh() const { return MF::vml_cosh(*this); }
  realvec_t exp() const { return MF::vml_exp(*this); }
  realvec_t exp10() const { return MF::vml_exp10(*this); }
  realvec_t exp2() const { return MF::vml_exp2(*this); }
  realvec_t expm1() const { return MF::vml_expm1(*this); }
  realvec_t fabs() const { return MF::vml_fabs(*this); }
  realvec_t fdim(realvec_t y) const { return MF::vml_fdim(*this, y); }
  realvec_t floor() const { return MF::vml_floor(*this); }
  realvec_t fma(realvec_t y, realvec_t z) const {
    return MF::vml_fma(*this, y, z);
  }
  realvec_t fmax(realvec_t y) const { return MF::vml_fmax(*this, y); }
  realvec_t fmin(realvec_t y) const { return MF::vml_fmin(*this, y); }
  realvec_t fmod(realvec_t y) const { return MF::vml_fmod(*this, y); }
  realvec_t frexp(intvec_t *r) const { return MF::vml_frexp(*this, r); }
  realvec_t hypot(realvec_t y) const { return MF::vml_hypot(*this, y); }
  intvec_t ilogb() const { return MF::vml_ilogb(*this); }
  boolvec_t isfinite() const { return MF::vml_isfinite(*this); }
  boolvec_t isinf() const { return MF::vml_isinf(*this); }
  boolvec_t isnan() const { return MF::vml_isnan(*this); }
  boolvec_t isnormal() const { return MF::vml_isnormal(*this); }
  realvec_t ldexp(int_t n) const { return MF::vml_ldexp(*this, n); }
  realvec_t ldexp(intvec_t n) const { return MF::vml_ldexp(*this, n); }
  realvec_t log() const { return MF::vml_log(*this); }
  realvec_t log10() const { return MF::vml_log10(*this); }
  realvec_t log1p() const { return MF::vml_log1p(*this); }
  realvec_t log2() const { return MF::vml_log2(*this); }
  intvec_t lrint() const { return MF::vml_lrint(*this); }
  realvec_t mad(realvec_t y, realvec_t z) const {
    return MF::vml_mad(*this, y, z);
  }
  realvec_t nextafter(realvec_t y) const { return MF::vml_nextafter(*this, y); }
  realvec_t pow(realvec_t y) const { return MF::vml_pow(*this, y); }
  realvec_t rcp() const { return MF::vml_rcp(*this); }
  realvec_t remainder(realvec_t y) const { return MF::vml_remainder(*this, y); }
  realvec_t rint() const { return MF::vml_rint(*this); }
  realvec_t round() const { return MF::vml_round(*this); }
  realvec_t rsqrt() const { return MF::vml_rsqrt(*this); }
  boolvec_t signbit() const { return MF::vml_signbit(*this); }
  realvec_t sin() const { return MF::vml_sin(*this); }
  realvec_t sinh() const { return MF::vml_sinh(*this); }
  realvec_t sqrt() const { return MF::vml_sqrt(*this); }
  realvec_t tan() const { return MF::vml_tan(*this); }
  realvec_t tanh() const { return MF::vml_tanh(*this); }
  realvec_t trunc() const { return MF::vml_trunc(*this); }
};

// booltestvec definitions

template <typename T, int N>
inline typename booltestvec<T, N>::intvec_t booltestvec<T, N>::as_int() const {
  return convert_int();
}

template <typename T, int N>
inline typename booltestvec<T, N>::intvec_t
booltestvec<T, N>::convert_int() const {
  intvec_t res;
  for (int d = 0; d < size; ++d)
    res.v[d] = v[d];
  return res;
}

template <typename T, int N>
inline typename booltestvec<T, N>::boolvec_t
booltestvec<T, N>::ifthen(boolvec_t x, boolvec_t y) const {
  boolvec_t res;
  for (int d = 0; d < size; ++d)
    res.v[d] = v[d] ? x.v[d] : y.v[d];
  return res;
}

template <typename T, int N>
inline typename booltestvec<T, N>::intvec_t
booltestvec<T, N>::ifthen(intvec_t x, intvec_t y) const {
  intvec_t res;
  for (int d = 0; d < size; ++d)
    res.v[d] = v[d] ? x.v[d] : y.v[d];
  return res;
}

template <typename T, int N>
inline typename booltestvec<T, N>::realvec_t
booltestvec<T, N>::ifthen(realvec_t x, realvec_t y) const {
  realvec_t res;
  for (int d = 0; d < size; ++d)
    res.v[d] = v[d] ? x.v[d] : y.v[d];
  return res;
}

// inttestvec definitions

template <typename T, int N>
inline typename inttestvec<T, N>::realvec_t inttestvec<T, N>::as_float() const {
  realvec_t res;
  for (int d = 0; d < size; ++d)
    res.v[d] = FP::as_float(v[d]);
  return res;
}

template <typename T, int N>
inline typename inttestvec<T, N>::realvec_t
inttestvec<T, N>::convert_float() const {
  return MF::vml_convert_float(*this);
}

// Wrappers

// booltestvec wrappers

template <typename real_t, int size>
inline inttestvec<real_t, size> as_int(booltestvec<real_t, size> x) {
  return x.as_int();
}

template <typename real_t, int size>
inline inttestvec<real_t, size> convert_int(booltestvec<real_t, size> x) {
  return x.convert_int();
}

template <typename real_t, int size>
inline bool all(booltestvec<real_t, size> x) {
  return x.all();
}

template <typename real_t, int size>
inline bool any(booltestvec<real_t, size> x) {
  return x.any();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> ifthen(booltestvec<real_t, size> c,
                                        booltestvec<real_t, size> x,
                                        booltestvec<real_t, size> y) {
  return c.ifthen(x, y);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> ifthen(booltestvec<real_t, size> c,
                                       inttestvec<real_t, size> x,
                                       inttestvec<real_t, size> y) {
  return c.ifthen(x, y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> ifthen(booltestvec<real_t, size> c,
                                        realtestvec<real_t, size> x,
                                        realtestvec<real_t, size> y) {
  return c.ifthen(x, y);
}

// inttestvec wrappers

template <typename real_t, int size>
inline inttestvec<real_t, size> abs(inttestvec<real_t, size> x) {
  return x.abs();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> as_bool(inttestvec<real_t, size> x) {
  return x.as_bool();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> as_float(inttestvec<real_t, size> x) {
  return x.as_float();
}

template <typename real_t, int size>
inline inttestvec<real_t, size> bitifthen(inttestvec<real_t, size> x,
                                          inttestvec<real_t, size> y,
                                          inttestvec<real_t, size> z) {
  return x.bitifthen(y, z);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> clz(inttestvec<real_t, size> x) {
  return x.clz();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> convert_bool(inttestvec<real_t, size> x) {
  return x.convert_bool();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> convert_float(inttestvec<real_t, size> x) {
  return x.convert_float();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> isignbit(inttestvec<real_t, size> x) {
  return x.isignbit();
}

template <typename real_t, int size>
inline inttestvec<real_t, size>
lsr(inttestvec<real_t, size> x, typename inttestvec<real_t, size>::int_t n) {
  return x.lsr(n);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> lsr(inttestvec<real_t, size> x,
                                    inttestvec<real_t, size> n) {
  return x.lsr(n);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> max(inttestvec<real_t, size> x,
                                    inttestvec<real_t, size> y) {
  return x.max(y);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> min(inttestvec<real_t, size> x,
                                    inttestvec<real_t, size> y) {
  return x.min(y);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> popcount(inttestvec<real_t, size> x) {
  return x.popcount();
}

template <typename real_t, int size>
inline inttestvec<real_t, size>
rotate(inttestvec<real_t, size> x, typename inttestvec<real_t, size>::int_t n) {
  return x.rotate(n);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> rotate(inttestvec<real_t, size> x,
                                       inttestvec<real_t, size> n) {
  return x.rotate(n);
}

// realtestvec wrappers

template <typename real_t, int size>
inline realtestvec<real_t, size>
loada(real_t const *p, realtestvec<real_t, size> x,
      typename realtestvec<real_t, size>::mask_t const &m) {
  return x.loada(p, m);
}

template <typename real_t, int size>
inline realtestvec<real_t, size>
loadu(real_t const *p, realtestvec<real_t, size> x,
      typename realtestvec<real_t, size>::mask_t const &m) {
  return x.loadu(p, m);
}

template <typename real_t, int size>
inline realtestvec<real_t, size>
loadu(real_t const *p, size_t ioff, realtestvec<real_t, size> x,
      typename realtestvec<real_t, size>::mask_t const &m) {
  return x.loadu(p, ioff, m);
}

template <typename real_t, int size>
inline void storea(realtestvec<real_t, size> x, real_t *p) {
  return x.storea(p);
}

template <typename real_t, int size>
inline void storeu(realtestvec<real_t, size> x, real_t *p) {
  return x.storeu(p);
}

template <typename real_t, int size>
inline void storeu(realtestvec<real_t, size> x, real_t *p, size_t ioff) {
  return x.storeu(p, ioff);
}

template <typename real_t, int size>
inline void storea(realtestvec<real_t, size> x, real_t *p,
                   typename realtestvec<real_t, size>::mask_t const &m) {
  return x.storea(p, m);
}

template <typename real_t, int size>
inline void storeu(realtestvec<real_t, size> x, real_t *p,
                   typename realtestvec<real_t, size>::mask_t const &m) {
  return x.storeu(p, m);
}

template <typename real_t, int size>
inline void storeu(realtestvec<real_t, size> x, real_t *p, size_t ioff,
                   typename realtestvec<real_t, size>::mask_t const &m) {
  return x.storeu(p, ioff, m);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> as_int(realtestvec<real_t, size> x) {
  return x.as_int();
}

template <typename real_t, int size>
inline inttestvec<real_t, size> convert_int(realtestvec<real_t, size> x) {
  return x.convert_int();
}

template <typename real_t, int size>
inline real_t maxval(realtestvec<real_t, size> x) {
  return x.maxval();
}

template <typename real_t, int size>
inline real_t minval(realtestvec<real_t, size> x) {
  return x.minval();
}

template <typename real_t, int size>
inline real_t prod(realtestvec<real_t, size> x) {
  return x.prod();
}

template <typename real_t, int size>
inline real_t sum(realtestvec<real_t, size> x) {
  return x.sum();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> acos(realtestvec<real_t, size> x) {
  return x.acos();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> acosh(realtestvec<real_t, size> x) {
  return x.acosh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> asin(realtestvec<real_t, size> x) {
  return x.asin();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> asinh(realtestvec<real_t, size> x) {
  return x.asinh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> atan(realtestvec<real_t, size> x) {
  return x.atan();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> atan2(realtestvec<real_t, size> x,
                                       realtestvec<real_t, size> y) {
  return x.atan2(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> atanh(realtestvec<real_t, size> x) {
  return x.atanh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> cbrt(realtestvec<real_t, size> x) {
  return x.cbrt();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> ceil(realtestvec<real_t, size> x) {
  return x.ceil();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> copysign(realtestvec<real_t, size> x,
                                          realtestvec<real_t, size> y) {
  return x.copysign(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> cos(realtestvec<real_t, size> x) {
  return x.cos();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> cosh(realtestvec<real_t, size> x) {
  return x.cosh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> exp(realtestvec<real_t, size> x) {
  return x.exp();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> exp10(realtestvec<real_t, size> x) {
  return x.exp10();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> exp2(realtestvec<real_t, size> x) {
  return x.exp2();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> expm1(realtestvec<real_t, size> x) {
  return x.expm1();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fabs(realtestvec<real_t, size> x) {
  return x.fabs();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> floor(realtestvec<real_t, size> x) {
  return x.floor();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fdim(realtestvec<real_t, size> x,
                                      realtestvec<real_t, size> y) {
  return x.fdim(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fma(realtestvec<real_t, size> x,
                                     realtestvec<real_t, size> y,
                                     realtestvec<real_t, size> z) {
  return x.fma(y, z);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fmax(realtestvec<real_t, size> x,
                                      realtestvec<real_t, size> y) {
  return x.fmax(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fmin(realtestvec<real_t, size> x,
                                      realtestvec<real_t, size> y) {
  return x.fmin(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> fmod(realtestvec<real_t, size> x,
                                      realtestvec<real_t, size> y) {
  return x.fmod(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> frexp(realtestvec<real_t, size> x,
                                       inttestvec<real_t, size> *r) {
  return x.frexp(r);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> hypot(realtestvec<real_t, size> x,
                                       realtestvec<real_t, size> y) {
  return x.hypot(y);
}

template <typename real_t, int size>
inline inttestvec<real_t, size> ilogb(realtestvec<real_t, size> x) {
  return x.ilogb();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> isfinite(realtestvec<real_t, size> x) {
  return x.isfinite();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> isinf(realtestvec<real_t, size> x) {
  return x.isinf();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> isnan(realtestvec<real_t, size> x) {
  return x.isnan();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> isnormal(realtestvec<real_t, size> x) {
  return x.isnormal();
}

template <typename real_t, int size>
inline realtestvec<real_t, size>
ldexp(realtestvec<real_t, size> x, typename inttestvec<real_t, size>::int_t n) {
  return x.ldexp(n);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> ldexp(realtestvec<real_t, size> x,
                                       inttestvec<real_t, size> n) {
  return x.ldexp(n);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> log(realtestvec<real_t, size> x) {
  return x.log();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> log10(realtestvec<real_t, size> x) {
  return x.log10();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> log1p(realtestvec<real_t, size> x) {
  return x.log1p();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> log2(realtestvec<real_t, size> x) {
  return x.log2();
}

template <typename real_t, int size>
inline inttestvec<real_t, size> lrint(realtestvec<real_t, size> x) {
  return x.lrint();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> mad(realtestvec<real_t, size> x,
                                     realtestvec<real_t, size> y,
                                     realtestvec<real_t, size> z) {
  return x.mad(y, z);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> nextafter(realtestvec<real_t, size> x,
                                           realtestvec<real_t, size> y) {
  return x.nextafter(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> pow(realtestvec<real_t, size> x,
                                     realtestvec<real_t, size> y) {
  return x.pow(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> rcp(realtestvec<real_t, size> x) {
  return x.rcp();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> remainder(realtestvec<real_t, size> x,
                                           realtestvec<real_t, size> y) {
  return x.remainder(y);
}

template <typename real_t, int size>
inline realtestvec<real_t, size> rint(realtestvec<real_t, size> x) {
  return x.rint();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> round(realtestvec<real_t, size> x) {
  return x.round();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> rsqrt(realtestvec<real_t, size> x) {
  return x.rsqrt();
}

template <typename real_t, int size>
inline booltestvec<real_t, size> signbit(realtestvec<real_t, size> x) {
  return x.signbit();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> sin(realtestvec<real_t, size> x) {
  return x.sin();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> sinh(realtestvec<real_t, size> x) {
  return x.sinh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> sqrt(realtestvec<real_t, size> x) {
  return x.sqrt();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> tan(realtestvec<real_t, size> x) {
  return x.tan();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> tanh(realtestvec<real_t, size> x) {
  return x.tanh();
}

template <typename real_t, int size>
inline realtestvec<real_t, size> trunc(realtestvec<real_t, size> x) {
  return x.trunc();
}

#ifndef VML_NO_IOSTREAM
template <typename real_t, int size>
std::ostream &operator<<(std::ostream &os, booltestvec<real_t, size> const &x) {
  os << "[";
  for (int i = 0; i < size; ++i) {
    if (i != 0)
      os << ",";
    os << x[i];
  }
  os << "]";
  return os;
}

template <typename real_t, int size>
std::ostream &operator<<(std::ostream &os, inttestvec<real_t, size> const &x) {
  os << "[";
  for (int i = 0; i < size; ++i) {
    if (i != 0)
      os << ",";
    os << x[i];
  }
  os << "]";
  return os;
}

template <typename real_t, int size>
std::ostream &operator<<(std::ostream &os, realtestvec<real_t, size> const &x) {
  os << "[";
  for (int i = 0; i < size; ++i) {
    if (i != 0)
      os << ",";
    os << x[i];
  }
  os << "]";
  return os;
}
#endif

} // namespace vecmathlib

#endif // #ifndef VEC_TEST_H
OpenPOWER on IntegriCloud