Software Tuning, Performance Optimization & Platform Monitoring
Discussion regarding monitoring and software tuning methodologies, Performance Monitoring Unit (PMU) of Intel microprocessors, and platform updating.

Intel PCM - measure time using Performance Counters

pranith
Beginner
721 Views
Hi,
I am trying to time my piece of code using performance counters.
I see that there we cannot use the cycle count from the cores due to turbo boost and various other frequency variations in the CPU.
For this I think I should use the Invariant TSC value provided by "getInvariantTSC()". But, there is no corresponding Invariant TSC frequency value which I need to calculate the time.
How do I get this frequency? Or should I use QueryPerformanceCounter/Frequency() on Windows?
Thanks,
Pranith
0 Kudos
1 Solution
Patrick_F_Intel1
Employee
721 Views

You can get the TSC frequency from:
uint64 PCM::getNominalFrequency()

You can get the TSC with the Windows*intrinsic:
#include
unsigned __int64 __rdtsc(void);

You can check if the TSC is invariant with the above link (see http://software.intel.com/en-us/forums/showthread.php?t=101951)

Pat

View solution in original post

0 Kudos
3 Replies
Patrick_F_Intel1
Employee
721 Views
Hello Pranith,
The answerdepends on what accuracy you need and what you mean by 'time my piece of code'.
In my experience, the TSC can provide nanosecond resolution with little overhead.
QueryPerformanceCounter can provide about microsecond resolution with more overhead.
You can look http://stackoverflow.com/questions/1739259/how-to-use-queryperformancecounter for an intro to QueryPerformanceCounter().
I can't find a reference to getInvariantTSC().
If you have an invariant TSC (see http://software.intel.com/en-us/forums/showthread.php?t=101951) then the TSC runs at the same rate regardless of Cstate, Pstate, turbo mode, etc.
Pat
0 Kudos
pranith
Beginner
720 Views
By 'time my piece of code', I meant:
main()
{
warmup();
startCounters(start);
stopCounters(end);
timeToExecute = f(start, end);
}
I was referring to cpucounters.h in Intel PCM for getInvariantTSC(). That gives us the invariant clock ticks. But to get time from those ticks, I need the frequency at which this clock ticks.
I wanted to use performance counters to do this, but if I cannot get the invariant clock frequency, then I would use QueryPerformanceCounter/Frequency to time my code.
0 Kudos
Patrick_F_Intel1
Employee
722 Views

You can get the TSC frequency from:
uint64 PCM::getNominalFrequency()

You can get the TSC with the Windows*intrinsic:
#include
unsigned __int64 __rdtsc(void);

You can check if the TSC is invariant with the above link (see http://software.intel.com/en-us/forums/showthread.php?t=101951)

Pat

0 Kudos
Reply