Math
Module of libSIMDx86
The Math module of libSIMDx86 gives
functions to accelerate simple math operations commonly found the in
C standard library runtime, libm.
#include <SIMDx86/math.h>
float
SIMDx86_sqrtf(float value);
Returns the square root of the single precision number value
float SIMDx86_rsqrtf(float value);
Returns the reciprocal square root of the single precision number value
double SIMDx86_sqrt(double value);
Returns the square root of the double precision number value
double SIMDx86_rsqrtd(double value);
Returns the reciprocal square root of the double precision number value