Logistic function

Percentage Accurate: 99.8% → 99.8%
Time: 8.5s
Alternatives: 14
Speedup: 1.0×

Specification

?
\[0 \leq s \land s \leq 1.0651631\]
\[\begin{array}{l} \\ \frac{1}{1 + e^{\frac{-x}{s}}} \end{array} \]
(FPCore (x s) :precision binary32 (/ 1.0 (+ 1.0 (exp (/ (- x) s)))))
float code(float x, float s) {
	return 1.0f / (1.0f + expf((-x / s)));
}
real(4) function code(x, s)
    real(4), intent (in) :: x
    real(4), intent (in) :: s
    code = 1.0e0 / (1.0e0 + exp((-x / s)))
end function
function code(x, s)
	return Float32(Float32(1.0) / Float32(Float32(1.0) + exp(Float32(Float32(-x) / s))))
end
function tmp = code(x, s)
	tmp = single(1.0) / (single(1.0) + exp((-x / s)));
end
\begin{array}{l}

\\
\frac{1}{1 + e^{\frac{-x}{s}}}
\end{array}

Sampling outcomes in binary32 precision:

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 14 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} \\ \frac{1}{1 + e^{\frac{-x}{s}}} \end{array} \]
(FPCore (x s) :precision binary32 (/ 1.0 (+ 1.0 (exp (/ (- x) s)))))
float code(float x, float s) {
	return 1.0f / (1.0f + expf((-x / s)));
}
real(4) function code(x, s)
    real(4), intent (in) :: x
    real(4), intent (in) :: s
    code = 1.0e0 / (1.0e0 + exp((-x / s)))
end function
function code(x, s)
	return Float32(Float32(1.0) / Float32(Float32(1.0) + exp(Float32(Float32(-x) / s))))
end
function tmp = code(x, s)
	tmp = single(1.0) / (single(1.0) + exp((-x / s)));
end
\begin{array}{l}

\\
\frac{1}{1 + e^{\frac{-x}{s}}}
\end{array}

Alternative 1: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{1}{e^{\frac{-x}{s}} + 1} \end{array} \]
(FPCore (x s) :precision binary32 (/ 1.0 (+ (exp (/ (- x) s)) 1.0)))
float code(float x, float s) {
	return 1.0f / (expf((-x / s)) + 1.0f);
}
real(4) function code(x, s)
    real(4), intent (in) :: x
    real(4), intent (in) :: s
    code = 1.0e0 / (exp((-x / s)) + 1.0e0)
end function
function code(x, s)
	return Float32(Float32(1.0) / Float32(exp(Float32(Float32(-x) / s)) + Float32(1.0)))
end
function tmp = code(x, s)
	tmp = single(1.0) / (exp((-x / s)) + single(1.0));
end
\begin{array}{l}

\\
\frac{1}{e^{\frac{-x}{s}} + 1}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
  2. Add Preprocessing
  3. Final simplification99.8%

    \[\leadsto \frac{1}{e^{\frac{-x}{s}} + 1} \]
  4. Add Preprocessing

Alternative 2: 89.3% accurate, 0.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := e^{\frac{-x}{s}}\\ \mathbf{if}\;t\_0 \leq 0.0005000000237487257:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\ \end{array} \end{array} \]
(FPCore (x s)
 :precision binary32
 (let* ((t_0 (exp (/ (- x) s))))
   (if (<= t_0 0.0005000000237487257)
     (/ 1.0 (fma 1.0 (fma 2.0 (/ (/ x s) -2.0) 1.0) 1.0))
     (if (<= t_0 2.0)
       (+ 0.5 (* (/ 0.25 s) x))
       (/ 1.0 (* (* (/ (/ x s) s) x) 0.5))))))
float code(float x, float s) {
	float t_0 = expf((-x / s));
	float tmp;
	if (t_0 <= 0.0005000000237487257f) {
		tmp = 1.0f / fmaf(1.0f, fmaf(2.0f, ((x / s) / -2.0f), 1.0f), 1.0f);
	} else if (t_0 <= 2.0f) {
		tmp = 0.5f + ((0.25f / s) * x);
	} else {
		tmp = 1.0f / ((((x / s) / s) * x) * 0.5f);
	}
	return tmp;
}
function code(x, s)
	t_0 = exp(Float32(Float32(-x) / s))
	tmp = Float32(0.0)
	if (t_0 <= Float32(0.0005000000237487257))
		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(Float32(2.0), Float32(Float32(x / s) / Float32(-2.0)), Float32(1.0)), Float32(1.0)));
	elseif (t_0 <= Float32(2.0))
		tmp = Float32(Float32(0.5) + Float32(Float32(Float32(0.25) / s) * x));
	else
		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(Float32(x / s) / s) * x) * Float32(0.5)));
	end
	return tmp
end
\begin{array}{l}

\\
\begin{array}{l}
t_0 := e^{\frac{-x}{s}}\\
\mathbf{if}\;t\_0 \leq 0.0005000000237487257:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\

\mathbf{elif}\;t\_0 \leq 2:\\
\;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\

