gpt4 book ai didi

python - PIL resize() 是否持有 GIL?

转载 作者:太空狗 更新时间:2023-10-30 03:05:13 26 4
gpt4 key购买 nike

例子:

image = Image.open('foo.png')
# releases the GIL?
resized = image.resize((800, 600), Image.ANTIALIAS)
# reacquires the GIL?

显然,变量赋值需要保留 GIL,但很难将其分成两行。 :)

如果有两个线程执行图像大小调整,这些调整大小是否可以在两个不同的内核上运行?

最佳答案

看1.1.7的源码,好像没有放_resize的GIL。

释放GIL的函数好像是:

PyImaging_CreateWindowWin32 (createwindow on Win32)
PyImaging_EventLoopWin32 (eventloop on Win32)
pyCMSdoTransform (apply)
_buildTransform (buildTransform)
_buildProofTransform (buildProofTransform)
_encode_to_file (encode_to_file)

关于python - PIL resize() 是否持有 GIL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13242221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com