python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I speed up an optimized CPU-bound process that runs within a parallelized program in Python?
A Python program of mine uses the multiprocessing module to parallelize iterations of a search problem. Besides doing other things, each iteration loops over a CPU-expensive process that is already op...
laos
Votes: 0
Answers: 1
Keep a class running in a python subprocess or thread or process
I am using Squish to automate a Qt-based GUI application. I look up qt objects in the application recursively. Since it's time-intensive, I would like to cache objects once found for later reuse. I ha...

shashank singh
Votes: 0
Answers: 2
Python Multiprocessing Pipe is very slow (>100ms)
I'm currently writing an image processing program in Python 3.x that needs to process frames in real-time (30 FPS) with low-latency (<60ms). I have 1 parent process that reads frames and sends them...
Abhishek Satish
Votes: 0
Answers: 2
Is there a better way of doing multiprocessing than this? Preferably faster and not so hard on the memory
This is my code. I don't think this is the best way to do this task, Can you kindly help me? Thanks in advance. It responded once but when I ran it again it kept on running and didn't give out the des...
Sardar Arslan
Votes: 0
Answers: 1