-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVectorCompatibility.h
308 lines (256 loc) · 6.9 KB
/
VectorCompatibility.h
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
/**
* @file VectorCompatibility.h
* @brief Provides methods and typedefs for the use of vectors in the code
*
* @license This file is distributed under the BSD Open Source License.
* See LICENSE.TXT for details.
**/
#ifndef VECTORCOMPATIBILITY_H
#define VECTORCOMPATIBILITY_H
#include <immintrin.h>
#ifndef __SSE4_2__
#error DEMON requires a processor with SSE 4.2 support.
#endif
#ifdef __AVX__
#error AVX support is incomplete.
#define FLOAT_STRIDE 8
#define DOUBLE_STRIDE 4
typedef __m256d doubleV;
typedef __m256 floatV;
#else
#define FLOAT_STRIDE 4
#define DOUBLE_STRIDE 2
typedef __m128d doubleV;
typedef __m128 floatV;
#endif
/*===- Load/Store ---------------------------------------------------------===*/
static inline void store_pd(double * const a, const doubleV b) {
#ifdef __AVX__
return _mm256_store_pd(a, b);
#else
return _mm_store_pd(a, b);
#endif
}
static inline const doubleV load_pd(double * const a) {
#ifdef __AVX__
return _mm256_load_pd(a);
#else
return _mm_load_pd(a);
#endif
}
/*===- Set ----------------------------------------------------------------===*/
static inline const doubleV set1_pd(const double a) {
#ifdef __AVX__
return _mm256_set1_pd(a);
#else
return _mm_set1_pd(a);
#endif
}
static inline const floatV set1_ps(const float a) {
#ifdef __AVX__
return _mm256_set1_ps(a);
#else
return _mm_set1_ps(a);
#endif
}
static inline const doubleV set0_pd() {
#ifdef __AVX__
return _mm256_setzero_pd();
#else
return _mm_setzero_pd();
#endif
}
/*===- Arithmatic ---------------------------------------------------------===*/
static inline void plusEqual_pd(double * const a, const doubleV b) {
#ifdef __AVX__
_mm256_store_pd(a, _mm256_load_pd(a) + b);
#else
_mm_store_pd(a, _mm_add_pd(_mm_load_pd(a), b));
#endif
}
static inline void minusEqual_pd(double * const a, const doubleV b) {
#ifdef __AVX__
_mm256_store_pd(a, _mm256_load_pd(a) - b);
#else
_mm_store_pd(a, _mm_sub_pd(_mm_load_pd(a), b));
#endif
}
static inline const doubleV fmadd_pd(const doubleV a, const doubleV b, const doubleV c) {
#ifdef __AVX__
return _mm256_fmadd_pd(a, b, c);
#else
return _mm_add_pd(_mm_mul_pd(a, b), c);
#endif
}
static inline const doubleV add_pd(const doubleV a, const doubleV b) {
#ifdef __AVX__
return _mm256_add_pd(a, b);
#else
return _mm_add_pd(a, b);
#endif
}
static inline const floatV add_ps(const floatV a, const floatV b) {
#ifdef __AVX__
return _mm256_add_ps(a, b);
#else
return _mm_add_ps(a, b);
#endif
}
static inline const doubleV sub_pd(const doubleV a, const doubleV b) {
#ifdef __AVX__
return _mm256_sub_pd(a, b);
#else
return _mm_sub_pd(a, b);
#endif
}
static inline const doubleV sub_pd(const doubleV a, const double b) {
#ifdef __AVX__
return _mm256_sub_pd(a, _mm256_set1_pd(b));
#else
return _mm_sub_pd(a, _mm_set1_pd(b));
#endif
}
static inline const floatV sub_ps(const floatV a, const floatV b) {
#ifdef __AVX__
return _mm256_sub_ps(a, b);
#else
return _mm_sub_ps(a, b);
#endif
}
static inline const doubleV mul_pd(const doubleV a, const doubleV b) {
#ifdef __AVX__
return _mm256_mul_pd(a, b);
#else
return _mm_mul_pd(a, b);
#endif
}
static inline const doubleV mul_pd(const doubleV a, const double b) {
#ifdef __AVX__
return _mm256_mul_pd(a, _mm256_set1_pd(b));
#else
return _mm_mul_pd(a, _mm_set1_pd(b));
#endif
}
static inline const floatV mul_ps(const floatV a, const floatV b) {
#ifdef __AVX__
return _mm256_mul_ps(a, b);
#else
return _mm_mul_ps(a, b);
#endif
}
static inline const doubleV div_pd(const doubleV a, const doubleV b) {
#ifdef __AVX__
return _mm256_div_pd(a, b);
#else
return _mm_div_pd(a, b);
#endif
}
static inline const doubleV div_pd(const doubleV a, const double b) {
#ifdef __AVX__
return _mm256_div_pd(a, _mm256_set1_pd(b));
#else
return _mm_div_pd(a, _mm_set1_pd(b));
#endif
}
static inline const doubleV sqrt_pd(const doubleV a) {
#ifdef __AVX__
return _mm256_sqrt_pd(a);
#else
return _mm_sqrt_pd(a);
#endif
}
static inline const floatV sqrt_ps(const floatV a) {
#ifdef __AVX__
return _mm256_sqrt_ps(a);
#else
return _mm_sqrt_ps(a);
#endif
}
/*===- Comparison ---------------------------------------------------------===*/
static inline const int movemask_pd(const doubleV a) {
#ifdef __AVX__
return _mm256_movemask_pd(a);
#else
return _mm_movemask_pd(a);
#endif
}
static inline const int movemask_ps(const floatV a) {
#ifdef __AVX__
return _mm256_movemask_ps(a);
#else
return _mm_movemask_ps(a);
#endif
}
static inline const floatV cmple_ps(const floatV a, const floatV b) {
#ifdef __AVX__
return _mm256_cmp_ps(a, b, LE_OS);
#else
return _mm_cmple_ps(a, b);
#endif
}
static inline const doubleV cmpgt_pd(const doubleV a, const double b) {
#ifdef __AVX__
return _mm256_cmp_pd(a, _mm256_set1_pd(b), LT_OS);
#else
return _mm_cmpgt_pd(a, _mm_set1_pd(b));
#endif
}
static inline const doubleV cmplt_pd(const doubleV a, const double b) {
#ifdef __AVX__
return _mm256_cmp_pd(a, _mm256_set1_pd(b), GT_OS);
#else
return _mm_cmplt_pd(a, _mm_set1_pd(b));
#endif
}
/*===- Logical ------------------------------------------------------------===*/
static inline const doubleV and_pd(const doubleV a, const doubleV b) {
#ifdef __AVX__
return _mm256_and_pd(a, b);
#else
return _mm_and_pd(a, b);
#endif
}
/*===- math functions -----------------------------------------------------===*/
static inline const doubleV exp_pd(const doubleV a) {
double b[DOUBLE_STRIDE];
store_pd(b, a);
#ifdef __AVX__
return _mm256_set_pd(exp(b[3]), exp(b[2]), exp(b[1]), exp(b[0]));
#else
return _mm_set_pd(exp(b[1]), exp(b[0]));
#endif
}
static inline const doubleV sin_pd(const doubleV a) {
double b[DOUBLE_STRIDE];
store_pd(b, a);
#ifdef __AVX__
return _mm256_set_pd(sin(b[3]), sin(b[2]), sin(b[1]), sin(b[0]));
#else
return _mm_set_pd(sin(b[1]), sin(b[0]));
#endif
}
static inline const doubleV cos_pd(const doubleV a) {
double b[DOUBLE_STRIDE];
store_pd(b, a);
#ifdef __AVX__
return _mm256_set_pd(cos(b[3]), cos(b[2]), cos(b[1]), cos(b[0]));
#else
return _mm_set_pd(cos(b[1]), cos(b[0]));
#endif
}
static inline const doubleV length_pd(const doubleV a, const doubleV b) {
return sqrt_pd(add_pd(mul_pd(a, a), mul_pd(b, b)));
}
/*===- Misc ---------------------------------------------------------------===*/
static inline const doubleV select_pd(const int mask, const double trueValue, const double falseValue) {
#ifdef __AVX__
return _mm256_set_pd((mask & 8) ? trueValue : falseValue,
(mask & 4) ? trueValue : falseValue,
(mask & 2) ? trueValue : falseValue, // _mm256_set_pd() is backwards.
(mask & 1) ? trueValue : falseValue);
#else
return _mm_set_pd((mask & 2) ? trueValue : falseValue, // _mm_set_pd() is backwards.
(mask & 1) ? trueValue : falseValue);
#endif
}
#endif // VECTORCOMPATIBILITY_H