当我想使用Linux工具套件perf中的perf-stat和perf-report生成性能报告时,我运行:
$perf record -o my.perf.data myCmd
$perf report -i my.perf.data
和:
$perf stat myCmd
但这意味着我第二次运行’myCmd’,这需要几分钟.相反,我希望:
$perf stat -i my.perf.data
但与perf套件中的大多数工具不同,我没有看到perf-stat的-i选项.是否有其他工具,或者获取perf-report以生成与perf-stat相似的输出的方法?
最佳答案
原文链接:https://www.f2er.com/linux/440346.html