Rust f32::atanh

Percentage Accurate: 99.8% → 99.8%
Time: 1.7s
Alternatives: 6
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ 0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \end{array} \]
(FPCore (x) :precision binary32 (* 0.5 (log1p (/ (* 2.0 x) (- 1.0 x)))))
float code(float x) {
	return 0.5f * log1pf(((2.0f * x) / (1.0f - x)));
}
function code(x)
	return Float32(Float32(0.5) * log1p(Float32(Float32(Float32(2.0) * x) / Float32(Float32(1.0) - x))))
end
\begin{array}{l}

\\
0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right)
\end{array}

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 6 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \end{array} \]
(FPCore (x) :precision binary32 (* 0.5 (log1p (/ (* 2.0 x) (- 1.0 x)))))
float code(float x) {
	return 0.5f * log1pf(((2.0f * x) / (1.0f - x)));
}
function code(x)
	return Float32(Float32(0.5) * log1p(Float32(Float32(Float32(2.0) * x) / Float32(Float32(1.0) - x))))
end
\begin{array}{l}

\\
0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right)
\end{array}

Alternative 1: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \left(0.5 \cdot \mathsf{log1p}\left(\frac{x\_m + x\_m}{1 - x\_m}\right)\right) \end{array} \]
x\_m = (fabs.f32 x)
x\_s = (copysign.f32 #s(literal 1 binary32) x)
(FPCore (x_s x_m)
 :precision binary32
 (* x_s (* 0.5 (log1p (/ (+ x_m x_m) (- 1.0 x_m))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
float code(float x_s, float x_m) {
	return x_s * (0.5f * log1pf(((x_m + x_m) / (1.0f - x_m))));
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m)
	return Float32(x_s * Float32(Float32(0.5) * log1p(Float32(Float32(x_m + x_m) / Float32(Float32(1.0) - x_m)))))
end
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \left(0.5 \cdot \mathsf{log1p}\left(\frac{x\_m + x\_m}{1 - x\_m}\right)\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
  2. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{2 \cdot x}}{1 - x}\right) \]
    2. count-2-revN/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
    3. lower-+.f3299.8

      \[\leadsto 0.5 \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
  3. Applied rewrites99.8%

    \[\leadsto 0.5 \cdot \color{blue}{\mathsf{log1p}\left(\frac{x + x}{1 - x}\right)} \]
  4. Add Preprocessing

Alternative 2: 98.9% accurate, 1.2× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \mathsf{fma}\left(\mathsf{fma}\left(0.2, x\_m \cdot x\_m, 0.3333333333333333\right), \left(x\_m \cdot x\_m\right) \cdot x\_m, x\_m\right) \end{array} \]
x\_m = (fabs.f32 x)
x\_s = (copysign.f32 #s(literal 1 binary32) x)
(FPCore (x_s x_m)
 :precision binary32
 (*
  x_s
  (fma (fma 0.2 (* x_m x_m) 0.3333333333333333) (* (* x_m x_m) x_m) x_m)))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
float code(float x_s, float x_m) {
	return x_s * fmaf(fmaf(0.2f, (x_m * x_m), 0.3333333333333333f), ((x_m * x_m) * x_m), x_m);
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m)
	return Float32(x_s * fma(fma(Float32(0.2), Float32(x_m * x_m), Float32(0.3333333333333333)), Float32(Float32(x_m * x_m) * x_m), x_m))
end
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \mathsf{fma}\left(\mathsf{fma}\left(0.2, x\_m \cdot x\_m, 0.3333333333333333\right), \left(x\_m \cdot x\_m\right) \cdot x\_m, x\_m\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
  2. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{2 \cdot x}}{1 - x}\right) \]
    2. count-2-revN/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
    3. lower-+.f3299.8

      \[\leadsto 0.5 \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
  3. Applied rewrites99.8%

    \[\leadsto 0.5 \cdot \color{blue}{\mathsf{log1p}\left(\frac{x + x}{1 - x}\right)} \]
  4. Taylor expanded in x around 0

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
  5. Step-by-step derivation
    1. lower-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    3. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \color{blue}{\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    4. lower-pow.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\color{blue}{\frac{1}{3}} + \frac{1}{5} \cdot {x}^{2}\right)\right) \]
    5. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \color{blue}{\frac{1}{5} \cdot {x}^{2}}\right)\right) \]
    6. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot \color{blue}{{x}^{2}}\right)\right) \]
    7. lower-pow.f3298.8

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{\color{blue}{2}}\right)\right) \]
  6. Applied rewrites98.8%

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right)} \]
  7. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. lift-+.f32N/A

      \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    3. +-commutativeN/A

      \[\leadsto x \cdot \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + \color{blue}{1}\right) \]
    4. distribute-rgt-inN/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x + \color{blue}{1 \cdot x} \]
    5. lift-*.f32N/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x + 1 \cdot x \]
    6. *-commutativeN/A

      \[\leadsto \left(\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{2}\right) \cdot x + 1 \cdot x \]
    7. associate-*l*N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left({x}^{2} \cdot x\right) + \color{blue}{1} \cdot x \]
    8. lift-pow.f32N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left({x}^{2} \cdot x\right) + 1 \cdot x \]
    9. pow-plusN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{\left(2 + 1\right)} + 1 \cdot x \]
    10. metadata-evalN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{3} + 1 \cdot x \]
    11. cube-unmultN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot \left(x \cdot x\right)\right) + 1 \cdot x \]
    12. unpow2N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + 1 \cdot x \]
    13. lift-pow.f32N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + 1 \cdot x \]
    14. *-lft-identityN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + x \]
    15. lower-fma.f32N/A

      \[\leadsto \mathsf{fma}\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}, \color{blue}{x \cdot {x}^{2}}, x\right) \]
  8. Applied rewrites98.9%

    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), \color{blue}{\left(x \cdot x\right) \cdot x}, x\right) \]
  9. Add Preprocessing

