How to understand the output of time command?

谁说胖子不能爱 提交于 2021-02-17 09:17:51

问题


I am trying to figure out the performance of my code, but I do not understand the output of the time command, Can anybody please explain what does time command output means.

The following is what I get:

time ./filereader 

real    0m0.193s
user    0m0.012s
sys 0m0.056s

What is real, user, sys?


回答1:


From: http://zch051383471952.blogspot.com/2010/01/different-of-real-user-sys-time.html

Real refers to actual elapsed time; User and Sys refer to CPU time used only by the process.

  • Real is wall clock time - time from start to finish of the call. This is all elapsed time including time slices used by other processes and time the process spends blocked (for example if it is waiting for I/O to complete).
  • User is the amount of CPU time spent in user-mode code (outside the kernel) within the process. This is only actual CPU time used in executing the process. Other processes and time the process spends blocked do not count towards this figure.
  • Sys is the amount of CPU time spent in the kernel within the process. This means executing CPU time spent in system calls within the kernel, as opposed to library code, which is still running in user-space. Like 'user', this is only CPU time used by the process.



回答2:


'real' is the amount of clock time it took. If you were to time it with a stopwatch, that's what you'd get.

'user' is the amount of CPU time that the process itself used.

'sys' is the amount of CPU time that the kernel spent on behalf of the process.




回答3:


If you are developing with C/C++ you should use gprof to profile your code, check http://www.cs.duke.edu/~ola/courses/programming/gprof.html .



来源:https://stackoverflow.com/questions/3432085/how-to-understand-the-output-of-time-command

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!