Tagged Questions
The Global Interpreter Lock (GIL) is how the CPython interpreter, normally not thread-safe, works on threaded programs. It allows only one thread to execute Python code at once, and is implemented only in CPython; other implementations such as Jython, are free of the GIL.
88
votes
3answers
7k views
Why is there no GIL in the Java Virtual Machine? Why does Python need one so bad?
I'm hoping someone can provide some insight as to what's fundamentally different about the Java Virtual Machine that allows it to implement threads nicely without the need for a Global Interpreter ...
13
votes
6answers
851 views
What is a global interpreter lock (GIL)?
What is a global interpreter lock and why is that an issue?
A lot noise has been made around removing the GIL from Python, and I'd like to understand why that is so important. I have never written a ...
11
votes
2answers
283 views
numpy and Global Interpreter Lock
I am about to write some computationally-intensive Python code that'll almost certainly spend most of its time inside numpy's linear algebra functions.
The problem at hand is embarrassingly parallel. ...
10
votes
3answers
428 views
What does Python's GIL have to do with the garbage collector?
I just saw this section of Unladen Swallow's documentation come up on Hacker News. Basically, it's the Google engineers saying that they're not optimistic about removing the GIL. However, it seems ...
8
votes
1answer
147 views
How do I determine the appropriate check interval?
I'm just starting to work on a tornado application that is having some CPU issues. The CPU time will monotonically grow as time goes by, maxing out the CPU at 100%. The system is currently designed ...
8
votes
4answers
810 views
Does a multithreaded crawler in Python really speed things up?
Was looking to write a little web crawler in python. I was starting to investigate writing it as a multithreaded script, one pool of threads downloading and one pool processing results. Due to the GIL ...
7
votes
7answers
4k views
Python Global Interpreter Lock (GIL) workaround on multi-core systems using taskset on Linux?
So I just finished watching this talk on the Python Global Interpreter Lock (GIL) http://blip.tv/file/2232410.
The gist of it is that the GIL is a pretty good design for single core systems (Python ...
6
votes
4answers
116 views
When are Python threads fast?
We're all aware of the horrors of the GIL, and I've seen a lot of discussion about the right time to use the multiprocessing module, but I still don't feel that I have a good intuition about when ...
6
votes
1answer
188 views
sys.setswitchinterval in Python 3.2 and beyond
Python 3.2 introduced a new GIL implementation by Antoine Pitrou which exposes the function sys.setswitchinterval.
When would changing this be useful, and why?
6
votes
6answers
271 views
What is C#'s version of the GIL?
In the current implementation of CPython, there is an object known as the "GIL" or "Global Interpreter Lock". It is essentially a mutex that prevents two Python threads from executing Python code at ...
6
votes
3answers
487 views
Is the Python GIL really per interpreter?
I often see people talking that the GIL is per Python Interpreter (even here on stackoverflow).
But what I see in the source code it seems to be that the GIL is a global variable and therefore there ...
6
votes
7answers
4k views
GIL in Python 3.1
Does anybody knows fate of Global Interpreter Lock in Python 3.1 against C++ multithreading integration
4
votes
1answer
355 views
How to troubleshoot/bypass locking problem which appears to be GIL related
An obscure lock-up between two threads seems to be related to the Global Interpreter Lock or some other "behind-the-scenes-lock", and I am at a loss how to continue troubleshooting. Any tips how to ...
4
votes
3answers
239 views
How can an interpretive language avoid using Global Interpreter lock (GIL)?
CPython uses a Global Interpreter Lock. Linux has removed all traces of the Big Kernel Lock. What is the alternative to these locks? How can a system make full use of a truly multi-core or ...
4
votes
3answers
216 views
Python GIL and globals
In python, I have a global variable defined that gets read/incremented by different threads. Because of the GIL, will this ever cause problems without using any kind of locking mechanism?
4
votes
3answers
224 views
How to avoid gcc warning in Python C extension when using Py_BEGIN_ALLOW_THREADS
The simplest way to manipulate the GIL in Python C extensions is to use the macros provided:
my_awesome_C_function()
{
blah;
Py_BEGIN_ALLOW_THREADS
// do stuff that doesn't need the ...
3
votes
4answers
113 views
What's the cost of releasing the GIL?
Let's suppose I have a C extension function that does something that is completely independent of the Python interpreter. Is there any reason not to release the GIL?
For example, is there any reason ...
3
votes
3answers
160 views
Parallel file matching, Python
I am trying to improve on a script which scans files for malicious code. We have a list of regex patterns in a file, one pattern on each line. These regex are for grep as our current implementation ...
3
votes
4answers
276 views
running multiple threads in python, simultaneously - is it possible?
I'm writing a little crawler that should fetch a URL multiple times, I want all of the threads to run at the same time (simultaneously).
I've written a little piece of code that should do that.
...
3
votes
1answer
90 views
Releasing the GIL after destroying a sub-interpreter
I am embedding Python 3.2 in a C++ application and I have several sub interpreters that run at various times in the programs (created by Py_NewInterpreter). They acquire and release the GIL at various ...
3
votes
1answer
428 views
CherryPy 60x as slow in benchmark with 8 requesting threads compared to 7
I'm curious why when benchmarking Python web server CherryPy using ab, with -c 7 (7 concurrent threads) it can server 1500 requests/s (about what I expect), but when I change to -c 8 it drops way down ...
3
votes
6answers
291 views
Looking for strong/explicit-typed language without GIL
Are there any languages which feature static type checking like in C++ with modern syntax like in Python, and does not have GIL?
I belive, Python 3 with ability to explicitly declare type of each ...
3
votes
2answers
255 views
Are there some cases where Python threads can safely manipulate shared state?
Some discussion in another question has encouraged me to to better understand cases where locking is required in multithreaded Python programs.
Per this article on threading in Python, I have several ...
3
votes
3answers
784 views
Is the new GIL in Python 3.2 sufficient to make the switch?
I was reading this page on the new GIL found/to be found in Python 3.2 and I was wondering if it is the "killer feature" that will trigger a transition from Python 2.x to 3.x.
What do you guys think?
...
2
votes
1answer
50 views
how to link lpng package
I use VC++, boost::gil package and lpng package to read a png image. After debuging I have
following linking problem:
Error 3 error LNK2001: unresolved external symbol _png_set_swap ...
2
votes
2answers
74 views
Can we run multi-threads in parallel in Ruby?
Please let me know if there is a way to run multi-threads in parallel.
What I know till now is that Ruby has a global interpreter lock or global VM lock which blocks threads to run in parallel and ...
2
votes
4answers
371 views
Python threading and GIL
I was reading about the GIL and it never really specified if this includes the main thread or not (i assume so). Reason I ask is because I have a program with threads setup that modify a dictionary. ...
2
votes
1answer
268 views
What are the implications of calling Numpy's C API functions from multiple threads?
This is risky business, and I understand the Global Interpreter Lock to be a formidable foe of parallelism. However, if I'm using Numpy's C API (specifically the PyArray_DATA macro on a Numpy array), ...
2
votes
1answer
255 views
How to convert Python threading code to multiprocessing code?
I need to convert a threading application to a multiprocessing application for multiple reasons (GIL, memory leaks). Fortunately the threads are quite isolated and only communicate via Queue.Queues. ...
2
votes
1answer
224 views
call multiple c++ functions in python using threads
Suppose I have a C(++) function taking an integer, and it is bound to (C)python with python api, so I can call it from python:
import c_module
c_module.f(10)
now, I want to parallelize it. The ...
2
votes
4answers
447 views
Python: Plot some data (matplotlib) without GIL
my problem is the GIL of course. While I'm analysing data it would be nice to present some plots in between (so it's not too boring waiting for results)
But the GIL prevents this (and this is ...
2
votes
3answers
245 views
A question on python GIL
Does the presence of python GIL imply that in python multi threading the same operation is not so different from repeating it in a single thread?.
For example, If I need to upload two files, what is ...
2
votes
3answers
609 views
Releasing python GIL in C++ code
I've got a library written in C++ which I wrap using SWIG and use in python. Generally there is one class with few methods. The problem is that calling these methods may be time consuming - they may ...
1
vote
2answers
122 views
python Global Interpreter Lock GIL problem
I want to provide a service on the web that people can test out the performance of an algo, which is written in python and running on the linux machine
basically what I want to do is that, there is a ...
1
vote
5answers
88 views
Python GIL and threads synchronization
After having read various articles that explain GIS and threads in Python, and Are locks unnecessary in multi-threaded Python code because of the GIL? which is a very useful answer, I have one "last ...
1
vote
2answers
104 views
Would limiting a GILed Python program to a single CPU boost performance?
Following up on David Beazley's paper regarding Python and GIL, would it be a good practice to limit a Python program (CPython with GIL and all) to a single CPU in a Windows based multi-core system?
...
1
vote
1answer
163 views
all threads hang when running a busy task in one thread
I have a multi-threaded python application where threads are spawned off to do various tasks. This application has been working great for months, but recently I've run into a problem.
One of the ...
1
vote
2answers
101 views
is it possible to release the GIL before a C function that blocks and might call back into Python?
I am wrapping a C function which performs a blocking operation (select) and then handles incoming messages. My understanding is that when a C function is going to block, the correct way to call it ...
1
vote
1answer
147 views
Is it possible to disable YARV's global interpreter lock?
This is more curiosity than anything else (I should totally drop that and try jRuby), but is it possible to disable YARV ruby's global interpreter lock and any other associated locks?
I assume this ...
1
vote
2answers
443 views
Python requires a GIL. But Jython & IronPython don't. Why?
Why is it that you can run Jython and IronPython without the need for a GIL but Python (CPython) requires a GIL?
1
vote
3answers
345 views
Python - question regarding the concurrent use of `multiprocess`
I want to use Python's multiprocessing to do concurrent processing without using locks (locks to me are the opposite of multiprocessing) because I want to build up multiple reports from different ...
0
votes
1answer
61 views
boost::python and callback driven execution
I'm having problems on a project that involves a boost::python and callback-driven execution.
My project is using a callback mechanism to run some python code from C++.
As long as the initial ...
0
votes
1answer
61 views
How can I read a png image using libpng?
#include "stdafx.h"
#include <boost/gil/gil_all.hpp>
#include <boost/gil/extension/io/png_io.hpp>
namespace gil = boost::gil;
int _tmain(int argc, _TCHAR* argv[])
{
...
0
votes
2answers
248 views
Why Python is not better in multiprocessing or multithreading applications than Java?
Since Python has some issues with GIL, Java is better for developing multiprocessing applications. Could you please justify the exact reasoning of java's effective processing than python in your way?
0
votes
1answer
106 views
Is the PyThreadState* of the main python thread expected to be NULL?
I have a python program that calls into a c++ library, which wishes to release all the python locks so that other python threads can run.
Using PyEval_SaveThread and PyEval_ReleaseThread I get errors ...
0
votes
1answer
93 views
Acquiring the global interpreter lock from python
Is it possible to acquire the global interpreter lock from python code? Or is that purely implemented in the C side?
-1
votes
4answers
116 views
Improving Python execution speed with parallel threads
Let's say I have this sample code:
x = foo1(something1)
y = foo2(something2)
z = max(x, y)
I want to improve the execution time of this code by using threads (hope it helps isn't it?). I'd like to ...