快速开方之魔法数 0x5f3759df

一、快速开方之魔法数 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 //耗时差距很大

相关推荐
多米Domi0116 分钟前
0x3f第14天 最长公共子序列
算法·深度优先
spssau10 分钟前
正交试验设计全解析:从正交表生成到极差与方差分析
数据库·算法·机器学习
minhuan22 分钟前
大模型应用:不减性能只减负担:大模型稀疏化技术全景与实践.36
大数据·人工智能·算法
爱学大树锯41 分钟前
592 · 查找和替换模式
算法
爱学大树锯1 小时前
775 · 回文对
算法
girl-07261 小时前
2025.12.26代码分析
数据结构·算法
大罗辑1 小时前
2026软考备考刷题:软件设计师经典100题(5)含详细解析
算法·软考·软件设计师·2026软考·软设备考
咕噜企业分发小米1 小时前
阿里云Milvus支持哪些向量检索算法?
算法·机器学习·milvus
蒙奇D索大1 小时前
【数据结构】排序算法精讲|折半插入排序全解:高效优化、性能对比、实战剖析
数据结构·学习·考研·算法·排序算法·改行学it
汽车仪器仪表相关领域1 小时前
ZDT-III 通用电机测试系统
数据库·算法·单元测试·压力测试·可用性测试