我想在我的新galaxy S4手机上获得一些基本的性能数据.我已经编译了一个自定义内核并设法使用Odin将其闪存到设备上.这些是我启用的与perf工具相关的内核模块:
CONfig_HAVE_PERF_EVENTS=yCONfig_PERF_USE_VMALLOC=yCONfig_PERF_EVENTS=yCONfig_PERF_COUNTERS=y
我还交叉编译了perf工具.问题是当我运行以下命令时:
perf stat ls
输出似乎不太正确:
Performance counter stats for 'ls':10887392 cycles # 0.000 Ghz 0 instructions # 0.00 insns per cycle0.012448321 seconds time elapsed
我已经将cpu策略设置为’userspace’并且执行了:
cpufreq-set -f 1600000
为了确保所有核心始终以最大频率工作.
我将不胜感激任何帮助.
以下是没有解决方案的类似案例的链接:
http://lists.linaro.org/pipermail/linaro-kernel/2012-December/002611.html
http://forums.arm.com/index.php?/topic/15020-pmu-in-cortex-a8-omap-3530-what-am-i-doing-wrong/
相关的stackoverflow主题:
How to measure program execution time in ARM Cortex-A8 processor?最佳答案你能看到其他硬件事件,如“cpu周期”或“缓存未命中”吗?
perf stat -e cache-misses,cycles ls
您可能还想设置CONfig_HW_PERF_EVENTS. 总结
以上是内存溢出为你收集整理的android – Linux perf stat工具返回零指令计数.我在这里错过了什么?全部内容,希望文章能够帮你解决android – Linux perf stat工具返回零指令计数.我在这里错过了什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)