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
//! AVX implementation of the SIMD traits, corresponding to
//! `target_feature = "avx"`.

use std::mem;
use std::ops::{Add, Sub, Mul, Div, Neg, BitAnd, Not};

use traits::{SimdF32, SimdMask32};

#[cfg(target_arch = "x86")]
use std::arch::x86::*;

#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;

#[derive(Clone, Copy)]
pub struct AvxF32(__m256);

#[derive(Clone, Copy)]
pub struct AvxMask32(__m256);

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_add_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_add_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_sub_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_sub_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_mul_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_mul_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_div_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_div_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_set1_ps(a: f32) -> __m256 {
    _mm256_set1_ps(a)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_floor_ps(a: __m256) -> __m256 {
    _mm256_round_ps(a, _MM_FROUND_TO_NEG_INF | _MM_FROUND_NO_EXC)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_ceil_ps(a: __m256) -> __m256 {
    _mm256_round_ps(a, _MM_FROUND_TO_POS_INF | _MM_FROUND_NO_EXC)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_round_nearest_ps(a: __m256) -> __m256 {
    _mm256_round_ps(a, _MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_min_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_min_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_max_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_max_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_rcp_ps(a: __m256) -> __m256 {
    _mm256_rcp_ps(a)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_rsqrt_ps(a: __m256) -> __m256 {
    _mm256_rsqrt_ps(a)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_sqrt_ps(a: __m256) -> __m256 {
    _mm256_sqrt_ps(a)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_andnot_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_andnot_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_and_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_and_ps(a, b)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_setr_ps(a: f32, b: f32, c: f32, d: f32, e: f32, f: f32, g: f32, h: f32) -> __m256 {
    _mm256_setr_ps(a, b, c, d, e, f, g, h)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_loadu_ps(p: *const f32) -> __m256 {
    _mm256_loadu_ps(p)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_storeu_ps(p: *mut f32, a: __m256) {
    _mm256_storeu_ps(p, a);
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_cmpeq_ps(a: __m256, b: __m256) -> __m256 {
    _mm256_cmp_ps(a, b, _CMP_EQ_UQ)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_set1_epi32(a: i32) -> __m256i {
    _mm256_set1_epi32(a)
}

#[inline]
#[target_feature(enable = "avx")]
unsafe fn avx_blendv_ps(a: __m256, b: __m256, c: __m256) -> __m256 {
    _mm256_blendv_ps(a, b, c)
}

impl Add for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn add(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_add_ps(self.0, other.0))
        }
    }
}

impl Add<f32> for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn add(self, other: f32) -> AvxF32 {
        unsafe {
            AvxF32(avx_add_ps(self.0, avx_set1_ps(other)))
        }
    }
}

impl Add<AvxF32> for f32 {
    type Output = AvxF32;
    #[inline]
    fn add(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_add_ps(avx_set1_ps(self), other.0))
        }
    }
}

impl Sub for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn sub(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_sub_ps(self.0, other.0))
        }
    }
}

impl Sub<f32> for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn sub(self, other: f32) -> AvxF32 {
        unsafe {
            AvxF32(avx_sub_ps(self.0, avx_set1_ps(other)))
        }
    }
}

impl Sub<AvxF32> for f32 {
    type Output = AvxF32;
    #[inline]
    fn sub(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_sub_ps(avx_set1_ps(self), other.0))
        }
    }
}

impl Mul for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn mul(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_mul_ps(self.0, other.0))
        }
    }
}

impl Mul<f32> for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn mul(self, other: f32) -> AvxF32 {
        unsafe {
            AvxF32(avx_mul_ps(self.0, avx_set1_ps(other)))
        }
    }
}

impl Mul<AvxF32> for f32 {
    type Output = AvxF32;
    #[inline]
    fn mul(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_mul_ps(avx_set1_ps(self), other.0))
        }
    }    
}

impl Div for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn div(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_div_ps(self.0, other.0))
        }
    }
}

impl Div<f32> for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn div(self, other: f32) -> AvxF32 {
        unsafe {
            AvxF32(avx_div_ps(self.0, avx_set1_ps(other)))
        }
    }
}

impl Div<AvxF32> for f32 {
    type Output = AvxF32;
    #[inline]
    fn div(self, other: AvxF32) -> AvxF32 {
        unsafe {
            AvxF32(avx_div_ps(avx_set1_ps(self), other.0))
        }
    }    
}

