\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}\sqrt{0.5 \cdot \frac{\frac{{\left({1}^{3}\right)}^{3} + {\left({\left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}^{3}\right)}^{3}}{\mathsf{fma}\left({\left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}^{3}, {\left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}^{3} - {1}^{3}, {1}^{6}\right)}}{\mathsf{fma}\left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}, \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} - 1, 1 \cdot 1\right)}}double code(double p, double x) {
return sqrt((0.5 * (1.0 + (x / sqrt((((4.0 * p) * p) + (x * x)))))));
}
double code(double p, double x) {
return sqrt((0.5 * (((pow(pow(1.0, 3.0), 3.0) + pow(pow((x / sqrt((((4.0 * p) * p) + (x * x)))), 3.0), 3.0)) / fma(pow((x / sqrt((((4.0 * p) * p) + (x * x)))), 3.0), (pow((x / sqrt((((4.0 * p) * p) + (x * x)))), 3.0) - pow(1.0, 3.0)), pow(1.0, 6.0))) / fma((x / sqrt((((4.0 * p) * p) + (x * x)))), ((x / sqrt((((4.0 * p) * p) + (x * x)))) - 1.0), (1.0 * 1.0)))));
}




Bits error versus p




Bits error versus x
Results
| Original | 12.5 |
|---|---|
| Target | 12.4 |
| Herbie | 12.5 |
Initial program 12.5
rmApplied flip3-+12.5
Simplified12.5
rmApplied flip3-+12.5
Simplified12.5
Final simplification12.5
herbie shell --seed 2020078 +o rules:numerics
(FPCore (p x)
:name "Given's Rotation SVD example"
:precision binary64
:pre (< 1e-150 (fabs x) 1e+150)
:herbie-target
(sqrt (+ 0.5 (/ (copysign 0.5 x) (hypot 1 (/ (* 2 p) x)))))
(sqrt (* 0.5 (+ 1 (/ x (sqrt (+ (* (* 4 p) p) (* x x))))))))