C++统计程序运行时间代码片段
因为经常需要统计代码的运行时间,所以计时功能就显得很重要,
记录一下现在喜欢用的计时方式,供日后查阅。
1.下面是计时主函数,
bool TimeStaticMine(int id,const char* type) { struct TimeInfo { long long accu_num; long long accu_sec; long long accu_usec; struct timeval st; struct timeval ed; long long this_time_usec; char type[64]; }; static TimeInfo info[50]; if(id<0) { for(int i=0;i<50;i++)memset(info+i,0,sizeof(TimeInfo)); return true; } if(type==NULL) { gettimeofday(&info[id].st,NULL); return true; } gettimeofday(&info[id].ed,NULL); info[id].this_time_usec=((info[id].ed.tv_sec)-(info[id].st.tv_sec))*1000000 + ((info[id].ed.tv_usec)-(info[id].st.tv_usec)); if(info[id].type[0]=='\0') strcpy(info[id].type,type); bool needPrint=false; info[id].accu_num++; info[id].accu_usec+=info[id].this_time_usec; char typeData[100]; sprintf(typeData,"%d-%s",id,info[id].type); char tmp[256]; sprintf(tmp,"=========step: %s, this time: %lld ms=========",typeData,info[id].this_time_usec / 1000); printf("%s\n",tmp); return true; }
2.用法如下
在每个要计时的函数上定义一个TimeStaticMine,第一个参数为计时id,第二个参数为计时说明。
如下例子分别记录了adjustPic 和probAll两个函数的运行时间。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】博客园携手 AI 驱动开发工具商 Chat2DB 推出联合终身会员
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
· 为什么 .NET8线程池 容易引发线程饥饿
· .NET 9.0 使用 Vulkan API 编写跨平台图形应用
· 终于决定:把自己家的能源管理系统开源了!
· [.NET] 使用客户端缓存提高API性能
· AsyncLocal的妙用
· .NetCore依赖注入(DI)之生命周期
2017-09-10 [leetcode-676-Implement Magic Dictionary]
2017-09-10 [leetcode-674-Longest Continuous Increasing Subsequence]