forked from robertostling/eflomal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimd_math_prims.h
129 lines (110 loc) · 3.98 KB
/
simd_math_prims.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
/*
The MIT License (MIT)
Copyright (c) 2015 Jacques-Henri Jourdan <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef SIMD_MATH_PRIMS_H
#define SIMD_MATH_PRIMS_H
#include<math.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Workaround a lack of optimization in gcc */
float exp_cst1 = 2139095040.f;
float exp_cst2 = 0.f;
/* Relative error bounded by 1e-5 for normalized outputs
Returns invalid outputs for nan inputs
Continuous error */
inline float expapprox(float val) {
union { int i; float f; } xu, xu2;
float val2, val3, val4, b;
int val4i;
val2 = 12102203.1615614f*val+1065353216.f;
val3 = val2 < exp_cst1 ? val2 : exp_cst1;
val4 = val3 > exp_cst2 ? val3 : exp_cst2;
val4i = (int) val4;
xu.i = val4i & 0x7F800000;
xu2.i = (val4i & 0x7FFFFF) | 0x3F800000;
b = xu2.f;
/* Generated in Sollya with:
> f=remez(1-x*exp(-(x-1)*log(2)),
[|1,(x-1)*(x-2), (x-1)*(x-2)*x, (x-1)*(x-2)*x*x|],
[1,2], exp(-(x-1)*log(2)));
> plot(exp((x-1)*log(2))/(f+x)-1, [1,2]);
> f+x;
*/
return
xu.f * (0.510397365625862338668154f + b *
(0.310670891004095530771135f + b *
(0.168143436463395944830000f + b *
(-2.88093587581985443087955e-3f + b *
1.3671023382430374383648148e-2f))));
}
/* Absolute error bounded by 1e-6 for normalized inputs
Returns a finite number for +inf input
Returns -inf for nan and <= 0 inputs.
Continuous error. */
inline float logapprox(float val) {
union { float f; int i; } valu;
float exp, addcst, x;
valu.f = val;
exp = valu.i >> 23;
/* 89.970756366f = 127 * log(2) - constant term of polynomial */
addcst = val > 0 ? -89.970756366f : -(float)INFINITY;
valu.i = (valu.i & 0x7FFFFF) | 0x3F800000;
x = valu.f;
/* Generated in Sollya using :
> f = remez(log(x)-(x-1)*log(2),
[|1,(x-1)*(x-2), (x-1)*(x-2)*x, (x-1)*(x-2)*x*x,
(x-1)*(x-2)*x*x*x|], [1,2], 1, 1e-8);
> plot(f+(x-1)*log(2)-log(x), [1,2]);
> f+(x-1)*log(2)
*/
return
x * (3.529304993f + x * (-2.461222105f +
x * (1.130626167f + x * (-0.288739945f +
x * 3.110401639e-2f))))
+ (addcst + 0.69314718055995f*exp);
}
/* Correct only in [-pi, pi]
Absolute error bounded by 5e-5
Continuous error */
inline float cosapprox(float val) {
float val2 = val*val;
return
0.999959766864776611328125f + val2 *
(-0.4997930824756622314453125f + val2 *
(4.1496001183986663818359375e-2f + val2 *
(-1.33926304988563060760498046875e-3f + val2 *
1.8791708498611114919185638427734375e-5f)));
}
/* Correct only in [-pi, pi]
Absolute error bounded by 6e-6
Continuous error */
inline float sinapprox(float val) {
float val2 = val*val;
return
val * (0.99997937679290771484375f + val2 *
(-0.166624367237091064453125f + val2 *
(8.30897875130176544189453125e-3f + val2 *
(-1.92649182281456887722015380859375e-4f + val2 *
2.147840177713078446686267852783203125e-6f))));
}
#ifdef __cplusplus
}
#endif
#endif