pouët.net

Stable high resolution timer on Linux

category: code [glöplog]
 
What timer function do you guys use for high resolution timer on Linux? I've tried clock_gettime which has a nanosec precision, but it seems like I am not handling it properly or it isn't stable. Any tips?
added on the 2014-11-19 13:17:59 by Danguafer Danguafer
Are you using CLOCK_REALTIME or CLOCK_MONOTONIC?
CLOCK_REALTIME could be affected by things such as ntp synchronization.
Also, the clock most certainly does NOT have nanosecond precision. Nothing does, in any non-realtime OS.

On x86, the rdtsc instruction can give you a cheap and reliable high resolution timer.
The only problem is determining its frequency.
On early x86, it was a cycle counter, so if you just measured the delta of two rdtscs in a second, you knew the frequency.
Modern x86 have the tsc running at a fixed frequency (the rated frequency of the CPU, so different from one CPU to the next), while the actual CPU frequency can vary because of power saving/turbo boost.
Therefore you'd need a more reliable way to determine clockspeed (not sure how this is generally done, some OS libs may be available).
added on the 2014-11-19 13:35:37 by Scali Scali
I am using CLOCK_MONOTONIC.

Code:timespec tgt; clock_gettime(CLOCK_MONOTONIC,&tgt); long long t0 = tgt.tv_nsec/1000/1000; for (int i = 100000000; i; i--) v1 += v1; clock_gettime(CLOCK_MONOTONIC,&tgt); long long t = tgt.tv_nsec/1000/1000; std::cout << t0 << " " << t << " " << t-t0 << std::endl;


The main issue here is that sometimes t0 is bigger than t.
added on the 2014-11-19 14:03:18 by Danguafer Danguafer
Hum, CLOCK_MONOTONIC should never have t0 > t by definition.
Sounds like a bug in the implementation. Perhaps you should try some live CDs with different distros/kernel versions?
This should never happen.
added on the 2014-11-19 14:05:43 by Scali Scali
Oh wait. Shit. I am ignoring tv_sec.
added on the 2014-11-19 14:06:43 by Danguafer Danguafer
You could also try CLOCK_MONOTONIC_RAW and see if that improves things.
Also, disable ntp if you have it running.
added on the 2014-11-19 14:07:22 by Scali Scali
I guess tv_nsec is just overflowing
added on the 2014-11-19 14:07:34 by Danguafer Danguafer
Quote:
Oh wait. Shit. I am ignoring tv_sec.


Ah right, that explains it :)
added on the 2014-11-19 14:07:48 by Scali Scali
In fact it isn't overflowing, it resets when it gets in 1 second.
Thanks anyway, the dialogue is always important haha :P
added on the 2014-11-19 14:15:42 by Danguafer Danguafer
clock_gettime using monotonic if I will be comparing the times with other outputs, time sources synced with PTP.

If local to the machine only, and timestamp doesn't matter, rdtsc tends to keep things moving along nicely if you're in a tightish loop.
added on the 2014-11-19 17:46:08 by dotwaffle dotwaffle

login