13
votes
8answers
870 views
Multiprocessing or Multithreading?
I'm making a program for running simulations in Python, with a wxPython interface. In the program, you can create a simulation, and the program renders (=calculates) it for you. Rendering can be very …
12
votes
7answers
825 views
How should I log while using multiprocessing in Python?
Right now I have a central module in a framework that spawns multiple processes using the Python 2.6 multiprocessing module. Because it uses multiprocessing, there is module-level …
7
votes
4answers
929 views
Python: Spawn parallel child processes on a multi-processor system - use multiprocessor package, subprocess package, XYZ package?
Hi there,
I am a Python newbie so please be gentle :)
I have a Python script that I want to use as a controller to another Python script. I have a server with 64 processors, so want to spawn up to …
7
votes
6answers
1k views
Python multiprocessing: sharing a large read-only object between processes?
Do child processes spawned via multiprocessing share objects created earlier in the program?
I have the following setup:
do_some_processing(filename):
for line in file(filename):
if …
7
votes
6answers
1k views
MPI for multicore ?
With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?
6
votes
4answers
357 views
python multiprocessing vs threading for cpu bound work on windows and linux
So I knocked up some test code to see how the multiprocessing module would scale on cpu bound work compared to threading. On linux I get the performance increase that I'd expect:
linux (dual quad …
6
votes
4answers
206 views
How to isolate your program from calls to a “bad” API?
When I developed a piece of (academic) software using Java, I was forced to use an API that was rather badly implemented. This means that calls to this API for a certain set of input data would …
5
votes
7answers
148 views
What’s the best way to divide large files in Python for multiprocessing?
I run across a lot of "embarrassingly parallel" projects I'd like to parallelize with the multiprocessing module. However, they often involve reading in huge files (greater than 2gb), processing them …
5
votes
3answers
240 views
Is *this* really the best way to start a second JVM from Java code?
This is a followup to my own previous question and I'm kind of embarassed to ask this... But anyway: how would you start a second JVM from a standalone Java program in a system-independent way? And …
5
votes
3answers
1k views
Python 2.6 multiprocessing.Queue compatible with threads?
I am experimenting with the new multiprocessing module in Python 2.6. I am creating several processes each with its own multiprocessor.JoinableQueue instance. Each process spawns one or more worker …
4
votes
1answer
112 views
Running code on different processor (x86 assembly)
In real mode on x86, what instructions would need to be used to run the code on a different processor, in a multiprocessor system?
(I'm writing some pre-boot code in assembler that needs to set …
4
votes
1answer
88 views
How can you profile a parallelized Python script?
Suppose I have a python script called my_parallel_script.py that involves using multiprocessing to parallelize several things and I run it with the following command:
python -m cProfile …
4
votes
5answers
353 views
Which scripting languages support multi-core programming?
I have written a little python application and here you can see how Task Manager looks during a typical run.
While the application is perfectly multithreaded, unsurprisingly it uses only one CPU …
4
votes
3answers
606 views
How can I handle multiple sockets within a Perl daemon with large memory usage?
I have created a client-server program with Perl using IO::Socket::INET. I access server through CGI based site. My server program will run as daemon and will accept multiple simultaneous connections. …
3
votes
1answer
53 views
Multiprocessing Pool inside Process time out
When ever I use the following code the pool result always returns a timeout, is there something logically incorrect I am doing?
from multiprocessing import Pool, Process, cpu_count
def add(num):
…
