Click here to Skip to main content
15,881,559 members
Articles / Programming Languages / C++
Article

How to get timings as fine-grained as one nanosecond or better

Rate me:
Please Sign up or sign in to vote.
4.53/5 (37 votes)
2 Dec 20031 min read 180.6K   41   45
How to get timings as fine-grained as one nanosecond or better

Introduction

Everyone has used good old time(NULL) to get timings accurate to the second. Some of you may have used GetSystemTime() to get sub-second timings. The really clever have found QueryPerformanceFrequency and QueryPerformanceCounter, which give timings accurate to a millisecond or better (for the record, I'm not among the really clever - I found out about those two by reading the Python documentation... Thanks, Guido!).

But if you really want accurate timings, this code will give you timings accurate to the machine cycle, which on a 1 ghz machine is one nanosecond. On a 2 ghz machine, it's 1/2 nanosecond. Old 100 mhz machines will only get 10-nanosecond timings. You get the idea.

It requires a tiny bit of assembler, but it's worth it:

__int64 GetMachineCycleCount()
{      
   __int64 cycles;
   _asm rdtsc; // won't work on 486 or below - only pentium or above
   _asm lea ebx,cycles;
   _asm mov [ebx],eax;
   _asm mov [ebx+4],edx;
   return cycles;
}

This code will work on Win9X or NT/2K and probably XP. Actually, it would even work in Linux if you can figure out how to get GCC to emit inline assembler!

Of course, the time comes out in cycles, not seconds, and oddly there seems to be no API to get the machine's speed. You can either "calibrate" the results (by getting the count, sleeping for (say) one second, getting the count again, and doing some trivial math), or just use cycles directly and don't worry about seconds (it's great for comparing one algorithm to another, or finding the slow parts of your program)

One warning, however: certain machines, notably laptops, can slow down their processor speed when nothing important seems to be happening. Since the calibration sleep is exactly one of those times, you can get some seriously wrong results from the calibration.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
JokeRe: Nicer format Pin
Alexandre Ravey16-May-07 3:02
Alexandre Ravey16-May-07 3:02 
JokeRe: Nicer format Pin
Alexandre Ravey16-May-07 3:04
Alexandre Ravey16-May-07 3:04 
GeneralRe: Nicer format Pin
Ajay Vijayvargiya16-Aug-10 19:18
Ajay Vijayvargiya16-Aug-10 19:18 
GeneralRe: Nicer format Pin
WREY5-Dec-03 10:23
WREY5-Dec-03 10:23 
GeneralRe: Nicer format Pin
David Pritchard9-Dec-03 9:56
David Pritchard9-Dec-03 9:56 
GeneralMinor change Pin
Zoltan Csizmadia4-Dec-03 6:47
Zoltan Csizmadia4-Dec-03 6:47 
GeneralRe: Minor change Pin
Robert Bielik4-Dec-03 20:41
Robert Bielik4-Dec-03 20:41 
GeneralOne note about rdtsc Pin
mtseitlin3-Dec-03 23:38
mtseitlin3-Dec-03 23:38 
rdtsc is a global hardware counter and there is impossible to use it for process profiling and benchmarking.

So it can not serve as alternative for:
GetTickCount() - on process level
GetThreadTimes() - on thread level

Maxim Tseitlin
GeneralRe: One note about rdtsc Pin
Robert Bielik4-Dec-03 1:42
Robert Bielik4-Dec-03 1:42 
GeneralRe: One note about rdtsc Pin
Maxim Tseitlin4-Dec-03 4:41
Maxim Tseitlin4-Dec-03 4:41 
GeneralRe: One note about rdtsc Pin
John M. Drescher4-Dec-03 5:25
John M. Drescher4-Dec-03 5:25 
GeneralRe: One note about rdtsc Pin
Robert Bielik4-Dec-03 20:10
Robert Bielik4-Dec-03 20:10 
GeneralRe: One note about rdtsc Pin
peterchen8-Dec-03 21:19
peterchen8-Dec-03 21:19 
GeneralGood Job Pin
hcg3-Dec-03 20:09
hcg3-Dec-03 20:09 
GeneralNow this looks interesting... Pin
Colin Angus Mackay3-Dec-03 16:44
Colin Angus Mackay3-Dec-03 16:44 
GeneralRe: Now this looks interesting... Pin
John M. Drescher3-Dec-03 16:59
John M. Drescher3-Dec-03 16:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.