summaryrefslogtreecommitdiff
path: root/src/simd/512.h
blob: 2cc0a4413ddb3de2f8a21753c04635e4c7f0f751 (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
#pragma once

#include <immintrin.h>

#include <cstdint>
#include <type_traits>

namespace simd {


template <std::floating_point T>
class Mask;

template <>
class Mask<double> {
private:
	__mmask8 _reg;

public:
	using storage_t = std::uint8_t;
	static constexpr unsigned storage_size = 8;

	static storage_t encode(bool* value) {
		storage_t mask = value[0];
		for (unsigned j=1; j < storage_size; ++j) {
			mask |= value[j] << j;
		}
		return mask;
	}

	Mask(bool b0, bool b1, bool b2, bool b3, bool b4, bool b5, bool b6, bool b7):
		_reg(std::uint16_t(b0 | b1<<1 | b2<<2 | b3<<3 | b4<<4 | b5<<5 | b6<<6 | b7<<7)) { }

	Mask(std::uint8_t* ptr):
		_reg(_load_mask16(reinterpret_cast<std::uint16_t*>(ptr))) { }

	Mask(storage_t* ptr, std::size_t iCell):
		Mask(ptr + iCell / storage_size) { }

	Mask(__mmask8 reg):
		_reg(reg) { }

	operator __mmask8() {
		return _reg;
	}

	__mmask8 neg() const {
		return _knot_mask8(_reg);
	}

	operator bool() const {
		const std::uint8_t* value = reinterpret_cast<const std::uint8_t*>(&_reg);
		return value[0] != 0;
	}
};

template <>
class Mask<float> {
private:
	__mmask16 _reg;

public:
	using storage_t = std::uint16_t;
	static constexpr unsigned storage_size = 16;

	static storage_t encode(bool* value) {
		storage_t mask = value[0];
		for (unsigned j=1; j < storage_size; ++j) {
			mask |= value[j] << j;
		}
		return mask;
	}

	Mask(std::uint16_t* ptr):
		_reg(_load_mask16(ptr)) { }

	Mask(storage_t* ptr, std::size_t iCell):
		Mask(ptr + iCell / storage_size) { }

	Mask(__mmask16 reg):
		_reg(reg) { }

	operator __mmask16() {
		return _reg;
	}

	__mmask16 neg() const {
		return _knot_mask16(_reg);
	}

	operator bool() const {
		const std::uint16_t* value = reinterpret_cast<const std::uint16_t*>(&_reg);
		return value[0] != 0;
	}
};


template <std::floating_point T>
class Pack;

template <>
class Pack<double> {
private:
	__m512d _reg;

public:
	using mask_t = Mask<double>;
	using index_t = std::uint32_t;

	static constexpr std::size_t size = 8;

	Pack() = default;

	Pack(__m512d reg):
		_reg(reg) { }

	Pack(double val):
		Pack(_mm512_set1_pd(val)) { }

	Pack(double a, double b, double c, double d, double e, double f, double g, double h):
		Pack(_mm512_set_pd(h,g,f,e,d,c,b,a)) { }

	Pack(double* ptr):
		Pack(_mm512_loadu_pd(ptr)) { }

	Pack(double* ptr, index_t* idx):
		Pack(_mm512_i32gather_pd(_mm256_loadu_si256(reinterpret_cast<__m256i*>(idx)), ptr, sizeof(double))) { }

	operator __m512d() {
		return _reg;
	}

	Pack operator+(Pack rhs) {
		return Pack(_mm512_add_pd(_reg, rhs));
	}

	Pack& operator+=(Pack rhs) {
		_reg = _mm512_add_pd(_reg, rhs);
		return *this;
	}

	Pack operator-(Pack rhs) {
		return Pack(_mm512_sub_pd(_reg, rhs));
	}

	Pack& operator-=(Pack rhs) {
		_reg = _mm512_sub_pd(_reg, rhs);
		return *this;
	}

	Pack operator*(Pack rhs) {
		return Pack(_mm512_mul_pd(_reg, rhs));
	}

	Pack& operator*=(Pack rhs) {
		_reg = _mm512_mul_pd(_reg, rhs);
		return *this;
	}

	Pack operator/(Pack rhs) {
		return Pack(_mm512_div_pd(_reg, rhs));
	}

	Pack& operator/=(Pack rhs) {
		_reg = _mm512_div_pd(_reg, rhs);
		return *this;
	}

	Pack operator-() {
		return *this * Pack(-1.);
	}

	__m512d sqrt() {
		return _mm512_sqrt_pd(_reg);
	}
};

template <>
class Pack<float> {
private:
	__m512 _reg;

public:
	using mask_t = Mask<float>;
	using index_t = std::uint32_t;

	static constexpr std::size_t size = 16;

	Pack() = default;

	Pack(__m512 reg):
		_reg(reg) { }

	Pack(float val):
		Pack(_mm512_set1_ps(val)) { }

	Pack(float a, float b, float c, float d, float e, float f, float g, float h, float i, float j, float k, float l, float m, float n, float o, float p):
		Pack(_mm512_set_ps(p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a)) { }

	Pack(float* ptr):
		Pack(_mm512_loadu_ps(ptr)) { }

	Pack(float* ptr, index_t* idx):
		Pack(_mm512_i32gather_ps(_mm512_loadu_si512(reinterpret_cast<__m512i*>(idx)), ptr, sizeof(float))) { }

	operator __m512() {
		return _reg;
	}

	Pack operator+(Pack rhs) {
		return Pack(_mm512_add_ps(_reg, rhs));
	}

	Pack& operator+=(Pack rhs) {
		_reg = _mm512_add_ps(_reg, rhs);
		return *this;
	}

	Pack operator-(Pack rhs) {
		return Pack(_mm512_sub_ps(_reg, rhs));
	}

	Pack& operator-=(Pack rhs) {
		_reg = _mm512_sub_ps(_reg, rhs);
		return *this;
	}

	Pack operator*(Pack rhs) {
		return Pack(_mm512_mul_ps(_reg, rhs));
	}

	Pack& operator*=(Pack rhs) {
		_reg = _mm512_mul_ps(_reg, rhs);
		return *this;
	}

	Pack operator/(Pack rhs) {
		return Pack(_mm512_div_ps(_reg, rhs));
	}

	Pack& operator/=(Pack rhs) {
		_reg = _mm512_div_ps(_reg, rhs);
		return *this;
	}

	Pack operator-() {
		return *this * Pack(-1.);
	}

	__m512 sqrt() {
		return _mm512_sqrt_ps(_reg);
	}
};


template <typename T>
Pack