I found two great profilers:
Have anyone tried them both? Which is better?
|
I found two great profilers: Have anyone tried them both? Which is better?
| ||||
|
feedback
|
|
oprofile is more accurate; it uses CPU performance monitoring (built in hardware monitoring with 100s of performance events); and google-perftools libprofiler.so uses
Interval timer is emulated by OS and it can't be more than
Don't know how this will work on tickless kernel. In turn, oprofile uses special hardware in CPU and this hardware is accurate up to several ticks. It can measure, where your program is, at every 100000th or 1000000th ticks of CPU and this value is not tied to OS HZ setting. Also it can profile not only on every N-th tick of CPU, but also on every N-th L2 cache miss or every N-th The other better side of oprofile is that it can profile anything, any user application or all user application or kernel and every application. But oprofile requires root to use it (AFAIK), it can freeze you system with wrong usage; it needs to be enabled in kernel (when kernel was built). Better side of google-perftools is: easy to use; good graphing and analysing capabilities; need no root to work. Also, there is a good heap profiler in google-perftools. Both oprofile and google-perftools/cpuprofiler:
| ||||
|
feedback
|
|
Close in spirit question http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux | |||
|
feedback
|
|
I would humbly suggest that accuracy is missing the point. As Maxim suggested, you might look at this. | |||
|
feedback
|