linuxtimingprofile-创新互联
double getUnixTime(void)
{
struct timespec tv;
if(clock_gettime(CLOCK_REALTIME, &tv) != 0) return 0;
return (((double) tv.tv_sec) + (double) (tv.tv_nsec / 1000000000.0));
}
double start_time = getUnixTime();
double stop_time, difference;
algorithm();
stop_time= getUnixTime();
difference= stop_time - start_time;
printf("elipsed time :%lf
s",difference);
g++ t.c++ -lrt
gprof
成都创新互联公司主营德城网站建设的网络公司,主营网站建设方案,成都app软件开发,德城h5重庆小程序开发搭建,德城网站营销推广欢迎德城等地区企业咨询gprof -b -p astart gmon.out >&tmp.txt
@ gprof hello gmon.out -p 得到每个函数占用的执行时间
@ gprof hello gmon.out -q 得到call graph,包含了每个函数的调用关系,调用次数,执行时间等信息。
@ gprof hello gmon.out -A 得到一个带注释的“源代码清单”,它会注释源码,指出每个函数的执行次数。这需要在编译的时候增加 -g选项。
http://www.thegeekstuff.com/2012/08/gprof-tutorial/
网站题目:linuxtimingprofile-创新互联
本文地址:http://scgulin.cn/article/hoegi.html