\mathbf{else}:\\
\;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (exp.f32 (/.f32 (neg.f32 x) s)) < 5.00000024e-4

    1. Initial program 100.0%

      \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
    4. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
      2. unsub-negN/A

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

        \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
      4. lower-/.f325.1

        \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
    5. Applied rewrites5.1%

      \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
    6. Step-by-step derivation
      1. lift-+.f32N/A

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

        \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
      3. *-lft-identityN/A

        \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
      4. lower-fma.f3299.5

        \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
    7. Applied rewrites98.3%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
    8. Step-by-step derivation
      1. Applied rewrites99.5%

        \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \color{blue}{\frac{\frac{x}{s}}{-2}}, 1\right), 1\right)} \]

      if 5.00000024e-4 < (exp.f32 (/.f32 (neg.f32 x) s)) < 2

      1. Initial program 99.6%

        \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
      2. Add Preprocessing
      3. Taylor expanded in x around 0

        \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
      4. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
        2. *-commutativeN/A

          \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
        3. lower-fma.f32N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
        4. lower-/.f3287.5

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
      5. Applied rewrites86.3%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
      6. Step-by-step derivation
        1. Applied rewrites86.3%

          \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
        2. Step-by-step derivation
          1. Applied rewrites96.2%

            \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]

          if 2 < (exp.f32 (/.f32 (neg.f32 x) s))

          1. Initial program 99.9%

            \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. lift-exp.f32N/A

              \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
            2. lift-/.f32N/A

              \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
            3. lift-neg.f32N/A

              \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
            4. distribute-frac-negN/A

              \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
            5. neg-mul-1N/A

              \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
            6. exp-prodN/A

              \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
            7. lower-pow.f32N/A

              \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
            8. lower-exp.f32N/A

              \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
            9. lower-/.f3299.9

              \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
          4. Applied rewrites99.9%

            \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
          5. Taylor expanded in s around -inf

            \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
          6. Step-by-step derivation
            1. mul-1-negN/A

              \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
            2. unsub-negN/A

              \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
            3. lower--.f32N/A

              \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
            4. lower-/.f32N/A

              \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
            5. +-commutativeN/A

              \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
            6. *-commutativeN/A

              \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
            7. lower-fma.f32N/A

              \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
            8. unpow2N/A

              \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
            9. associate-/l*N/A

              \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
            10. lower-*.f32N/A

              \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
            11. lower-/.f3243.1

              \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
          7. Applied rewrites43.1%

            \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
          8. Taylor expanded in x around inf

            \[\leadsto \frac{1}{\frac{1}{2} \cdot \color{blue}{\frac{{x}^{2}}{{s}^{2}}}} \]
          9. Step-by-step derivation
            1. Applied rewrites69.5%

              \[\leadsto \frac{1}{\left(x \cdot \frac{\frac{x}{s}}{s}\right) \cdot \color{blue}{0.5}} \]
          10. Recombined 3 regimes into one program.
          11. Final simplification86.7%

            \[\leadsto \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.0005000000237487257:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;e^{\frac{-x}{s}} \leq 2:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\ \end{array} \]
          12. Add Preprocessing

          Alternative 3: 86.7% accurate, 0.8× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.0005000000237487257:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \frac{\left(\frac{x}{s} \cdot x\right) \cdot -0.5 + x}{s}}\\ \end{array} \end{array} \]
          (FPCore (x s)
           :precision binary32
           (if (<= (exp (/ (- x) s)) 0.0005000000237487257)
             (/ 1.0 (fma 1.0 (fma 2.0 (/ (/ x s) -2.0) 1.0) 1.0))
             (/ 1.0 (- 2.0 (/ (+ (* (* (/ x s) x) -0.5) x) s)))))
          float code(float x, float s) {
          	float tmp;
          	if (expf((-x / s)) <= 0.0005000000237487257f) {
          		tmp = 1.0f / fmaf(1.0f, fmaf(2.0f, ((x / s) / -2.0f), 1.0f), 1.0f);
          	} else {
          		tmp = 1.0f / (2.0f - (((((x / s) * x) * -0.5f) + x) / s));
          	}
          	return tmp;
          }
          
          function code(x, s)
          	tmp = Float32(0.0)
          	if (exp(Float32(Float32(-x) / s)) <= Float32(0.0005000000237487257))
          		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(Float32(2.0), Float32(Float32(x / s) / Float32(-2.0)), Float32(1.0)), Float32(1.0)));
          	else
          		tmp = Float32(Float32(1.0) / Float32(Float32(2.0) - Float32(Float32(Float32(Float32(Float32(x / s) * x) * Float32(-0.5)) + x) / s)));
          	end
          	return tmp
          end
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.0005000000237487257:\\
          \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{1}{2 - \frac{\left(\frac{x}{s} \cdot x\right) \cdot -0.5 + x}{s}}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (exp.f32 (/.f32 (neg.f32 x) s)) < 5.00000024e-4

            1. Initial program 100.0%

              \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
            2. Add Preprocessing
            3. Taylor expanded in x around 0

              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
            4. Step-by-step derivation
              1. mul-1-negN/A

                \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
              2. unsub-negN/A

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

                \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
              4. lower-/.f325.1

                \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
            5. Applied rewrites5.1%

              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
            6. Step-by-step derivation
              1. lift-+.f32N/A

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

                \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
              3. *-lft-identityN/A

                \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
              4. lower-fma.f3299.5

                \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
            7. Applied rewrites98.3%

              \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
            8. Step-by-step derivation
              1. Applied rewrites99.5%

                \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \color{blue}{\frac{\frac{x}{s}}{-2}}, 1\right), 1\right)} \]

              if 5.00000024e-4 < (exp.f32 (/.f32 (neg.f32 x) s))

              1. Initial program 99.7%

                \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
              2. Add Preprocessing
              3. Step-by-step derivation
                1. lift-exp.f32N/A

                  \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
                2. lift-/.f32N/A

                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
                3. lift-neg.f32N/A

                  \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
                4. distribute-frac-negN/A

                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
                5. neg-mul-1N/A

                  \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
                6. exp-prodN/A

                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                7. lower-pow.f32N/A

                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                8. lower-exp.f32N/A

                  \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
                9. lower-/.f3299.7

                  \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
              4. Applied rewrites99.7%

                \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
              5. Taylor expanded in s around -inf

                \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
              6. Step-by-step derivation
                1. mul-1-negN/A

                  \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
                2. unsub-negN/A

                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                3. lower--.f32N/A

                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                4. lower-/.f32N/A

                  \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                5. +-commutativeN/A

                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
                6. *-commutativeN/A

                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
                7. lower-fma.f32N/A

                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
                8. unpow2N/A

                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
                9. associate-/l*N/A

                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                10. lower-*.f32N/A

                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                11. lower-/.f3265.0

                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
              7. Applied rewrites65.0%

                \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
              8. Step-by-step derivation
                1. Applied rewrites78.0%

                  \[\leadsto \frac{1}{2 - \frac{-0.5 \cdot \left(\frac{x}{s} \cdot x\right) + x}{s}} \]
              9. Recombined 2 regimes into one program.
              10. Final simplification84.4%

                \[\leadsto \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.0005000000237487257:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \frac{\left(\frac{x}{s} \cdot x\right) \cdot -0.5 + x}{s}}\\ \end{array} \]
              11. Add Preprocessing

              Alternative 4: 56.8% accurate, 0.9× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.5:\\ \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \end{array} \]
              (FPCore (x s)
               :precision binary32
               (if (<= (exp (/ (- x) s)) 0.5)
                 (fma 1.0 (* (/ 0.25 s) x) 0.5)
                 (/ 1.0 (+ (- 1.0 (/ x s)) 1.0))))
              float code(float x, float s) {
              	float tmp;
              	if (expf((-x / s)) <= 0.5f) {
              		tmp = fmaf(1.0f, ((0.25f / s) * x), 0.5f);
              	} else {
              		tmp = 1.0f / ((1.0f - (x / s)) + 1.0f);
              	}
              	return tmp;
              }
              
              function code(x, s)
              	tmp = Float32(0.0)
              	if (exp(Float32(Float32(-x) / s)) <= Float32(0.5))
              		tmp = fma(Float32(1.0), Float32(Float32(Float32(0.25) / s) * x), Float32(0.5));
              	else
              		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(1.0) - Float32(x / s)) + Float32(1.0)));
              	end
              	return tmp
              end
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.5:\\
              \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\
              
              \mathbf{else}:\\
              \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 2 regimes
              2. if (exp.f32 (/.f32 (neg.f32 x) s)) < 0.5

                1. Initial program 100.0%

                  \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                2. Add Preprocessing
                3. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                4. Step-by-step derivation
                  1. +-commutativeN/A

                    \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                  2. *-commutativeN/A

                    \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                  3. lower-fma.f32N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                  4. lower-/.f3228.2

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                5. Applied rewrites27.9%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                6. Step-by-step derivation
                  1. Applied rewrites28.2%

                    \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                  2. Step-by-step derivation
                    1. Applied rewrites27.9%

                      \[\leadsto \mathsf{fma}\left(1, \color{blue}{\frac{0.25}{s} \cdot x}, 0.5\right) \]

                    if 0.5 < (exp.f32 (/.f32 (neg.f32 x) s))

                    1. Initial program 99.7%

                      \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around 0

                      \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                    4. Step-by-step derivation
                      1. mul-1-negN/A

                        \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                      2. unsub-negN/A

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

                        \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                      4. lower-/.f3265.2

                        \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                    5. Applied rewrites65.2%

                      \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                  3. Recombined 2 regimes into one program.
                  4. Final simplification53.5%

                    \[\leadsto \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.5:\\ \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \]
                  5. Add Preprocessing

                  Alternative 5: 56.7% accurate, 0.9× speedup?

                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.5:\\ \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \frac{x}{s}}\\ \end{array} \end{array} \]
                  (FPCore (x s)
                   :precision binary32
                   (if (<= (exp (/ (- x) s)) 0.5)
                     (fma 1.0 (* (/ 0.25 s) x) 0.5)
                     (/ 1.0 (- 2.0 (/ x s)))))
                  float code(float x, float s) {
                  	float tmp;
                  	if (expf((-x / s)) <= 0.5f) {
                  		tmp = fmaf(1.0f, ((0.25f / s) * x), 0.5f);
                  	} else {
                  		tmp = 1.0f / (2.0f - (x / s));
                  	}
                  	return tmp;
                  }
                  
                  function code(x, s)
                  	tmp = Float32(0.0)
                  	if (exp(Float32(Float32(-x) / s)) <= Float32(0.5))
                  		tmp = fma(Float32(1.0), Float32(Float32(Float32(0.25) / s) * x), Float32(0.5));
                  	else
                  		tmp = Float32(Float32(1.0) / Float32(Float32(2.0) - Float32(x / s)));
                  	end
                  	return tmp
                  end
                  
                  \begin{array}{l}
                  
                  \\
                  \begin{array}{l}
                  \mathbf{if}\;e^{\frac{-x}{s}} \leq 0.5:\\
                  \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
                  
                  
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 2 regimes
                  2. if (exp.f32 (/.f32 (neg.f32 x) s)) < 0.5

                    1. Initial program 100.0%

                      \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around 0

                      \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                    4. Step-by-step derivation
                      1. +-commutativeN/A

                        \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                      2. *-commutativeN/A

                        \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                      3. lower-fma.f32N/A

                        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                      4. lower-/.f3228.2

                        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                    5. Applied rewrites28.2%

                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                    6. Step-by-step derivation
                      1. Applied rewrites27.9%

                        \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                      2. Step-by-step derivation
                        1. Applied rewrites27.9%

                          \[\leadsto \mathsf{fma}\left(1, \color{blue}{\frac{0.25}{s} \cdot x}, 0.5\right) \]

                        if 0.5 < (exp.f32 (/.f32 (neg.f32 x) s))

                        1. Initial program 99.7%

                          \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around 0

                          \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x}{s}}} \]
                        4. Step-by-step derivation
                          1. mul-1-negN/A

                            \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}} \]
                          2. unsub-negN/A

                            \[\leadsto \frac{1}{\color{blue}{2 - \frac{x}{s}}} \]
                          3. lower--.f32N/A

                            \[\leadsto \frac{1}{\color{blue}{2 - \frac{x}{s}}} \]
                          4. lower-/.f3265.2

                            \[\leadsto \frac{1}{2 - \color{blue}{\frac{x}{s}}} \]
                        5. Applied rewrites65.2%

                          \[\leadsto \frac{1}{\color{blue}{2 - \frac{x}{s}}} \]
                      3. Recombined 2 regimes into one program.
                      4. Add Preprocessing

                      Alternative 6: 90.0% accurate, 1.2× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{-x}{s}\\ \mathbf{if}\;t\_0 \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;t\_0 \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \left(x \cdot x\right) \cdot \left(\frac{\frac{1}{x}}{s} - \frac{0.5}{s \cdot s}\right)}\\ \end{array} \end{array} \]
                      (FPCore (x s)
                       :precision binary32
                       (let* ((t_0 (/ (- x) s)))
                         (if (<= t_0 -5.0)
                           (/ 1.0 (fma 1.0 (fma 2.0 (/ (/ x s) -2.0) 1.0) 1.0))
                           (if (<= t_0 1.0)
                             (+ 0.5 (* (/ 0.25 s) x))
                             (/ 1.0 (- 2.0 (* (* x x) (- (/ (/ 1.0 x) s) (/ 0.5 (* s s))))))))))
                      float code(float x, float s) {
                      	float t_0 = -x / s;
                      	float tmp;
                      	if (t_0 <= -5.0f) {
                      		tmp = 1.0f / fmaf(1.0f, fmaf(2.0f, ((x / s) / -2.0f), 1.0f), 1.0f);
                      	} else if (t_0 <= 1.0f) {
                      		tmp = 0.5f + ((0.25f / s) * x);
                      	} else {
                      		tmp = 1.0f / (2.0f - ((x * x) * (((1.0f / x) / s) - (0.5f / (s * s)))));
                      	}
                      	return tmp;
                      }
                      
                      function code(x, s)
                      	t_0 = Float32(Float32(-x) / s)
                      	tmp = Float32(0.0)
                      	if (t_0 <= Float32(-5.0))
                      		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(Float32(2.0), Float32(Float32(x / s) / Float32(-2.0)), Float32(1.0)), Float32(1.0)));
                      	elseif (t_0 <= Float32(1.0))
                      		tmp = Float32(Float32(0.5) + Float32(Float32(Float32(0.25) / s) * x));
                      	else
                      		tmp = Float32(Float32(1.0) / Float32(Float32(2.0) - Float32(Float32(x * x) * Float32(Float32(Float32(Float32(1.0) / x) / s) - Float32(Float32(0.5) / Float32(s * s))))));
                      	end
                      	return tmp
                      end
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      t_0 := \frac{-x}{s}\\
                      \mathbf{if}\;t\_0 \leq -5:\\
                      \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\
                      
                      \mathbf{elif}\;t\_0 \leq 1:\\
                      \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\frac{1}{2 - \left(x \cdot x\right) \cdot \left(\frac{\frac{1}{x}}{s} - \frac{0.5}{s \cdot s}\right)}\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if (/.f32 (neg.f32 x) s) < -5

                        1. Initial program 100.0%

                          \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around 0

                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                        4. Step-by-step derivation
                          1. mul-1-negN/A

                            \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                          2. unsub-negN/A

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

                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                          4. lower-/.f325.1

                            \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                        5. Applied rewrites5.1%

                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                        6. Step-by-step derivation
                          1. lift-+.f32N/A

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

                            \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                          3. *-lft-identityN/A

                            \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                          4. lower-fma.f3299.5

                            \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                        7. Applied rewrites98.3%

                          \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                        8. Step-by-step derivation
                          1. Applied rewrites99.5%

                            \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \color{blue}{\frac{\frac{x}{s}}{-2}}, 1\right), 1\right)} \]

                          if -5 < (/.f32 (neg.f32 x) s) < 1

                          1. Initial program 99.6%

                            \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around 0

                            \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                          4. Step-by-step derivation
                            1. +-commutativeN/A

                              \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                            2. *-commutativeN/A

                              \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                            3. lower-fma.f32N/A

                              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                            4. lower-/.f3287.5

                              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                          5. Applied rewrites86.3%

                            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                          6. Step-by-step derivation
                            1. Applied rewrites86.3%

                              \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                            2. Step-by-step derivation
                              1. Applied rewrites96.2%

                                \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]

                              if 1 < (/.f32 (neg.f32 x) s)

                              1. Initial program 99.9%

                                \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                              2. Add Preprocessing
                              3. Step-by-step derivation
                                1. lift-exp.f32N/A

                                  \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
                                2. lift-/.f32N/A

                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
                                3. lift-neg.f32N/A

                                  \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
                                4. distribute-frac-negN/A

                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
                                5. neg-mul-1N/A

                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
                                6. exp-prodN/A

                                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                7. lower-pow.f32N/A

                                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                8. lower-exp.f32N/A

                                  \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
                                9. lower-/.f3299.9

                                  \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
                              4. Applied rewrites99.9%

                                \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                              5. Taylor expanded in s around -inf

                                \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                              6. Step-by-step derivation
                                1. mul-1-negN/A

                                  \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
                                2. unsub-negN/A

                                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                3. lower--.f32N/A

                                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                4. lower-/.f32N/A

                                  \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                5. +-commutativeN/A

                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
                                6. *-commutativeN/A

                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
                                7. lower-fma.f32N/A

                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
                                8. unpow2N/A

                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
                                9. associate-/l*N/A

                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                10. lower-*.f32N/A

                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                11. lower-/.f3243.1

                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
                              7. Applied rewrites43.1%

                                \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
                              8. Taylor expanded in x around inf

                                \[\leadsto \frac{1}{2 - {x}^{2} \cdot \color{blue}{\left(\frac{1}{s \cdot x} - \frac{1}{2} \cdot \frac{1}{{s}^{2}}\right)}} \]
                              9. Step-by-step derivation
                                1. Applied rewrites72.7%

                                  \[\leadsto \frac{1}{2 - \left(\frac{\frac{1}{x}}{s} - \frac{0.5}{s \cdot s}\right) \cdot \color{blue}{\left(x \cdot x\right)}} \]
                              10. Recombined 3 regimes into one program.
                              11. Final simplification88.1%

                                \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;\frac{-x}{s} \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \left(x \cdot x\right) \cdot \left(\frac{\frac{1}{x}}{s} - \frac{0.5}{s \cdot s}\right)}\\ \end{array} \]
                              12. Add Preprocessing

                              Alternative 7: 90.0% accurate, 1.3× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{-x}{s}\\ \mathbf{if}\;t\_0 \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;t\_0 \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{0.5}{s \cdot s} - \frac{\frac{1}{x}}{s}\right) \cdot \left(x \cdot x\right)}\\ \end{array} \end{array} \]
                              (FPCore (x s)
                               :precision binary32
                               (let* ((t_0 (/ (- x) s)))
                                 (if (<= t_0 -5.0)
                                   (/ 1.0 (fma 1.0 (fma 2.0 (/ (/ x s) -2.0) 1.0) 1.0))
                                   (if (<= t_0 1.0)
                                     (+ 0.5 (* (/ 0.25 s) x))
                                     (/ 1.0 (* (- (/ 0.5 (* s s)) (/ (/ 1.0 x) s)) (* x x)))))))
                              float code(float x, float s) {
                              	float t_0 = -x / s;
                              	float tmp;
                              	if (t_0 <= -5.0f) {
                              		tmp = 1.0f / fmaf(1.0f, fmaf(2.0f, ((x / s) / -2.0f), 1.0f), 1.0f);
                              	} else if (t_0 <= 1.0f) {
                              		tmp = 0.5f + ((0.25f / s) * x);
                              	} else {
                              		tmp = 1.0f / (((0.5f / (s * s)) - ((1.0f / x) / s)) * (x * x));
                              	}
                              	return tmp;
                              }
                              
                              function code(x, s)
                              	t_0 = Float32(Float32(-x) / s)
                              	tmp = Float32(0.0)
                              	if (t_0 <= Float32(-5.0))
                              		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(Float32(2.0), Float32(Float32(x / s) / Float32(-2.0)), Float32(1.0)), Float32(1.0)));
                              	elseif (t_0 <= Float32(1.0))
                              		tmp = Float32(Float32(0.5) + Float32(Float32(Float32(0.25) / s) * x));
                              	else
                              		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(Float32(0.5) / Float32(s * s)) - Float32(Float32(Float32(1.0) / x) / s)) * Float32(x * x)));
                              	end
                              	return tmp
                              end
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := \frac{-x}{s}\\
                              \mathbf{if}\;t\_0 \leq -5:\\
                              \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\
                              
                              \mathbf{elif}\;t\_0 \leq 1:\\
                              \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;\frac{1}{\left(\frac{0.5}{s \cdot s} - \frac{\frac{1}{x}}{s}\right) \cdot \left(x \cdot x\right)}\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 3 regimes
                              2. if (/.f32 (neg.f32 x) s) < -5

                                1. Initial program 100.0%

                                  \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                2. Add Preprocessing
                                3. Taylor expanded in x around 0

                                  \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                4. Step-by-step derivation
                                  1. mul-1-negN/A

                                    \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                  2. unsub-negN/A

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

                                    \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                  4. lower-/.f325.1

                                    \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                5. Applied rewrites5.1%

                                  \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                6. Step-by-step derivation
                                  1. lift-+.f32N/A

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

                                    \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                  3. *-lft-identityN/A

                                    \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                  4. lower-fma.f3299.5

                                    \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                7. Applied rewrites99.5%

                                  \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                8. Step-by-step derivation
                                  1. Applied rewrites99.5%

                                    \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \color{blue}{\frac{\frac{x}{s}}{-2}}, 1\right), 1\right)} \]

                                  if -5 < (/.f32 (neg.f32 x) s) < 1

                                  1. Initial program 99.6%

                                    \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in x around 0

                                    \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                                  4. Step-by-step derivation
                                    1. +-commutativeN/A

                                      \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                                    2. *-commutativeN/A

                                      \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                                    3. lower-fma.f32N/A

                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                                    4. lower-/.f3287.5

                                      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                                  5. Applied rewrites86.3%

                                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                                  6. Step-by-step derivation
                                    1. Applied rewrites86.3%

                                      \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                                    2. Step-by-step derivation
                                      1. Applied rewrites96.2%

                                        \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]

                                      if 1 < (/.f32 (neg.f32 x) s)

                                      1. Initial program 99.9%

                                        \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                      2. Add Preprocessing
                                      3. Step-by-step derivation
                                        1. lift-exp.f32N/A

                                          \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
                                        2. lift-/.f32N/A

                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
                                        3. lift-neg.f32N/A

                                          \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
                                        4. distribute-frac-negN/A

                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
                                        5. neg-mul-1N/A

                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
                                        6. exp-prodN/A

                                          \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                        7. lower-pow.f32N/A

                                          \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                        8. lower-exp.f32N/A

                                          \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
                                        9. lower-/.f3299.9

                                          \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
                                      4. Applied rewrites99.9%

                                        \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                      5. Taylor expanded in s around -inf

                                        \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                      6. Step-by-step derivation
                                        1. mul-1-negN/A

                                          \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
                                        2. unsub-negN/A

                                          \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                        3. lower--.f32N/A

                                          \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                        4. lower-/.f32N/A

                                          \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                        5. +-commutativeN/A

                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
                                        6. *-commutativeN/A

                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
                                        7. lower-fma.f32N/A

                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
                                        8. unpow2N/A

                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
                                        9. associate-/l*N/A

                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                        10. lower-*.f32N/A

                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                        11. lower-/.f3243.1

                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
                                      7. Applied rewrites43.1%

                                        \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
                                      8. Taylor expanded in x around inf

                                        \[\leadsto \frac{1}{{x}^{2} \cdot \color{blue}{\left(\frac{1}{2} \cdot \frac{1}{{s}^{2}} - \frac{1}{s \cdot x}\right)}} \]
                                      9. Step-by-step derivation
                                        1. Applied rewrites72.7%

                                          \[\leadsto \frac{1}{\left(\frac{0.5}{s \cdot s} - \frac{\frac{1}{x}}{s}\right) \cdot \color{blue}{\left(x \cdot x\right)}} \]
                                      10. Recombined 3 regimes into one program.
                                      11. Final simplification88.1%

                                        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(2, \frac{\frac{x}{s}}{-2}, 1\right), 1\right)}\\ \mathbf{elif}\;\frac{-x}{s} \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{0.5}{s \cdot s} - \frac{\frac{1}{x}}{s}\right) \cdot \left(x \cdot x\right)}\\ \end{array} \]
                                      12. Add Preprocessing

                                      Alternative 8: 89.3% accurate, 1.6× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{-x}{s}\\ \mathbf{if}\;t\_0 \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{elif}\;t\_0 \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\ \end{array} \end{array} \]
                                      (FPCore (x s)
                                       :precision binary32
                                       (let* ((t_0 (/ (- x) s)))
                                         (if (<= t_0 -5.0)
                                           (/ 1.0 (fma 1.0 (fma x (/ -1.0 s) 1.0) 1.0))
                                           (if (<= t_0 1.0)
                                             (+ 0.5 (* (/ 0.25 s) x))
                                             (/ 1.0 (* (* (/ (/ x s) s) x) 0.5))))))
                                      float code(float x, float s) {
                                      	float t_0 = -x / s;
                                      	float tmp;
                                      	if (t_0 <= -5.0f) {
                                      		tmp = 1.0f / fmaf(1.0f, fmaf(x, (-1.0f / s), 1.0f), 1.0f);
                                      	} else if (t_0 <= 1.0f) {
                                      		tmp = 0.5f + ((0.25f / s) * x);
                                      	} else {
                                      		tmp = 1.0f / ((((x / s) / s) * x) * 0.5f);
                                      	}
                                      	return tmp;
                                      }
                                      
                                      function code(x, s)
                                      	t_0 = Float32(Float32(-x) / s)
                                      	tmp = Float32(0.0)
                                      	if (t_0 <= Float32(-5.0))
                                      		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(x, Float32(Float32(-1.0) / s), Float32(1.0)), Float32(1.0)));
                                      	elseif (t_0 <= Float32(1.0))
                                      		tmp = Float32(Float32(0.5) + Float32(Float32(Float32(0.25) / s) * x));
                                      	else
                                      		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(Float32(x / s) / s) * x) * Float32(0.5)));
                                      	end
                                      	return tmp
                                      end
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      t_0 := \frac{-x}{s}\\
                                      \mathbf{if}\;t\_0 \leq -5:\\
                                      \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\
                                      
                                      \mathbf{elif}\;t\_0 \leq 1:\\
                                      \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 3 regimes
                                      2. if (/.f32 (neg.f32 x) s) < -5

                                        1. Initial program 100.0%

                                          \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in x around 0

                                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                        4. Step-by-step derivation
                                          1. mul-1-negN/A

                                            \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                          2. unsub-negN/A

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

                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                          4. lower-/.f325.1

                                            \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                        5. Applied rewrites5.1%

                                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                        6. Step-by-step derivation
                                          1. lift-+.f32N/A

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

                                            \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                          3. *-lft-identityN/A

                                            \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                          4. lower-fma.f3299.5

                                            \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                        7. Applied rewrites98.3%

                                          \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                        8. Step-by-step derivation
                                          1. Applied rewrites99.5%

                                            \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \color{blue}{\frac{-1}{s}}, 1\right), 1\right)} \]

                                          if -5 < (/.f32 (neg.f32 x) s) < 1

                                          1. Initial program 99.6%

                                            \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                          2. Add Preprocessing
                                          3. Taylor expanded in x around 0

                                            \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                                          4. Step-by-step derivation
                                            1. +-commutativeN/A

                                              \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                                            2. *-commutativeN/A

                                              \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                                            3. lower-fma.f32N/A

                                              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                                            4. lower-/.f3287.5

                                              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                                          5. Applied rewrites86.3%

                                            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                                          6. Step-by-step derivation
                                            1. Applied rewrites86.3%

                                              \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                                            2. Step-by-step derivation
                                              1. Applied rewrites96.2%

                                                \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]

                                              if 1 < (/.f32 (neg.f32 x) s)

                                              1. Initial program 99.9%

                                                \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                              2. Add Preprocessing
                                              3. Step-by-step derivation
                                                1. lift-exp.f32N/A

                                                  \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
                                                2. lift-/.f32N/A

                                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
                                                3. lift-neg.f32N/A

                                                  \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
                                                4. distribute-frac-negN/A

                                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
                                                5. neg-mul-1N/A

                                                  \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
                                                6. exp-prodN/A

                                                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                                7. lower-pow.f32N/A

                                                  \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                                8. lower-exp.f32N/A

                                                  \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
                                                9. lower-/.f3299.9

                                                  \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
                                              4. Applied rewrites99.9%

                                                \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                              5. Taylor expanded in s around -inf

                                                \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                              6. Step-by-step derivation
                                                1. mul-1-negN/A

                                                  \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
                                                2. unsub-negN/A

                                                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                3. lower--.f32N/A

                                                  \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                4. lower-/.f32N/A

                                                  \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                5. +-commutativeN/A

                                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
                                                6. *-commutativeN/A

                                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
                                                7. lower-fma.f32N/A

                                                  \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
                                                8. unpow2N/A

                                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
                                                9. associate-/l*N/A

                                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                                10. lower-*.f32N/A

                                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                                11. lower-/.f3243.1

                                                  \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
                                              7. Applied rewrites43.1%

                                                \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
                                              8. Taylor expanded in x around inf

                                                \[\leadsto \frac{1}{\frac{1}{2} \cdot \color{blue}{\frac{{x}^{2}}{{s}^{2}}}} \]
                                              9. Step-by-step derivation
                                                1. Applied rewrites69.5%

                                                  \[\leadsto \frac{1}{\left(x \cdot \frac{\frac{x}{s}}{s}\right) \cdot \color{blue}{0.5}} \]
                                              10. Recombined 3 regimes into one program.
                                              11. Final simplification86.9%

                                                \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{elif}\;\frac{-x}{s} \leq 1:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(\frac{\frac{x}{s}}{s} \cdot x\right) \cdot 0.5}\\ \end{array} \]
                                              12. Add Preprocessing

                                              Alternative 9: 80.0% accurate, 1.6× speedup?

                                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{-x}{s}\\ \mathbf{if}\;t\_0 \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{elif}\;t\_0 \leq 200:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \frac{\mathsf{fma}\left(-0.5, x, s\right) \cdot x}{s \cdot s}}\\ \end{array} \end{array} \]
                                              (FPCore (x s)
                                               :precision binary32
                                               (let* ((t_0 (/ (- x) s)))
                                                 (if (<= t_0 -5.0)
                                                   (/ 1.0 (fma 1.0 (fma x (/ -1.0 s) 1.0) 1.0))
                                                   (if (<= t_0 200.0)
                                                     (+ 0.5 (* (/ 0.25 s) x))
                                                     (/ 1.0 (- 2.0 (/ (* (fma -0.5 x s) x) (* s s))))))))
                                              float code(float x, float s) {
                                              	float t_0 = -x / s;
                                              	float tmp;
                                              	if (t_0 <= -5.0f) {
                                              		tmp = 1.0f / fmaf(1.0f, fmaf(x, (-1.0f / s), 1.0f), 1.0f);
                                              	} else if (t_0 <= 200.0f) {
                                              		tmp = 0.5f + ((0.25f / s) * x);
                                              	} else {
                                              		tmp = 1.0f / (2.0f - ((fmaf(-0.5f, x, s) * x) / (s * s)));
                                              	}
                                              	return tmp;
                                              }
                                              
                                              function code(x, s)
                                              	t_0 = Float32(Float32(-x) / s)
                                              	tmp = Float32(0.0)
                                              	if (t_0 <= Float32(-5.0))
                                              		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(x, Float32(Float32(-1.0) / s), Float32(1.0)), Float32(1.0)));
                                              	elseif (t_0 <= Float32(200.0))
                                              		tmp = Float32(Float32(0.5) + Float32(Float32(Float32(0.25) / s) * x));
                                              	else
                                              		tmp = Float32(Float32(1.0) / Float32(Float32(2.0) - Float32(Float32(fma(Float32(-0.5), x, s) * x) / Float32(s * s))));
                                              	end
                                              	return tmp
                                              end
                                              
                                              \begin{array}{l}
                                              
                                              \\
                                              \begin{array}{l}
                                              t_0 := \frac{-x}{s}\\
                                              \mathbf{if}\;t\_0 \leq -5:\\
                                              \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\
                                              
                                              \mathbf{elif}\;t\_0 \leq 200:\\
                                              \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\
                                              
                                              \mathbf{else}:\\
                                              \;\;\;\;\frac{1}{2 - \frac{\mathsf{fma}\left(-0.5, x, s\right) \cdot x}{s \cdot s}}\\
                                              
                                              
                                              \end{array}
                                              \end{array}
                                              
                                              Derivation
                                              1. Split input into 3 regimes
                                              2. if (/.f32 (neg.f32 x) s) < -5

                                                1. Initial program 100.0%

                                                  \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in x around 0

                                                  \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                4. Step-by-step derivation
                                                  1. mul-1-negN/A

                                                    \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                  2. unsub-negN/A

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

                                                    \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                  4. lower-/.f325.1

                                                    \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                5. Applied rewrites5.1%

                                                  \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                6. Step-by-step derivation
                                                  1. lift-+.f32N/A

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

                                                    \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                                  3. *-lft-identityN/A

                                                    \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                                  4. lower-fma.f3299.5

                                                    \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                7. Applied rewrites98.3%

                                                  \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                8. Step-by-step derivation
                                                  1. Applied rewrites99.5%

                                                    \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \color{blue}{\frac{-1}{s}}, 1\right), 1\right)} \]

                                                  if -5 < (/.f32 (neg.f32 x) s) < 200

                                                  1. Initial program 99.4%

                                                    \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                  2. Add Preprocessing
                                                  3. Taylor expanded in x around 0

                                                    \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                                                  4. Step-by-step derivation
                                                    1. +-commutativeN/A

                                                      \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                                                    2. *-commutativeN/A

                                                      \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                                                    3. lower-fma.f32N/A

                                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                                                    4. lower-/.f3283.9

                                                      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                                                  5. Applied rewrites82.8%

                                                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                                                  6. Step-by-step derivation
                                                    1. Applied rewrites82.8%

                                                      \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                                                    2. Step-by-step derivation
                                                      1. Applied rewrites91.7%

                                                        \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]

                                                      if 200 < (/.f32 (neg.f32 x) s)

                                                      1. Initial program 100.0%

                                                        \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                      2. Add Preprocessing
                                                      3. Step-by-step derivation
                                                        1. lift-exp.f32N/A

                                                          \[\leadsto \frac{1}{1 + \color{blue}{e^{\frac{-x}{s}}}} \]
                                                        2. lift-/.f32N/A

                                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{\frac{-x}{s}}}} \]
                                                        3. lift-neg.f32N/A

                                                          \[\leadsto \frac{1}{1 + e^{\frac{\color{blue}{\mathsf{neg}\left(x\right)}}{s}}} \]
                                                        4. distribute-frac-negN/A

                                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{\mathsf{neg}\left(\frac{x}{s}\right)}}} \]
                                                        5. neg-mul-1N/A

                                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{-1 \cdot \frac{x}{s}}}} \]
                                                        6. exp-prodN/A

                                                          \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                                        7. lower-pow.f32N/A

                                                          \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                                        8. lower-exp.f32N/A

                                                          \[\leadsto \frac{1}{1 + {\color{blue}{\left(e^{-1}\right)}}^{\left(\frac{x}{s}\right)}} \]
                                                        9. lower-/.f32100.0

                                                          \[\leadsto \frac{1}{1 + {\left(e^{-1}\right)}^{\color{blue}{\left(\frac{x}{s}\right)}}} \]
                                                      4. Applied rewrites100.0%

                                                        \[\leadsto \frac{1}{1 + \color{blue}{{\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}} \]
                                                      5. Taylor expanded in s around -inf

                                                        \[\leadsto \frac{1}{\color{blue}{2 + -1 \cdot \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                      6. Step-by-step derivation
                                                        1. mul-1-negN/A

                                                          \[\leadsto \frac{1}{2 + \color{blue}{\left(\mathsf{neg}\left(\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}\right)\right)}} \]
                                                        2. unsub-negN/A

                                                          \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                        3. lower--.f32N/A

                                                          \[\leadsto \frac{1}{\color{blue}{2 - \frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                        4. lower-/.f32N/A

                                                          \[\leadsto \frac{1}{2 - \color{blue}{\frac{x + \frac{-1}{2} \cdot \frac{{x}^{2}}{s}}{s}}} \]
                                                        5. +-commutativeN/A

                                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2}}{s} + x}}{s}} \]
                                                        6. *-commutativeN/A

                                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\frac{{x}^{2}}{s} \cdot \frac{-1}{2}} + x}{s}} \]
                                                        7. lower-fma.f32N/A

                                                          \[\leadsto \frac{1}{2 - \frac{\color{blue}{\mathsf{fma}\left(\frac{{x}^{2}}{s}, \frac{-1}{2}, x\right)}}{s}} \]
                                                        8. unpow2N/A

                                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\frac{\color{blue}{x \cdot x}}{s}, \frac{-1}{2}, x\right)}{s}} \]
                                                        9. associate-/l*N/A

                                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                                        10. lower-*.f32N/A

                                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(\color{blue}{x \cdot \frac{x}{s}}, \frac{-1}{2}, x\right)}{s}} \]
                                                        11. lower-/.f3244.2

                                                          \[\leadsto \frac{1}{2 - \frac{\mathsf{fma}\left(x \cdot \color{blue}{\frac{x}{s}}, -0.5, x\right)}{s}} \]
                                                      7. Applied rewrites44.2%

                                                        \[\leadsto \frac{1}{\color{blue}{2 - \frac{\mathsf{fma}\left(x \cdot \frac{x}{s}, -0.5, x\right)}{s}}} \]
                                                      8. Taylor expanded in s around 0

                                                        \[\leadsto \frac{1}{2 - \frac{\frac{-1}{2} \cdot {x}^{2} + s \cdot x}{\color{blue}{{s}^{2}}}} \]
                                                      9. Step-by-step derivation
                                                        1. Applied rewrites49.8%

                                                          \[\leadsto \frac{1}{2 - \frac{x \cdot \mathsf{fma}\left(-0.5, x, s\right)}{\color{blue}{s \cdot s}}} \]
                                                      10. Recombined 3 regimes into one program.
                                                      11. Final simplification78.5%

                                                        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{elif}\;\frac{-x}{s} \leq 200:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - \frac{\mathsf{fma}\left(-0.5, x, s\right) \cdot x}{s \cdot s}}\\ \end{array} \]
                                                      12. Add Preprocessing

                                                      Alternative 10: 74.2% accurate, 2.4× speedup?

                                                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \end{array} \]
                                                      (FPCore (x s)
                                                       :precision binary32
                                                       (if (<= (/ (- x) s) -1.0)
                                                         (/ 1.0 (fma 1.0 (fma x (/ -1.0 s) 1.0) 1.0))
                                                         (/ 1.0 (+ (- 1.0 (/ x s)) 1.0))))
                                                      float code(float x, float s) {
                                                      	float tmp;
                                                      	if ((-x / s) <= -1.0f) {
                                                      		tmp = 1.0f / fmaf(1.0f, fmaf(x, (-1.0f / s), 1.0f), 1.0f);
                                                      	} else {
                                                      		tmp = 1.0f / ((1.0f - (x / s)) + 1.0f);
                                                      	}
                                                      	return tmp;
                                                      }
                                                      
                                                      function code(x, s)
                                                      	tmp = Float32(0.0)
                                                      	if (Float32(Float32(-x) / s) <= Float32(-1.0))
                                                      		tmp = Float32(Float32(1.0) / fma(Float32(1.0), fma(x, Float32(Float32(-1.0) / s), Float32(1.0)), Float32(1.0)));
                                                      	else
                                                      		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(1.0) - Float32(x / s)) + Float32(1.0)));
                                                      	end
                                                      	return tmp
                                                      end
                                                      
                                                      \begin{array}{l}
                                                      
                                                      \\
                                                      \begin{array}{l}
                                                      \mathbf{if}\;\frac{-x}{s} \leq -1:\\
                                                      \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\
                                                      
                                                      \mathbf{else}:\\
                                                      \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\
                                                      
                                                      
                                                      \end{array}
                                                      \end{array}
                                                      
                                                      Derivation
                                                      1. Split input into 2 regimes
                                                      2. if (/.f32 (neg.f32 x) s) < -1

                                                        1. Initial program 100.0%

                                                          \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                        2. Add Preprocessing
                                                        3. Taylor expanded in x around 0

                                                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                        4. Step-by-step derivation
                                                          1. mul-1-negN/A

                                                            \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                          2. unsub-negN/A

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

                                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                          4. lower-/.f325.4

                                                            \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                        5. Applied rewrites5.4%

                                                          \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                        6. Step-by-step derivation
                                                          1. lift-+.f32N/A

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

                                                            \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                                          3. *-lft-identityN/A

                                                            \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                                          4. lower-fma.f3298.6

                                                            \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                        7. Applied rewrites97.5%

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

                                                            \[\leadsto \frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \color{blue}{\frac{-1}{s}}, 1\right), 1\right)} \]

                                                          if -1 < (/.f32 (neg.f32 x) s)

                                                          1. Initial program 99.7%

                                                            \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                          2. Add Preprocessing
                                                          3. Taylor expanded in x around 0

                                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                          4. Step-by-step derivation
                                                            1. mul-1-negN/A

                                                              \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                            2. unsub-negN/A

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

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                            4. lower-/.f3265.2

                                                              \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                          5. Applied rewrites65.2%

                                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                        9. Recombined 2 regimes into one program.
                                                        10. Final simplification75.7%

                                                          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \mathsf{fma}\left(x, \frac{-1}{s}, 1\right), 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \]
                                                        11. Add Preprocessing

                                                        Alternative 11: 74.3% accurate, 2.5× speedup?

                                                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := 1 - \frac{x}{s}\\ \mathbf{if}\;\frac{-x}{s} \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, t\_0, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{t\_0 + 1}\\ \end{array} \end{array} \]
                                                        (FPCore (x s)
                                                         :precision binary32
                                                         (let* ((t_0 (- 1.0 (/ x s))))
                                                           (if (<= (/ (- x) s) -1.0) (/ 1.0 (fma 1.0 t_0 1.0)) (/ 1.0 (+ t_0 1.0)))))
                                                        float code(float x, float s) {
                                                        	float t_0 = 1.0f - (x / s);
                                                        	float tmp;
                                                        	if ((-x / s) <= -1.0f) {
                                                        		tmp = 1.0f / fmaf(1.0f, t_0, 1.0f);
                                                        	} else {
                                                        		tmp = 1.0f / (t_0 + 1.0f);
                                                        	}
                                                        	return tmp;
                                                        }
                                                        
                                                        function code(x, s)
                                                        	t_0 = Float32(Float32(1.0) - Float32(x / s))
                                                        	tmp = Float32(0.0)
                                                        	if (Float32(Float32(-x) / s) <= Float32(-1.0))
                                                        		tmp = Float32(Float32(1.0) / fma(Float32(1.0), t_0, Float32(1.0)));
                                                        	else
                                                        		tmp = Float32(Float32(1.0) / Float32(t_0 + Float32(1.0)));
                                                        	end
                                                        	return tmp
                                                        end
                                                        
                                                        \begin{array}{l}
                                                        
                                                        \\
                                                        \begin{array}{l}
                                                        t_0 := 1 - \frac{x}{s}\\
                                                        \mathbf{if}\;\frac{-x}{s} \leq -1:\\
                                                        \;\;\;\;\frac{1}{\mathsf{fma}\left(1, t\_0, 1\right)}\\
                                                        
                                                        \mathbf{else}:\\
                                                        \;\;\;\;\frac{1}{t\_0 + 1}\\
                                                        
                                                        
                                                        \end{array}
                                                        \end{array}
                                                        
                                                        Derivation
                                                        1. Split input into 2 regimes
                                                        2. if (/.f32 (neg.f32 x) s) < -1

                                                          1. Initial program 100.0%

                                                            \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                          2. Add Preprocessing
                                                          3. Taylor expanded in x around 0

                                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                          4. Step-by-step derivation
                                                            1. mul-1-negN/A

                                                              \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                            2. unsub-negN/A

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

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                            4. lower-/.f325.4

                                                              \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                          5. Applied rewrites5.4%

                                                            \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                          6. Step-by-step derivation
                                                            1. lift-+.f32N/A

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

                                                              \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                                            3. *-lft-identityN/A

                                                              \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                                            4. lower-fma.f3298.6

                                                              \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                          7. Applied rewrites97.5%

                                                            \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                          8. Step-by-step derivation
                                                            1. Applied rewrites97.5%

                                                              \[\leadsto \frac{1}{\mathsf{fma}\left(1, 1 + \color{blue}{\frac{-x}{s}}, 1\right)} \]

                                                            if -1 < (/.f32 (neg.f32 x) s)

                                                            1. Initial program 99.7%

                                                              \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in x around 0

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                            4. Step-by-step derivation
                                                              1. mul-1-negN/A

                                                                \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                              2. unsub-negN/A

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

                                                                \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                              4. lower-/.f3265.2

                                                                \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                            5. Applied rewrites65.2%

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                          9. Recombined 2 regimes into one program.
                                                          10. Final simplification75.7%

                                                            \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \]
                                                          11. Add Preprocessing

                                                          Alternative 12: 74.3% accurate, 2.6× speedup?

                                                          \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{-x}{s}\\ \mathbf{if}\;t\_0 \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, t\_0, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \end{array} \]
                                                          (FPCore (x s)
                                                           :precision binary32
                                                           (let* ((t_0 (/ (- x) s)))
                                                             (if (<= t_0 -1.0)
                                                               (/ 1.0 (fma 1.0 t_0 1.0))
                                                               (/ 1.0 (+ (- 1.0 (/ x s)) 1.0)))))
                                                          float code(float x, float s) {
                                                          	float t_0 = -x / s;
                                                          	float tmp;
                                                          	if (t_0 <= -1.0f) {
                                                          		tmp = 1.0f / fmaf(1.0f, t_0, 1.0f);
                                                          	} else {
                                                          		tmp = 1.0f / ((1.0f - (x / s)) + 1.0f);
                                                          	}
                                                          	return tmp;
                                                          }
                                                          
                                                          function code(x, s)
                                                          	t_0 = Float32(Float32(-x) / s)
                                                          	tmp = Float32(0.0)
                                                          	if (t_0 <= Float32(-1.0))
                                                          		tmp = Float32(Float32(1.0) / fma(Float32(1.0), t_0, Float32(1.0)));
                                                          	else
                                                          		tmp = Float32(Float32(1.0) / Float32(Float32(Float32(1.0) - Float32(x / s)) + Float32(1.0)));
                                                          	end
                                                          	return tmp
                                                          end
                                                          
                                                          \begin{array}{l}
                                                          
                                                          \\
                                                          \begin{array}{l}
                                                          t_0 := \frac{-x}{s}\\
                                                          \mathbf{if}\;t\_0 \leq -1:\\
                                                          \;\;\;\;\frac{1}{\mathsf{fma}\left(1, t\_0, 1\right)}\\
                                                          
                                                          \mathbf{else}:\\
                                                          \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\
                                                          
                                                          
                                                          \end{array}
                                                          \end{array}
                                                          
                                                          Derivation
                                                          1. Split input into 2 regimes
                                                          2. if (/.f32 (neg.f32 x) s) < -1

                                                            1. Initial program 100.0%

                                                              \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in x around 0

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                            4. Step-by-step derivation
                                                              1. mul-1-negN/A

                                                                \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                              2. unsub-negN/A

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

                                                                \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                              4. lower-/.f325.4

                                                                \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                            5. Applied rewrites5.4%

                                                              \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                            6. Step-by-step derivation
                                                              1. lift-+.f32N/A

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

                                                                \[\leadsto \frac{1}{\color{blue}{\left(1 - \frac{x}{s}\right) + 1}} \]
                                                              3. *-lft-identityN/A

                                                                \[\leadsto \frac{1}{\color{blue}{1 \cdot \left(1 - \frac{x}{s}\right)} + 1} \]
                                                              4. lower-fma.f3298.6

                                                                \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                            7. Applied rewrites97.5%

                                                              \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(1, 1 - \frac{x}{s}, 1\right)}} \]
                                                            8. Taylor expanded in x around inf

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

                                                                \[\leadsto \frac{1}{\mathsf{fma}\left(1, \frac{-x}{\color{blue}{s}}, 1\right)} \]

                                                              if -1 < (/.f32 (neg.f32 x) s)

                                                              1. Initial program 99.7%

                                                                \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                              2. Add Preprocessing
                                                              3. Taylor expanded in x around 0

                                                                \[\leadsto \frac{1}{1 + \color{blue}{\left(1 + -1 \cdot \frac{x}{s}\right)}} \]
                                                              4. Step-by-step derivation
                                                                1. mul-1-negN/A

                                                                  \[\leadsto \frac{1}{1 + \left(1 + \color{blue}{\left(\mathsf{neg}\left(\frac{x}{s}\right)\right)}\right)} \]
                                                                2. unsub-negN/A

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

                                                                  \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                                4. lower-/.f3265.2

                                                                  \[\leadsto \frac{1}{1 + \left(1 - \color{blue}{\frac{x}{s}}\right)} \]
                                                              5. Applied rewrites65.2%

                                                                \[\leadsto \frac{1}{1 + \color{blue}{\left(1 - \frac{x}{s}\right)}} \]
                                                            10. Recombined 2 regimes into one program.
                                                            11. Final simplification75.7%

                                                              \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -1:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(1, \frac{-x}{s}, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\left(1 - \frac{x}{s}\right) + 1}\\ \end{array} \]
                                                            12. Add Preprocessing

                                                            Alternative 13: 44.1% accurate, 3.0× speedup?

                                                            \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{0.25}{s} \cdot x\\ \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\mathsf{fma}\left(1, t\_0, 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;0.5 + t\_0\\ \end{array} \end{array} \]
                                                            (FPCore (x s)
                                                             :precision binary32
                                                             (let* ((t_0 (* (/ 0.25 s) x)))
                                                               (if (<= (/ (- x) s) -5.0) (fma 1.0 t_0 0.5) (+ 0.5 t_0))))
                                                            float code(float x, float s) {
                                                            	float t_0 = (0.25f / s) * x;
                                                            	float tmp;
                                                            	if ((-x / s) <= -5.0f) {
                                                            		tmp = fmaf(1.0f, t_0, 0.5f);
                                                            	} else {
                                                            		tmp = 0.5f + t_0;
                                                            	}
                                                            	return tmp;
                                                            }
                                                            
                                                            function code(x, s)
                                                            	t_0 = Float32(Float32(Float32(0.25) / s) * x)
                                                            	tmp = Float32(0.0)
                                                            	if (Float32(Float32(-x) / s) <= Float32(-5.0))
                                                            		tmp = fma(Float32(1.0), t_0, Float32(0.5));
                                                            	else
                                                            		tmp = Float32(Float32(0.5) + t_0);
                                                            	end
                                                            	return tmp
                                                            end
                                                            
                                                            \begin{array}{l}
                                                            
                                                            \\
                                                            \begin{array}{l}
                                                            t_0 := \frac{0.25}{s} \cdot x\\
                                                            \mathbf{if}\;\frac{-x}{s} \leq -5:\\
                                                            \;\;\;\;\mathsf{fma}\left(1, t\_0, 0.5\right)\\
                                                            
                                                            \mathbf{else}:\\
                                                            \;\;\;\;0.5 + t\_0\\
                                                            
                                                            
                                                            \end{array}
                                                            \end{array}
                                                            
                                                            Derivation
                                                            1. Split input into 2 regimes
                                                            2. if (/.f32 (neg.f32 x) s) < -5

                                                              1. Initial program 100.0%

                                                                \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                              2. Add Preprocessing
                                                              3. Taylor expanded in x around 0

                                                                \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                                                              4. Step-by-step derivation
                                                                1. +-commutativeN/A

                                                                  \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                                                                2. *-commutativeN/A

                                                                  \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                                                                3. lower-fma.f32N/A

                                                                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                                                                4. lower-/.f3228.1

                                                                  \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                                                              5. Applied rewrites27.9%

                                                                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                                                              6. Step-by-step derivation
                                                                1. Applied rewrites27.9%

                                                                  \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                                                                2. Step-by-step derivation
                                                                  1. Applied rewrites27.9%

                                                                    \[\leadsto \mathsf{fma}\left(1, \color{blue}{\frac{0.25}{s} \cdot x}, 0.5\right) \]

                                                                  if -5 < (/.f32 (neg.f32 x) s)

                                                                  1. Initial program 99.7%

                                                                    \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                                  2. Add Preprocessing
                                                                  3. Taylor expanded in x around 0

                                                                    \[\leadsto \color{blue}{\frac{1}{2} + \frac{1}{4} \cdot \frac{x}{s}} \]
                                                                  4. Step-by-step derivation
                                                                    1. +-commutativeN/A

                                                                      \[\leadsto \color{blue}{\frac{1}{4} \cdot \frac{x}{s} + \frac{1}{2}} \]
                                                                    2. *-commutativeN/A

                                                                      \[\leadsto \color{blue}{\frac{x}{s} \cdot \frac{1}{4}} + \frac{1}{2} \]
                                                                    3. lower-fma.f32N/A

                                                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, \frac{1}{4}, \frac{1}{2}\right)} \]
                                                                    4. lower-/.f3242.3

                                                                      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{s}}, 0.25, 0.5\right) \]
                                                                  5. Applied rewrites42.3%

                                                                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{s}, 0.25, 0.5\right)} \]
                                                                  6. Step-by-step derivation
                                                                    1. Applied rewrites42.3%

                                                                      \[\leadsto \mathsf{fma}\left(\left(x \cdot 1\right) \cdot \frac{1}{s}, 0.25, 0.5\right) \]
                                                                    2. Step-by-step derivation
                                                                      1. Applied rewrites44.7%

                                                                        \[\leadsto \frac{0.25}{s} \cdot x + \color{blue}{0.5} \]
                                                                    3. Recombined 2 regimes into one program.
                                                                    4. Final simplification39.6%

                                                                      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{-x}{s} \leq -5:\\ \;\;\;\;\mathsf{fma}\left(1, \frac{0.25}{s} \cdot x, 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;0.5 + \frac{0.25}{s} \cdot x\\ \end{array} \]
                                                                    5. Add Preprocessing

                                                                    Alternative 14: 35.1% accurate, 128.0× speedup?

                                                                    \[\begin{array}{l} \\ 0.5 \end{array} \]
                                                                    (FPCore (x s) :precision binary32 0.5)
                                                                    float code(float x, float s) {
                                                                    	return 0.5f;
                                                                    }
                                                                    
                                                                    real(4) function code(x, s)
                                                                        real(4), intent (in) :: x
                                                                        real(4), intent (in) :: s
                                                                        code = 0.5e0
                                                                    end function
                                                                    
                                                                    function code(x, s)
                                                                    	return Float32(0.5)
                                                                    end
                                                                    
                                                                    function tmp = code(x, s)
                                                                    	tmp = single(0.5);
                                                                    end
                                                                    
                                                                    \begin{array}{l}
                                                                    
                                                                    \\
                                                                    0.5
                                                                    \end{array}
                                                                    
                                                                    Derivation
                                                                    1. Initial program 99.8%

                                                                      \[\frac{1}{1 + e^{\frac{-x}{s}}} \]
                                                                    2. Add Preprocessing
                                                                    3. Taylor expanded in x around 0

                                                                      \[\leadsto \color{blue}{\frac{1}{2}} \]
                                                                    4. Step-by-step derivation
                                                                      1. Applied rewrites37.9%

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

                                                                      Reproduce

                                                                      ?
                                                                      herbie shell --seed 2024285 
                                                                      (FPCore (x s)
                                                                        :name "Logistic function"
                                                                        :precision binary32
                                                                        :pre (and (<= 0.0 s) (<= s 1.0651631))
                                                                        (/ 1.0 (+ 1.0 (exp (/ (- x) s)))))