The Global Interpreter Lock (GIL) is a Python implementation detail that ensures thread safety by disallowing concurrent execution of Python code. Python versions such as CPython (the Python reference implementation), Stackless Python and PyPy have the GIL; versions such as Jython and IronPython do ...

learn more… | top users | synonyms

0
votes
1answer
51 views

Python GIL, C extensions, and increasing through put (Python 3.2)

I have a server application that accepts requests, needs to run some Python, some of which calls into my C-based extension DLLs. If I completely lock the GIL during the entire request, everything ...
0
votes
1answer
29 views

Would a frozen Python binary access the local interpreter and Global Interpreter Lock (GIL)?

I am working on a Linux multi-core machine on which I simply call a same Python script with the interpreter on the command line (really just "python script.py") several times simultaneously. I see ...
2
votes
1answer
64 views

f2py function release GIL

Does the Global Interpretter Lock (GIL) get released when I call an f2py wrapped function? (I'm happy to try to discover on my own, but I'm not familiar enough with the numpy source to know where ...
0
votes
0answers
44 views

Copying file in Python using shutil.copy2() blocks other threads from running?

I have 3 threads in my CPython-script: Thread A is the main thread and also copies the file using shutil.copy2() Thread B is for stuff B Thread C is for stuff C (prints messages to lcd-screen) ...
0
votes
1answer
60 views

can pypy use multi cpu in one process? [closed]

As I know, there is GIL in python. I heart that pypy does not meet that problem. I want to know is this true? class Thread(threading.Thread): def run(self): process() for i in range(50): ...
0
votes
0answers
65 views

PyQt continuous progress reporting from multiprocessing child

I have the following problem regarding PyQt and multithreaded programming: Basically I have a GUI displaying a plot. But this plot is computationally intensive, so I want to do the calculations in a ...
1
vote
1answer
137 views

Is concurrent.futures a medicine of the GIL?

I was just searching about this new implementation, and i use python 2.7, i must install this, so if i use it, i'll forget the word GIL on CPython?
1
vote
1answer
87 views

Python and truly concurrent threads

I've been reading for hours now and I can completely figure out how python multi threading is faster than a single thread. The question really stems from GIL. If there is GIL, and only one thread is ...
1
vote
1answer
71 views

Force the GIL not to switch threads

I'm profiling some multi-threaded CPython code. In order to measure the time it takes to execute a specific code segment, I would like to force the GIL (Global Interpreter Lock) to not switch between ...
0
votes
0answers
103 views

why do people talk about threading when using Tornado

i'm a beginner in python world, and in tornado, and sometimes, i found that there are people who uses threads with Tornado; for example to handle password hashing. so now i dont understand, in ...
4
votes
1answer
118 views

A thread-safe memoize decorator

I'm trying to make a memoize decorator that works with multiple threads. I understood that I need to use the cache as a shared object between the threads, and acquire/lock the shared object. I'm of ...
2
votes
1answer
41 views

Python GIL: Do all participants in an expression have ref count incremented for the duration of the expression?

Let's say I have a simple C++ class: class Widget { public: Widget() : x(1) { } void sleep() { sleep(x); } private: int x; }; Widget::sleep blocks, so ...
12
votes
2answers
670 views

Green-threads and thread in python

As Wikipedia States: Green threads emulate multi-threaded environments without relying on any native OS capabilities, and they are managed in user space instead of kernel space, enabling them to ...
0
votes
1answer
44 views

Does mod_wsgi runs in a single python interpreter?

I have a django application which relies heavily on threading and I'm noticing no performance increment no matter how much processes or threads I add to the WSGIDaemonProcess. I can't find a YES/NO ...
1
vote
0answers
139 views

Feasability of choosing IronPython (.NET) as an embedded interpreter for a new C++ app [closed]

In order to benefit from the flexibility of scripting languages in UI design and file I/O , I want to embed an interpreter into a C++ based app. I have thought about embedding CPython, since it ...
2
votes
2answers
168 views

file.read() multiprocessing and the GIL

I've read that certain Python functions implemented in C, which I assume includes file.read(), can release the GIL while they're working and then get it back on completion and by doing so make use of ...
9
votes
1answer
378 views

Where's the GIL in PyPy?

Is the PyPy GIL part of the PyPy interpreter implementation in RPython, or is it something that translate.py automatically adds? i.e., if I were to write my own new language interpreter in RPython ...
0
votes
2answers
580 views

Running computation in background thread python/pygtk

Is there a way to run a python thread in the background without locking down the rest of python during time-consuming instructions? I'm trying to do time-consuming calculations in a background thread ...
0
votes
1answer
135 views

Python cost of locking vs. performance, (does multithreading make sense?)

I'm working on a project where throughput of my code quite important and after some consideration I choose to make my program threaded. The main thread and the subthread both adds and removes from ...
2
votes
1answer
190 views

How to call a multi-threaded C function in Cython?

I have a question about how to call a multi-threaded C function in Cython. Do I need to release/acquire the GIL before/after I do the multi-threaded stuff in the C function? Or can I just use it ...
7
votes
1answer
316 views

How can I check whether a thread currently holds the GIL?

I tried to find a function that tells me whether the current thread has the global interpreter lock or not. The Python/C-API documentation does not seem to contain such a function. My current ...
3
votes
1answer
538 views

Python GIL and multithreading

I would like to separate my sigle-thread application to number of working threads. Just 1 question - what about performance of this action? If GIL prevents python from executing more than 1 thread at ...
1
vote
1answer
95 views

How to execute a function in Python based on time provided by argument

How to execute a function in Python based on time provided by seconds argument. def timerfn(seconds, fn, *args): #start some timer #if function first launch is > "seconds", abort #if ...
0
votes
2answers
87 views

Using the GIL as a thread pool

Note: My education on this topic is lacking, so I may be making some naive assumptions. Assume you have a function performing blocking I/O. You need to run this function n times. If you were to ...
2
votes
2answers
114 views

Separate thread for saving django models

I am building an application that uses a remote database - it saves objects of type A to the database and reads objects of type B from the database. As saving models has the potential to block and ...
4
votes
3answers
344 views

Python GIL: is django save() blocking?

My django app saves django models to a remote database. Sometimes the saves are bursty. In order to free the main thread (*thread_A*) of the application from the time toll of saving multiple objects ...
11
votes
2answers
355 views

Embedding python in multithreaded C application

I'm embedding the python interpreter in a multithreaded C application and I'm a little confused as to what APIs I should use to ensure thread safety. From what I gathered, when embedding python it is ...
1
vote
0answers
151 views

Make python http server route to different ports

There was old same question here, but answer was about using threads. I thought it isn't ok with GIL. I want to make many different HTTP-servers(not even python) which run on different ports and in ...
3
votes
2answers
297 views

Why does Python's math.factorial not play nice with threads?

Why does math.factorial act so weird in a thread? Here is an example, it creates three threads: thread that just sleeps for a while thread that increments an int for a while thread that does ...
3
votes
1answer
294 views

SWIG C++ Python polymorphism and multi-threading

I'm integrating a 3rd party C++ package to a python application using SWIG. The package connects to a proprietary API over a network and receives updates. The overall flow is that python instantiates ...
0
votes
1answer
96 views

h5py causing deadlock when used together with another HDF5 module

I am writing a C++ module for Python that uses pthreads and HDF5. My module creates HDF5 files in H5F_ACC_EXCL mode so that it fails when a file is already present. HDF5 prints a stack trace in this ...
6
votes
4answers
282 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 ...
0
votes
1answer
267 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
4answers
593 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 ...
0
votes
1answer
238 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[]) { ...
2
votes
1answer
193 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
1k 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 ...
4
votes
4answers
263 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
1k 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 ...
1
vote
2answers
477 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 ...
6
votes
1answer
267 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?
3
votes
5answers
1k 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. ...
1
vote
4answers
204 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
176 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? ...
0
votes
2answers
578 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?
1
vote
1answer
457 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 ...
14
votes
2answers
918 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. ...
4
votes
1answer
1k 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 ...
3
votes
1answer
162 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 ...
4
votes
3answers
423 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 ...

1 2