vote up 4 vote down star
3

What is the best way to time a code section with high resolution and portability?

/* time from here */
ProcessIntenseFunction();
/* to here */

printf("Time taken %d seconds %d milliseconds", sec, msec);

Is there a standard library that would have a cross platform solution?

flag

4 Answers

vote up 11 vote down check

I think this should work:

#include <time.h>

clock_t start = clock(), diff;
ProcessIntenseFunction();
diff = clock() - start;

int msec = diff * 1000 / CLOCKS_PER_SEC;
printf("Time taken %d seconds %d milliseconds", msec/1000, msec%1000);
link|flag
This is actually good since it gives you CPU time rather than elapsed time (elapsed time could be affected by other processes). Just keep in mind that a figure of 10 secs doesn't necessarily mean it will run in 10 secs elapsed time, since there may be I/O considerations. This measures CPU ONLY. – paxdiablo Jan 20 at 1:22
I used this hundreds of times and is the the best/easiest solution for this question – Gerhard Jan 21 at 6:18
vote up 2 vote down

gettimeofday() will probably do what you want.

If you're on Intel hardware, here's how to read the CPU real-time instruction counter. It will tell you the number of CPU cycles executed since the processor was booted. This is probably the finest-grained, lowest overhead counter you can get for performance measurement.

Note that this is the number of CPU cycles. On linux you can get the CPU speed from /proc/cpuinfo and divide to get the number of seconds. Converting this to a double is quite handy.

When I run this on my box, I get

11867927879484732
11867927879692217
it took this long to call printf: 207485

Here's the Intel developer's guide that gives tons of detail.

#include <stdio.h>
#include <stdint.h>

inline uint64_t rdtsc() {
    uint32_t lo, hi;
    __asm__ __volatile__ (
      "xorl %%eax, %%eax\n"
      "cpuid\n"
      "rdtsc\n"
      : "=a" (lo), "=d" (hi)
      :
      : "%ebx", "%ecx");
    return (uint64_t)hi << 32 | lo;
}

main()
{
    unsigned long long x;
    unsigned long long y;
    x = rdtsc();
    printf("%lld\n",x);
    y = rdtsc();
    printf("%lld\n",y);
    printf("it took this long to call printf: %lld\n",y-x);
}
link|flag
vote up 1 vote down

gettimeofday will return time accurate to microseconds within the resolution of the system clock. You might also want to check out the High Res Timers project on SourceForge.

link|flag
vote up 1 vote down

I use SDL_GetTicks from the SDL library.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.