Questions tagged «profiling»

3
是否有类似时间的命令,但是要占用内存?
是否有类似的命令time,但报告了更多统计信息?如果能做类似的事情,那就太好了: $ statistics some_command time: real 0m3.002s user 0m0.000s sys 0m0.000s memory: min 41K peak 2.5M mean 1.1M . . . 如果可以走得更远,那就太好了。现在,为了调试,我要么专心盯着top(实际上是glances),要么在我的代码中撒满了语句。 如果有什么我可以传递命令的地方,那就太好了。 编辑 我可能已经找到了解决方案:perf在该软件包中linux-tools以及linux-tools-common在Ubuntu 12.04上。 $ perf stat ./someprocess Performance counter stats for './someprocess': 12007.384578 task-clock # 0.996 CPUs utilized 1,092 context-switches # 0.000 M/sec 16 CPU-migrations # 0.000 …
34 linux  memory  time  profiling 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.