在 Windows 64 位中对 Python 程序的 CPU 时间进行基准测试
我需要获取 python 应用程序的 CPU 运行时间。
我之前遇到过上面的线程并了解了 timeit。不过,根据下载网站的说法,64位Windows不支持timeit。
http://www.microsoft.com/ download/en/details.aspx?displaylang=en&id=17657#top
time.clock() 不会给出 Windows 中的 CPU 时间。
有没有简单的方法来获取我的 python 应用程序的 CPU 时间?
I need to get the CPU run time of my python application.
How to measure execution time of command in windows command line?
I came across the above thread earlier and learned about timeit. However, according to the download website, timeit is not supported in 64-bit Windows.
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=17657#top
time.clock() does not give CPU time in Windows.
Is there any easy way to get the CPU time of my python application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您这样做只是为了分析或基准测试您的代码,请不要构建自己的代码,而是使用内置库。
http://docs.python.org/library/profile.html
If you're doing this just to profile or benchmark your code, don't building your own, use a built in library.
http://docs.python.org/library/profile.html