Are there some good ways to know how a function performs in C? I would like to, for example compare my own function to a library function.
|
|
All of these other answers are using some variant of A much better alternative is to actually use the CPU cycle counter. On x86, you can do this with the
For more on profiling using various hardware counters, see PAPI. For some purposes, simulators (like Callgrind and interrupt-based profilers (Oprofile) are useful. |
||
|
|
|
|
Fred, I notice that you said in a comment that you're on OS X. The best way to get very accurate timings of small-scale functions on OS X is with the
This gives you the average timing across
This can have its own problems, especially if the function being timed is very very fast. You need to think about what you are really trying to measure and pick an approach that is scientifically justified (good experimental design is hard). I often use a hybrid between these two approaches as a first attempt at measuring a novel task (a minimum of averages over many calls). Note also that in the code samples above, the timings are in "mach time units". If you just want to compare algorithms, this is usually fine. For some other purposes, you may want to convert them to nanoseconds or cycles. To do this, you can use the following functions:
Be aware that the conversion to nanoseconds will always be sound, but the conversion to cycles can go awry in various ways, because modern CPUs do not run at one fixed speed. Nonetheless, it generally works pretty well. |
||||
|
|
|
As the simplest and portable approach you can use the standard function time(), which returns the current number of seconds since the Epoch.
Adjust the number of iterations to your needs. If one function call needs 5 seconds then you need a laaarge cup of coffee for 1000000 iterations... When the difference is less than 1 second, even for a large number, you should 1) ask yourself if it matters and if yes, 2) check if your favorite compiler already has builtin profiling functions. |
||
|
|
|
|
The open-source Callgrind profiler (for Linux) is a really awesome way to measure performance. Coupled with KCacheGrind, you get really great visualizations of where your time is spent. Callgrind is part of Valgrind.
|
||
|
|
|
|
Check out RDTSC but it is better do it like below. 0 - Call system's Sleep or Yield function so that when it returns, you have a new timeslice 1 - RDTSC 2 - Call your function 3 - RDTSC If your function is a long running one, you have to use some sort of profiling tool like gprof (it is very easy to use) & Intel's VTune application (which I have not used for a long time). After seeing Art's answer, I changed my mind from gprof to Callgrind. I used only the Memcheck tool of Valgrind in the past and it was a magnificent tool. I have not used Callgrind before but I am sure it is better than gprof... |
|||
|
|
|
Checkout HighResTimer for a high performance timer. You'll probably find storing the time before/after isn't accurate enough and will probably result in 0 unless you have a longer running function. |
||
|
|
|
|
You need high-resolution timers. On Linux, Quick sample, for Linux:
You would of course adjust the count (100,000) to match the performance of the function. It's best if the function really takes a while to run, otherwise the loop and/or the function call overhead might dominate. |
||||
|
|
|
Run it (them) several million times (each) and measure the time it takes. gprof can help :) Here's the result of gprof when I run a program of mine for 10 seconds (function names changed) Each sample counts as 0.01 seconds. % cumulative self self total time seconds seconds calls ms/call ms/call name 60.29 8.68 8.68 115471546 0.00 0.00 workalot 39.22 14.32 5.64 46 122.70 311.32 work_b 0.49 14.39 0.07 inlined 0.07 14.40 0.01 46 0.22 0.22 work_c 0.00 14.40 0.00 460 0.00 0.00 find_minimum 0.00 14.40 0.00 460 0.00 0.00 feedback 0.00 14.40 0.00 46 0.00 0.00 work_a |
||||||||||||
|
|
|
Make sure to use a significant sample as the time resolution might vary your results. This is especially true for short duration functions. Use high-resolution timers (microseconds resolution is available on most platforms). |
||
|
|
|
|
Store off the system time before you enter the fuction. Store off the system time after you return from the function. Subtract the difference and compare the two implementations. |
||