Alternative 3: 98.8% accurate, 1.2× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(0.2, x\_m \cdot x\_m, 0.3333333333333333\right), x\_m \cdot x\_m, 1\right) \cdot x\_m\right) \end{array} \]
x\_m = (fabs.f32 x)
x\_s = (copysign.f32 #s(literal 1 binary32) x)
(FPCore (x_s x_m)
 :precision binary32
 (*
  x_s
  (* (fma (fma 0.2 (* x_m x_m) 0.3333333333333333) (* x_m x_m) 1.0) x_m)))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
float code(float x_s, float x_m) {
	return x_s * (fmaf(fmaf(0.2f, (x_m * x_m), 0.3333333333333333f), (x_m * x_m), 1.0f) * x_m);
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m)
	return Float32(x_s * Float32(fma(fma(Float32(0.2), Float32(x_m * x_m), Float32(0.3333333333333333)), Float32(x_m * x_m), Float32(1.0)) * x_m))
end
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(0.2, x\_m \cdot x\_m, 0.3333333333333333\right), x\_m \cdot x\_m, 1\right) \cdot x\_m\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
  2. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{2 \cdot x}}{1 - x}\right) \]
    2. count-2-revN/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
    3. lower-+.f3299.8

      \[\leadsto 0.5 \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
  3. Applied rewrites99.8%

    \[\leadsto 0.5 \cdot \color{blue}{\mathsf{log1p}\left(\frac{x + x}{1 - x}\right)} \]
  4. Taylor expanded in x around 0

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
  5. Step-by-step derivation
    1. lower-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    3. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \color{blue}{\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    4. lower-pow.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\color{blue}{\frac{1}{3}} + \frac{1}{5} \cdot {x}^{2}\right)\right) \]
    5. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \color{blue}{\frac{1}{5} \cdot {x}^{2}}\right)\right) \]
    6. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot \color{blue}{{x}^{2}}\right)\right) \]
    7. lower-pow.f3298.8

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{\color{blue}{2}}\right)\right) \]
  6. Applied rewrites98.8%

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right)} \]
  7. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. *-commutativeN/A

      \[\leadsto \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot \color{blue}{x} \]
    3. lower-*.f3298.8

      \[\leadsto \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right) \cdot \color{blue}{x} \]
    4. lift-+.f32N/A

      \[\leadsto \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x \]
    5. +-commutativeN/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + 1\right) \cdot x \]
    6. lift-*.f32N/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + 1\right) \cdot x \]
    7. *-commutativeN/A

      \[\leadsto \left(\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{2} + 1\right) \cdot x \]
    8. lower-fma.f3298.8

      \[\leadsto \mathsf{fma}\left(0.3333333333333333 + 0.2 \cdot {x}^{2}, {x}^{2}, 1\right) \cdot x \]
    9. lift-+.f32N/A

      \[\leadsto \mathsf{fma}\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}, {x}^{2}, 1\right) \cdot x \]
    10. +-commutativeN/A

      \[\leadsto \mathsf{fma}\left(\frac{1}{5} \cdot {x}^{2} + \frac{1}{3}, {x}^{2}, 1\right) \cdot x \]
    11. lift-*.f32N/A

      \[\leadsto \mathsf{fma}\left(\frac{1}{5} \cdot {x}^{2} + \frac{1}{3}, {x}^{2}, 1\right) \cdot x \]
    12. lower-fma.f3298.8

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, {x}^{2}, 0.3333333333333333\right), {x}^{2}, 1\right) \cdot x \]
    13. lift-pow.f32N/A

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, {x}^{2}, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
    14. unpow2N/A

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
    15. lower-*.f3298.8

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), {x}^{2}, 1\right) \cdot x \]
    16. lift-pow.f32N/A

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
    17. unpow2N/A

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), x \cdot x, 1\right) \cdot x \]
    18. lower-*.f3298.8

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), x \cdot x, 1\right) \cdot x \]
  8. Applied rewrites98.8%

    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), x \cdot x, 1\right) \cdot \color{blue}{x} \]
  9. Add Preprocessing

