Tagged Questions
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 ...
0
votes
4answers
595 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 ...