|
|
Subscribe / Log in / New account

GIL removal and the Faster CPython project

GIL removal and the Faster CPython project

Posted Aug 3, 2023 15:28 UTC (Thu) by zorro (subscriber, #45643)
In reply to: GIL removal and the Faster CPython project by mb
Parent article: GIL removal and the Faster CPython project

Sure, you need to know what your are doing. But many workloads involve stateless item-by-item data processing loops, and speeding them up by a factor N would be as simple as this in a no-GIL world. I don't see why this technology should be denied to Python developers.


to post comments

GIL removal and the Faster CPython project

Posted Aug 3, 2023 17:15 UTC (Thu) by bluss (guest, #47454) [Link]

Work is ongoing on per-GIL subinterpreters and it will soon allow using independent interpreter threads, which should make it relatively easy to achieve this. For example using concurrent.futures.


Copyright © 2025, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds