由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++ 问题紧急求救
相关主题
问一个C\C++中clock()函数溢出问题问个时钟的问题
Clock() problem如何 测量某个函数的运行时间?
In C++, how to do matrix computation?常用的JVM是不是都是proprietary的?
请教 C/C++ 指向多维数组的指针的问题How to measure CPU time spent on a code block (with C or C++)?
C++在linux下读一次系统时间要多少时间Was .NET all a mistake? (ZT)
C 程序 clock() timer 问题Unanimous approval C++0x
how to get time in milliseconds since 1970 on LinuxHow to synchronize two computers clock?
August 2015 go 1.5 跳票了怎样准确测量函数执行的时间?
相关话题的讨论汇总
话题: end话题: begin话题: elapmilli话题: clock话题: elapticks
进入Programming版参与讨论
1 (共1页)
s***1
发帖数: 49
1
我的程序里面有3条指令,现在我想知道这3条指令一共需要多少时间执行(
milliseconds). 我google到的一个程序:
Begin = clock() * CLK_TCK; //start the timer
//中间的指令
End = clock() * CLK_TCK;
elapTicks = End - Begin; //the number of ticks from Begin to End
elapMilli = elapTicks/1000;
elapMilli = 总共时间。
O*******d
发帖数: 20343
2
clock_t Begin = clock() ; //start the timer
//中间的指令
clock_t End = clock() ;
clock_t elapTicks = End - Begin; //the number of ticks from Begin to End
float elapMilli = (float)elapTicks/ (float) CLOCKS_PER_SEC * 1000.0f;
elapMilli = 总共时间。

【在 s***1 的大作中提到】
: 我的程序里面有3条指令,现在我想知道这3条指令一共需要多少时间执行(
: milliseconds). 我google到的一个程序:
: Begin = clock() * CLK_TCK; //start the timer
: //中间的指令
: End = clock() * CLK_TCK;
: elapTicks = End - Begin; //the number of ticks from Begin to End
: elapMilli = elapTicks/1000;
: elapMilli = 总共时间。

O*******d
发帖数: 20343
3
clock() returns process execution time, not the real time. If you have
another program running extensively at the same time you are running this
program, the elapMilli is much smaller than the actual time.
1 (共1页)
进入Programming版参与讨论
相关主题
怎样准确测量函数执行的时间?C++在linux下读一次系统时间要多少时间
一个搞统计的对C#的第一印象C 程序 clock() timer 问题
古德巴大牛,请看这个设计题how to get time in milliseconds since 1970 on Linux
操!本版连interlocked指令都没有懂的?August 2015 go 1.5 跳票了
问一个C\C++中clock()函数溢出问题问个时钟的问题
Clock() problem如何 测量某个函数的运行时间?
In C++, how to do matrix computation?常用的JVM是不是都是proprietary的?
请教 C/C++ 指向多维数组的指针的问题How to measure CPU time spent on a code block (with C or C++)?
相关话题的讨论汇总
话题: end话题: begin话题: elapmilli话题: clock话题: elapticks