impl Neg for AvxF32 {
    type Output = AvxF32;
    #[inline]
    fn neg(self) -> AvxF32 {
        unsafe {
            AvxF32(avx_sub_ps(avx_set1_ps(0.0), self.0))
        }
    }
}

impl From<AvxF32> for __m256 {
    #[inline]
    fn from(x: AvxF32) -> __m256 {
        x.0
    }
}

impl SimdF32 for AvxF32 {
    type Raw = __m256;

    type Mask = AvxMask32;

    #[inline]
    fn width(self) -> usize { 8 }

    #[inline]
    fn floor(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_floor_ps(self.0)) }
    }

    #[inline]
    fn ceil(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_ceil_ps(self.0)) }
    }

    #[inline]
    fn round(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_round_nearest_ps(self.0)) }
    }

    #[inline]
    fn abs(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_andnot_ps(avx_set1_ps(-0.0), self.0)) }
    }

    #[inline]
    fn min(self: AvxF32, b: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_min_ps(self.0, b.0)) }
    }

    #[inline]
    fn max(self: AvxF32, b: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_max_ps(self.0, b.0)) }
    }

    #[inline]
    fn recip11(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_rcp_ps(self.0)) }
    }

    #[inline]
    fn recip22(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32( {
            let est = avx_rcp_ps(self.0);
            let muls = avx_mul_ps(self.0, avx_mul_ps(est, est));
            avx_sub_ps(avx_add_ps(est, est), muls)
        })}
    }

    #[inline]
    fn recip(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_div_ps(avx_set1_ps(1.0), self.0)) }
    }

    #[inline]
    fn rsqrt11(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_rsqrt_ps(self.0)) }
    }

    #[inline]
    fn rsqrt22(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32( {
            let est = avx_rsqrt_ps(self.0);
            let r_est = avx_mul_ps(self.0, est);
            let half_est = avx_mul_ps(avx_set1_ps(0.5), est);
            let muls = avx_mul_ps(r_est, est);
            let three_minus_muls = avx_sub_ps(avx_set1_ps(3.0), muls);
            avx_mul_ps(half_est, three_minus_muls)
        })}
    }

    #[inline]
    fn rsqrt(self: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_div_ps(avx_set1_ps(1.0), avx_sqrt_ps(self.0))) }
    }

    #[inline]
    fn splat(self, x: f32) -> AvxF32 {
        unsafe { AvxF32(avx_set1_ps(x)) }
    }

    #[inline]
    fn steps(self) -> AvxF32 {
        unsafe { AvxF32(avx_setr_ps(0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0)) }
    }

    #[inline]
    unsafe fn from_raw(raw: __m256) -> AvxF32 {
        AvxF32(raw)
    }

    #[inline]
    unsafe fn load(p: *const f32) -> AvxF32 {
        AvxF32(avx_loadu_ps(p))
    }

    #[inline]
    unsafe fn store(self, p: *mut f32) {
        avx_storeu_ps(p, self.0);
    }

    #[inline]
    unsafe fn create() -> AvxF32 {
        AvxF32(avx_set1_ps(0.0))
    }

    #[inline]
    fn eq(self, other: AvxF32) -> AvxMask32 {
        unsafe { AvxMask32(avx_cmpeq_ps(self.0, other.0)) }
    }
}

// AvxMask32

impl From<AvxMask32> for __m256 {
    #[inline]
    fn from(x: AvxMask32) -> __m256 {
        x.0
    }
}

impl BitAnd for AvxMask32 {
    type Output = AvxMask32;
    #[inline]
    fn bitand(self, other: AvxMask32) -> AvxMask32 {
        unsafe { AvxMask32(avx_and_ps(self.0, other.0)) }
    }
}

impl Not for AvxMask32 {
    type Output = AvxMask32;
    #[inline]
    fn not(self) -> AvxMask32 {
        unsafe { AvxMask32(avx_andnot_ps(self.0, mem::transmute(avx_set1_epi32(-1)))) }
    }
}

impl SimdMask32 for AvxMask32 {
    type Raw = __m256;

    type F32 = AvxF32;

    #[inline]
    fn select(self, a: AvxF32, b: AvxF32) -> AvxF32 {
        unsafe { AvxF32(avx_blendv_ps(b.0, a.0, self.0)) }
    }
}