我想测量一些数学函数在C中的执行时间。(我有一个计算大量数学的库,我想知道单次调用需要多少时间)。
现在,我使用getrusage
或GetProcessTimes
和clock_gettime/gettimeofday
或GetSystemTimeAsFileTime
,但它们不够精确,当我测量单个呼叫时,它们总是显示为0。 ..
我知道我可以做'x'函数调用但是我会有平均时间。 C Win / Lin有没有精确的计时器,如此精确,可以测量单个函数调用wall / cpu时间?
我不能使用boost
(纯粹的C),我也知道这个(仍然不够精确):
clock_t start = clock();
/*Do something*/
clock_t end = clock();
float seconds = (float)(end - start) / CLOCKS_PER_SEC;
和这(与上面相同):
time_t start,end;
double dif;
time (&start);
// Do some calculation.
time (&end);
dif = difftime (end,start);
甚至尝试了这个:QueryPerformanceCounter
和QueryPerformanceFrequency
。另外,我知道我不应该使用rdtsc
来衡量时间。我还能做什么?