在 Windows 64 位中对 Python 程序的 CPU 时间进行基准测试

发布于 2024-11-26 21:47:46 字数 561 浏览 1 评论 0原文

我需要获取 python 应用程序的 CPU 运行时间。

如何测量Windows命令中命令的执行时间line?

我之前遇到过上面的线程并了解了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

握住你手 2024-12-03 21:47:46

如果您这样做只是为了分析或基准测试您的代码,请不要构建自己的代码,而是使用内置库。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文