一、快速开方之魔法数 0x5f3759df
测试代码:
cpp
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#define N_NUM 2147483640
float Q_rsqrt(float number)
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
//#ifndef Q3_VM
//#ifdef __linux__
// assert( !isnan(y) ); // bk010122 - FPE?
//#endif
//#endif
return y;
}
int main()
{
int i, j;
float res;
struct timeval start, end;
int timeuse;
printf("%f\n", 1.0/Q_rsqrt(3.14159));
printf("%f\n", sqrt(3.14159));
printf("%f\n", 1.0/Q_rsqrt(100));
printf("%f\n", sqrt(100));
gettimeofday(&start, NULL);
for(i=0; i<N_NUM; i++){
//for(j=0; j<N_NUM; j++) {
res=1.0/Q_rsqrt(i);
//res=0;
//}
}
gettimeofday(&end, NULL);
timeuse = 1000000 * ( end.tv_sec - start.tv_sec ) + end.tv_usec - start.tv_usec;
printf("time1=%.3fs\n", (double)timeuse/1000000);
printf("done\n");
gettimeofday(&start, NULL);
for(i=0;i<N_NUM;i++){
//for(j=0; j<N_NUM; j++) {
res=sqrt(i);
//res=0;
//}
}
gettimeofday(&end, NULL);
timeuse = 1000000 * ( end.tv_sec - start.tv_sec ) + end.tv_usec - start.tv_usec;
printf("time2=%.3fs\n", (double)timeuse/1000000);
return 0;
}
运行结果:
1.773184
1.772453
10.015536
10.000000
time1=0.000s
done
time2=3.439s //耗时差距很大