apple / swift-numerics

Advanced mathematical types and functions for Swift
Apache License 2.0
1.68k stars 145 forks source link

Rework complex division #289

Closed stephentyrone closed 4 months ago

stephentyrone commented 4 months ago

Replaces the rescaling algorithm for Complex division to one inspired by Doug Priest's "Efficient Scaling for Complex Division," with some further tweaks to:

  1. allow it to work for arbitrary FloatingPoint types, including Float16
  2. get exactly the same rounding behavior as the un-rescaled path, so that z/w = tz/tw when tz and tw are computed exactly.
  3. allow future optimizations to hoist a rescaled reciprocal for more speedups.

Unlike Priest, we do not try to avoid spurious overflow in the final computation when the result is very near the overflow boundary but cancellation brings us just inside it. We do not believe that this is a good tradeoff, as complex multiplication overflows in exactly the same way. We will investigate providing opt-in API to avoid this overflow case in a future PR.

stephentyrone commented 4 months ago

@swift-ci test

stephentyrone commented 4 months ago

@swift-ci test

stephentyrone commented 4 months ago

@swift-ci test