Average Error: 0.1 → 0.0
Time: 2.0s
Precision: binary64
\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y} \]
\[\mathsf{fma}\left(4, \frac{x - z}{y}, 4\right) \]
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y}
\mathsf{fma}\left(4, \frac{x - z}{y}, 4\right)
(FPCore (x y z)
 :precision binary64
 (+ 1.0 (/ (* 4.0 (- (+ x (* y 0.75)) z)) y)))
(FPCore (x y z) :precision binary64 (fma 4.0 (/ (- x z) y) 4.0))
double code(double x, double y, double z) {
	return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
}
double code(double x, double y, double z) {
	return fma(4.0, ((x - z) / y), 4.0);
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Derivation

  1. Initial program 0.1

    \[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y} \]
  2. Simplified0.2

    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{4}{y}, x - z, 4\right)} \]
  3. Taylor expanded in y around 0 0.0

    \[\leadsto \color{blue}{\left(4 + 4 \cdot \frac{x}{y}\right) - 4 \cdot \frac{z}{y}} \]
  4. Simplified0.0

    \[\leadsto \color{blue}{\mathsf{fma}\left(4, \frac{x - z}{y}, 4\right)} \]
  5. Final simplification0.0

    \[\leadsto \mathsf{fma}\left(4, \frac{x - z}{y}, 4\right) \]

Reproduce

herbie shell --seed 2021357 
(FPCore (x y z)
  :name "Data.Array.Repa.Algorithms.ColorRamp:rampColorHotToCold from repa-algorithms-3.4.0.1, A"
  :precision binary64
  (+ 1.0 (/ (* 4.0 (- (+ x (* y 0.75)) z)) y)))