Tagged Questions
14
votes
2answers
973 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. ...
1
vote
2answers
323 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 ...