Alternative 4: 98.3% accurate, 1.9× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \mathsf{fma}\left(0.3333333333333333, \left(x\_m \cdot x\_m\right) \cdot x\_m, x\_m\right) \end{array} \]
x\_m = (fabs.f32 x)
x\_s = (copysign.f32 #s(literal 1 binary32) x)
(FPCore (x_s x_m)
 :precision binary32
 (* x_s (fma 0.3333333333333333 (* (* x_m x_m) x_m) x_m)))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
float code(float x_s, float x_m) {
	return x_s * fmaf(0.3333333333333333f, ((x_m * x_m) * x_m), x_m);
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
function code(x_s, x_m)
	return Float32(x_s * fma(Float32(0.3333333333333333), Float32(Float32(x_m * x_m) * x_m), x_m))
end
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)

\\
x\_s \cdot \mathsf{fma}\left(0.3333333333333333, \left(x\_m \cdot x\_m\right) \cdot x\_m, x\_m\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
  2. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{2 \cdot x}}{1 - x}\right) \]
    2. count-2-revN/A

      \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
    3. lower-+.f3299.8

      \[\leadsto 0.5 \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
  3. Applied rewrites99.8%

    \[\leadsto 0.5 \cdot \color{blue}{\mathsf{log1p}\left(\frac{x + x}{1 - x}\right)} \]
  4. Taylor expanded in x around 0

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
  5. Step-by-step derivation
    1. lower-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    3. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \color{blue}{\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    4. lower-pow.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\color{blue}{\frac{1}{3}} + \frac{1}{5} \cdot {x}^{2}\right)\right) \]
    5. lower-+.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \color{blue}{\frac{1}{5} \cdot {x}^{2}}\right)\right) \]
    6. lower-*.f32N/A

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot \color{blue}{{x}^{2}}\right)\right) \]
    7. lower-pow.f3298.8

      \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{\color{blue}{2}}\right)\right) \]
  6. Applied rewrites98.8%

    \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right)} \]
  7. Step-by-step derivation
    1. lift-*.f32N/A

      \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    2. lift-+.f32N/A

      \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
    3. +-commutativeN/A

      \[\leadsto x \cdot \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + \color{blue}{1}\right) \]
    4. distribute-rgt-inN/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x + \color{blue}{1 \cdot x} \]
    5. lift-*.f32N/A

      \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x + 1 \cdot x \]
    6. *-commutativeN/A

      \[\leadsto \left(\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{2}\right) \cdot x + 1 \cdot x \]
    7. associate-*l*N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left({x}^{2} \cdot x\right) + \color{blue}{1} \cdot x \]
    8. lift-pow.f32N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left({x}^{2} \cdot x\right) + 1 \cdot x \]
    9. pow-plusN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{\left(2 + 1\right)} + 1 \cdot x \]
    10. metadata-evalN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{3} + 1 \cdot x \]
    11. cube-unmultN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot \left(x \cdot x\right)\right) + 1 \cdot x \]
    12. unpow2N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + 1 \cdot x \]
    13. lift-pow.f32N/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + 1 \cdot x \]
    14. *-lft-identityN/A

      \[\leadsto \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot \left(x \cdot {x}^{2}\right) + x \]
    15. lower-fma.f32N/A

      \[\leadsto \mathsf{fma}\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}, \color{blue}{x \cdot {x}^{2}}, x\right) \]
  8. Applied rewrites98.9%

    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), \color{blue}{\left(x \cdot x\right) \cdot x}, x\right) \]
  9. Taylor expanded in x around 0

    \[\leadsto \mathsf{fma}\left(\frac{1}{3}, \color{blue}{\left(x \cdot x\right)} \cdot x, x\right) \]
  10. Step-by-step derivation
    1. Applied rewrites98.3%

      \[\leadsto \mathsf{fma}\left(0.3333333333333333, \color{blue}{\left(x \cdot x\right)} \cdot x, x\right) \]
    2. Add Preprocessing

    Alternative 5: 98.2% accurate, 1.9× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot \left(\mathsf{fma}\left(0.3333333333333333, x\_m \cdot x\_m, 1\right) \cdot x\_m\right) \end{array} \]
    x\_m = (fabs.f32 x)
    x\_s = (copysign.f32 #s(literal 1 binary32) x)
    (FPCore (x_s x_m)
     :precision binary32
     (* x_s (* (fma 0.3333333333333333 (* x_m x_m) 1.0) x_m)))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    float code(float x_s, float x_m) {
    	return x_s * (fmaf(0.3333333333333333f, (x_m * x_m), 1.0f) * x_m);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    function code(x_s, x_m)
    	return Float32(x_s * Float32(fma(Float32(0.3333333333333333), Float32(x_m * x_m), Float32(1.0)) * x_m))
    end
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    
    \\
    x\_s \cdot \left(\mathsf{fma}\left(0.3333333333333333, x\_m \cdot x\_m, 1\right) \cdot x\_m\right)
    \end{array}
    
    Derivation
    1. Initial program 99.8%

      \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
    2. Step-by-step derivation
      1. lift-*.f32N/A

        \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{2 \cdot x}}{1 - x}\right) \]
      2. count-2-revN/A

        \[\leadsto \frac{1}{2} \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
      3. lower-+.f3299.8

        \[\leadsto 0.5 \cdot \mathsf{log1p}\left(\frac{\color{blue}{x + x}}{1 - x}\right) \]
    3. Applied rewrites99.8%

      \[\leadsto 0.5 \cdot \color{blue}{\mathsf{log1p}\left(\frac{x + x}{1 - x}\right)} \]
    4. Taylor expanded in x around 0

      \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
    5. Step-by-step derivation
      1. lower-*.f32N/A

        \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
      2. lower-+.f32N/A

        \[\leadsto x \cdot \left(1 + \color{blue}{{x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
      3. lower-*.f32N/A

        \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \color{blue}{\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)}\right) \]
      4. lower-pow.f32N/A

        \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\color{blue}{\frac{1}{3}} + \frac{1}{5} \cdot {x}^{2}\right)\right) \]
      5. lower-+.f32N/A

        \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \color{blue}{\frac{1}{5} \cdot {x}^{2}}\right)\right) \]
      6. lower-*.f32N/A

        \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot \color{blue}{{x}^{2}}\right)\right) \]
      7. lower-pow.f3298.8

        \[\leadsto x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{\color{blue}{2}}\right)\right) \]
    6. Applied rewrites98.8%

      \[\leadsto \color{blue}{x \cdot \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right)} \]
    7. Step-by-step derivation
      1. lift-*.f32N/A

        \[\leadsto x \cdot \color{blue}{\left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right)} \]
      2. *-commutativeN/A

        \[\leadsto \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot \color{blue}{x} \]
      3. lower-*.f3298.8

        \[\leadsto \left(1 + {x}^{2} \cdot \left(0.3333333333333333 + 0.2 \cdot {x}^{2}\right)\right) \cdot \color{blue}{x} \]
      4. lift-+.f32N/A

        \[\leadsto \left(1 + {x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right)\right) \cdot x \]
      5. +-commutativeN/A

        \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + 1\right) \cdot x \]
      6. lift-*.f32N/A

        \[\leadsto \left({x}^{2} \cdot \left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) + 1\right) \cdot x \]
      7. *-commutativeN/A

        \[\leadsto \left(\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}\right) \cdot {x}^{2} + 1\right) \cdot x \]
      8. lower-fma.f3298.8

        \[\leadsto \mathsf{fma}\left(0.3333333333333333 + 0.2 \cdot {x}^{2}, {x}^{2}, 1\right) \cdot x \]
      9. lift-+.f32N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{3} + \frac{1}{5} \cdot {x}^{2}, {x}^{2}, 1\right) \cdot x \]
      10. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{5} \cdot {x}^{2} + \frac{1}{3}, {x}^{2}, 1\right) \cdot x \]
      11. lift-*.f32N/A

        \[\leadsto \mathsf{fma}\left(\frac{1}{5} \cdot {x}^{2} + \frac{1}{3}, {x}^{2}, 1\right) \cdot x \]
      12. lower-fma.f3298.8

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, {x}^{2}, 0.3333333333333333\right), {x}^{2}, 1\right) \cdot x \]
      13. lift-pow.f32N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, {x}^{2}, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
      14. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
      15. lower-*.f3298.8

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), {x}^{2}, 1\right) \cdot x \]
      16. lift-pow.f32N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), {x}^{2}, 1\right) \cdot x \]
      17. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{5}, x \cdot x, \frac{1}{3}\right), x \cdot x, 1\right) \cdot x \]
      18. lower-*.f3298.8

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), x \cdot x, 1\right) \cdot x \]
    8. Applied rewrites98.8%

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(0.2, x \cdot x, 0.3333333333333333\right), x \cdot x, 1\right) \cdot \color{blue}{x} \]
    9. Taylor expanded in x around 0

      \[\leadsto \mathsf{fma}\left(\frac{1}{3}, x \cdot x, 1\right) \cdot x \]
    10. Step-by-step derivation
      1. Applied rewrites98.2%

        \[\leadsto \mathsf{fma}\left(0.3333333333333333, x \cdot x, 1\right) \cdot x \]
      2. Add Preprocessing

      Alternative 6: 96.6% accurate, 23.2× speedup?

      \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ x\_s \cdot x\_m \end{array} \]
      x\_m = (fabs.f32 x)
      x\_s = (copysign.f32 #s(literal 1 binary32) x)
      (FPCore (x_s x_m) :precision binary32 (* x_s x_m))
      x\_m = fabs(x);
      x\_s = copysign(1.0, x);
      float code(float x_s, float x_m) {
      	return x_s * x_m;
      }
      
      x\_m =     private
      x\_s =     private
      module fmin_fmax_functions
          implicit none
          private
          public fmax
          public fmin
      
          interface fmax
              module procedure fmax88
              module procedure fmax44
              module procedure fmax84
              module procedure fmax48
          end interface
          interface fmin
              module procedure fmin88
              module procedure fmin44
              module procedure fmin84
              module procedure fmin48
          end interface
      contains
          real(8) function fmax88(x, y) result (res)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
          end function
          real(4) function fmax44(x, y) result (res)
              real(4), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(y, merge(x, max(x, y), y /= y), x /= x)
          end function
          real(8) function fmax84(x, y) result(res)
              real(8), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
          end function
          real(8) function fmax48(x, y) result(res)
              real(4), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
          end function
          real(8) function fmin88(x, y) result (res)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
          end function
          real(4) function fmin44(x, y) result (res)
              real(4), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(y, merge(x, min(x, y), y /= y), x /= x)
          end function
          real(8) function fmin84(x, y) result(res)
              real(8), intent (in) :: x
              real(4), intent (in) :: y
              res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
          end function
          real(8) function fmin48(x, y) result(res)
              real(4), intent (in) :: x
              real(8), intent (in) :: y
              res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
          end function
      end module
      
      real(4) function code(x_s, x_m)
      use fmin_fmax_functions
          real(4), intent (in) :: x_s
          real(4), intent (in) :: x_m
          code = x_s * x_m
      end function
      
      x\_m = abs(x)
      x\_s = copysign(1.0, x)
      function code(x_s, x_m)
      	return Float32(x_s * x_m)
      end
      
      x\_m = abs(x);
      x\_s = sign(x) * abs(1.0);
      function tmp = code(x_s, x_m)
      	tmp = x_s * x_m;
      end
      
      \begin{array}{l}
      x\_m = \left|x\right|
      \\
      x\_s = \mathsf{copysign}\left(1, x\right)
      
      \\
      x\_s \cdot x\_m
      \end{array}
      
      Derivation
      1. Initial program 99.8%

        \[0.5 \cdot \mathsf{log1p}\left(\frac{2 \cdot x}{1 - x}\right) \]
      2. Taylor expanded in x around 0

        \[\leadsto \color{blue}{x} \]
      3. Step-by-step derivation
        1. Applied rewrites96.6%

          \[\leadsto \color{blue}{x} \]
        2. Add Preprocessing

        Reproduce

        ?
        herbie shell --seed 2025164 
        (FPCore (x)
          :name "Rust f32::atanh"
          :precision binary32
          (* 0.5 (log1p (/ (* 2.0 x) (- 1.0 x)))))