19

我今天了解了 pystones,所以我决定看看我的各种环境是什么样的。我在裸机上运行 windows 的笔记本电脑上运行了 pystones 并得到了这些结果

Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from test import pystone
>>> for i in range(0,10):
...   pystone.pystones()
...
(1.636334799754252, 30556.094026423627)
(2.1157907919853756, 23631.82607155689)
(2.5324817108003685, 19743.479207278437)
(2.541626695533182, 19672.4405231788)
(2.536022267835051, 19715.915208695682)
(2.540327088340973, 19682.50475676099)
(2.544761766911506, 19648.20465716261)
(2.540296805235016, 19682.739393664764)
(2.533851636391205, 19732.804905346253)
(2.536483186973612, 19712.3325148696)

然后我在我们的一些 linux VM 上运行它,性能提高了 2.7-3.4 倍。所以我在我的笔记本电脑上启动了我的 vmware Linux VM 并重新运行了相同的测试并得到了以下结果:

Python 2.7.2+ (default, Oct  4 2011, 20:03:08) 
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> for i in range(0,10):
...   pystone.pystones()
... 
(1.75, 28571.428571428572)
(1.17, 42735.042735042734)
(1.6600000000000001, 30120.48192771084)
(1.8399999999999999, 27173.913043478264)
(1.8200000000000003, 27472.52747252747)
(1.8099999999999987, 27624.30939226521)
(1.3099999999999987, 38167.938931297744)
(1.7800000000000011, 28089.88764044942)
(1.8200000000000038, 27472.527472527414)
(1.490000000000002, 33557.04697986573)

我不太明白在同一个窗口中运行的 linux VM 实际上比在 windows 下的同一个裸机上运行的 python 更快。

Windows 上的 python 有什么不同,以至于它在裸操作系统上的执行速度比在同一机器上运行 Linux 的 VM 中执行得慢?

  • 更多细节 Windows 平台 Win7x64 32 位 python 在两个平台上运行 32 位 linux VM 在 VMWare 中运行 windows 平台
4

4 回答 4

15

在 windows 10 上也有类似的问题 - 这是因为windows defender

我不得不在 Windows Defender 设置中排除 python 目录和进程并重新启动计算机。

之前:我不得不等待大约 20 秒才能运行任何 python 代码——现在是毫秒。

于 2016-10-07T20:31:11.050 回答
10

我无法回答您的问题,但请考虑以下可能会产生影响的事情:

  • 您正在使用不同版本的 Python。“2.7.2+”表示您的 linux Python 是从版本控制检出而不是发行版构建的。

  • 它们是用不同的编译器编译的(并且可以想象有不同的优化级别)。

  • 你没有提到复制这么多。可以想象,如果你没有,那是侥幸。

  • 您的虚拟机可能计时不准确。

  • 您正在链接 Python 依赖项的不同实现,尤其是 Ignacio Vazquez-Abrams 指出的 libc。

  • 我不知道 pystone 的实际基准是什么样的,但很多事情的工作方式不同——比如 unicode 处理或磁盘 IO 可能是系统相关因素。

于 2012-04-16T20:11:56.190 回答
3

你在那个 Windows 机器上运行防病毒软件吗?这或许可以解释。我个人喜欢将 Python、Cygwin 和我的源目录添加到防病毒排除列表中——我认为我得到了一个小而明显的加速。也许这解释了你的结果。

于 2014-03-07T10:40:04.517 回答
2

对您的启动进行基准测试,但只有一些缓慢的模块需要在 Windows 上进行初始化。一个小技巧,每次启动都可以为我节省一秒钟的时间:

import os
import mimetypes #mimetypes gets imported later in dep chain

if __name__ == "__main__":
   # stub this out, so registry db wont ever be read, not needed
   mimetypes._winreg = None

Another source of slowness is, multiple standard library modules compile and cache their regexes at import time. re.compile just looks like its slow on windows

于 2018-04-29T18:20:07.340 回答