Re: Benchmark results unrealistic?
Hans Mull wrote:
I've created a benchmark tool which uses Agner Fog's asmlib to count
the clockcycles a function takes. [..]
when I write something like
time[0] = ReadTSC();
for(int i = 0;i < NUMTESTS;i++) rand();
time[1] = ReadTSC();
and
cout << "rand() time:" << (time[1]-time[0])/NUMTESTS << endl;
it shows me that it (and the other functions too) takes only 20
clockcycles. Is this realistic? I think it's OK that when you call the
function it takes more clockcycles than in the average, but 20
clockcycles for creating a random number? However, even if I set
NUMTESTS to higher or lower values, the result remains the same
(except of a difference of about 3 or 4 clockcycles)
Your code between assigning to time[0] and time[1] have no side
effects, most likely. It is entirely conceivable that the compiler
knows that and optimizes the loop with its non-sensical body to nil.
You need to look at the assembly output (disassembly in a debugger
would do) in order to understand what exactly you're measuring.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask