How to convert scalar code of the double version of VDT’s Pade Exp fast_ex() approx into SSE2?
Here’s the code I’m trying to convert: the double version of VDT’s Pade Exp fast_ex() approx (here’s the old repo resource): inline double fast_exp(double initial_x){ double x = initial_x; …