How to profile my C++ application on linux

前端 未结 9 1459
北海茫月
北海茫月 2021-01-04 04:27

I would like to profile my c++ application on linux. I would like to find out how much time my application spent on CPU processing vs time spent on block by IO/being idle.

9条回答
  •  -上瘾入骨i
    2021-01-04 05:19

    google-perf-tools - much faster alternative to callgrind (and it can generate output with the same format as callgrind, so you can use KCacheGrind).

提交回复
热议问题