Tagged Questions

Multiprocessing is the use of two or more central processing units (CPUs) within a single computer system

learn more… | top users | synonyms

37
votes
9answers
6k 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 ...
21
votes
3answers
2k views

Multiprocessing Bomb

I was working the following example from Doug Hellmann tutorial on multiprocessing: import multiprocessing def worker(): """worker function""" print 'Worker' return if __name__ == ...
19
votes
8answers
3k 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 ...
17
votes
6answers
6k views

MPI for multicore?

With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?
16
votes
4answers
2k views

Solving embarassingly parallel problems using Python multiprocessing

How does one use multiprocessing to tackle embarrassingly parallel problems? Embarassingly parallel problems typically consist of three basic parts: Read input data (from a file, database, tcp ...
16
votes
3answers
6k views

Can't pickle <type 'instancemethod'> when using python's multiprocessing Pool.map()

I'm trying to use multiprocessing's Pool.map() function to divide out work simultaneously. When I use the following code, it works fine: import multiprocessing def f(x): return x*x def go(): ...
14
votes
4answers
4k 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 ...
14
votes
4answers
6k views

Python: Spawn parallel child processes on a multi-processor system - use multiprocessor package, subprocess package, XYZ package?

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 64 child ...
13
votes
4answers
2k views

How to synchronize a python dict with multiprocessing

I am using Python 2.6 and the multiprocessing module for multi-threading. Now I would like to have a synchronized dict (where the only atomic operation I really need is the += operator on a value). ...
13
votes
3answers
1k 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 ...
12
votes
2answers
224 views

Using the python multiprocessing module for IO with pygame on Mac OS 10.7

I use pygame for running experiments in cognitive science, and often I have heavy I/O demands so I like to fork off these tasks to separate processes (when using a multi-core machine) to improve ...
12
votes
3answers
187 views

What's the pythonic way to deal with worker processes that must coordinate their tasks?

I'm currently learning Python (from a Java background), and I have a question about something I would have used threads for in Java. My program will use workers to read from some web-service some ...
12
votes
5answers
4k views

Keyboard Interrupts with python's multiprocessing Pool

How can I handle KeyboardInterrupt events with python's multiprocessing Pools? Here is a simple example: from multiprocessing import Pool from time import sleep from sys import exit def ...
12
votes
6answers
5k 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 ...
11
votes
1answer
244 views

Python multiprocessing - Pipe vs Queue

What are the fundamental differences between queues and pipes in Python's multiprocessing package? In what scenarios should one choose one over the other? When is it advantageous to use Pipe()? ...
11
votes
5answers
345 views

Python utilizing multiple processors

Lets say I have a big list of music of varying length that needs to be converted or images of varying sizes that need to be resized or something like that. The order doesn't matter so it is perfect ...
11
votes
1answer
340 views

AttributeError: '_MainProcess' object has no attribute '_exiting'

I got an AttributeError: '_MainProcess' object has no attribute '_exiting' from a Python application. Unfortunately this code has to run Python 2.5 and therefore the processing module nowadays ...
11
votes
3answers
5k views

Python: Good place to learn about `multiprocessing.Manager`?

I want to learn to use multiprocessing.Manager. I looked at the documentation but it's not easy enough for me. Anyone knows of a good tutorial or something like that?
10
votes
2answers
1k views

python: multiprocessing Event

What is difference between multiprocessing.Event and multiprocessing.managers.SyncManager.Event. When do I use each? Why two different objects exist? Same question for other similar objects existing ...
10
votes
8answers
397 views

How does event driven I/O allow multiprocessing?

I am aware of event driven I/O like select, poll, epoll, etc allow someone to build say a highly scalable web server, but I am confused by the details. If there is only one thread of execution and one ...
10
votes
3answers
2k views

Python-daemon doesn't kill its kids

When using python-daemon, I'm creating subprocesses likeso: import multiprocessing class Worker(multiprocessing.Process): def __init__(self, queue): self.queue = queue # we wait for things ...
10
votes
1answer
2k views

Python multiprocessing

I'm having troubles with the multiprocessing module. I'm using a Pool of workers with its map method to load data from lots of files and for each of them i analyze data with with a custom fuction. ...
9
votes
2answers
486 views

Why is there no speed-up when using pythons multiprocessing for embarassingly parallel problem within a for-loop, with shared numpy data?

I want to speed up an embarassingly parallel problem related to Bayesian Inference. The aim is to infer coefficents u for a set of images x, given a matrix A, such that X = A*U. X has dimensions mxn, ...
9
votes
2answers
1k views

Log output of multiprocessing.Process

Is there a way to log the stdout output from a given Process when using the multiprocessing.Process class in python?
9
votes
4answers
403 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 ...
8
votes
1answer
169 views

Trying to find Scala tutorials that focus multi-threading

Scala appears to have a ton of features and improvements over Java. I am having a hard time isolating the stuff I want to learn first about Scala. What should I look for on Google if I just want to, ...
8
votes
2answers
373 views

Python Multiprocessing with PyCUDA

I've got a problem that I want to split across multiple CUDA devices, but I suspect my current system architecture is holding me back; What I've set up is a GPU class, with functions that perform ...
8
votes
5answers
817 views

In Python, how do I know when a process is finished?

From within a Python GUI (PyGTK) I start a process (using multiprocessing). The process takes a long time (~20 minutes) to finish. When the process is finished I would like to clean it up (extract ...
8
votes
5answers
2k views

Multiprocessing vs Threading Python

I am trying to understand the advantages of the module Multiprocessing over Threading. I know that Multiprocessing get's around the Global Interpreter Lock, but what other advantages are there, and ...
8
votes
3answers
4k views

Python: Multicore processing?

I've been reading about Python's multiprocessing module. I still don't think I have a very good understanding of what it can do. Let's say I have a quadcore processor and I have a list with ...
7
votes
1answer
100 views

Appending a process to a list (but doing nothing with it) alters program behaviour

In the following program, when I append the process to a list (a seemingly pointless thing to do), it runs as expected. But if I remove the append, the processes destructor is called many times before ...
7
votes
2answers
267 views

Avoiding Cache Consistency Issues in Delphi With a Critical Section?

I just read a MSDN article, "Synchronization and Multiprocessor Issues", that addresses memory cache consistency issues on multiprocessor machines. This was really eye opening to me, because I would ...
7
votes
1answer
225 views

boost::interprocess memory allocator on anonymous segment

I'm trying to use an mmap-like segment to allocate objects on stl containers, for that I'm using boost::interprocess which provides with memory mappings, allocators and anonymous memory mapping ...
7
votes
3answers
168 views

what is the neat way to divide huge nested loops to 8(or more) processes using Python?

this time i'm facing a "design" problem. Using Python, I have a implement a mathematical algorithm which uses 5 parameters. To find the best combination of these 5 parameters, i used 5-layer nested ...
7
votes
1answer
154 views

Why doesn't pipe.close() cause EOFError during pipe.recv() in python multiprocessing?

I am sending simple objects between processes using pipes with Python's multiprocessing module. The documentation states that if a pipe has been closed, calling pipe.recv() should raise EOFError. ...
7
votes
4answers
3k views

Multiprocessing: using Pool.map on a function defined in a class

when i run something like from multiprocessing import Pool p = Pool(5) def f(x): return x*x p.map(f, [1,2,3]) it works fine. However, putting this as a function of a class class ...
7
votes
2answers
619 views

What's the advantage of queues over pipes when communicating between processes?

What would be the advantage(s) (if any) of using 2 Queues over a Pipe to communicate between processes? I am planning on using the multiprocessing python module.
7
votes
5answers
657 views

Python: Separating the GUI process from the core logic process

I'm developing a Python project for dealing with computer simulations, and I'm also developing a GUI for it. (The core logic itself does not require a GUI.) The GUI toolkit I use for is wxPython, but ...
7
votes
3answers
356 views

What problems will one see in using Python multiprocessing naively?

We're considering re-factoring a large application with a complex GUI which is isolated in a decoupled fashion from the back-end, to use the new (Python 2.6) multiprocessing module. The GUI/backend ...
7
votes
6answers
2k 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 ...
6
votes
4answers
135 views

Is there any way to pass 'stdin' as an argument to another process in python?

I'm trying to create a script which is using multiprocessing module with python. The script (lets call it myscript.py) will get the input from another script with pipe. Assume that I call the ...
6
votes
3answers
168 views

Python multiprocessor programming

In python, is there a way to find out which CPU a process is running on? For example if I create different processes for different tasks, using the multiprocessing module, is it possible to identify ...
6
votes
3answers
178 views

Is there a multiprocessing module for Perl?

Is there a multiprocessing module for Perl? Something that has similar functionality to what's offered by Python's multiprocessing module. I understand I could build similar functionality using Perl, ...
6
votes
1answer
103 views

python multiprocessing pickle protocol

I am using the Python multiprocessing module to place objects onto a queue and have them processed by several workers. My first issue was getting bound instance methods to pickle, which I have ...
6
votes
2answers
296 views

Use numpy array in shared memory for multiprocessing

I would like to use a numpy array in shared memory for use with the multiprocessing module. The difficulty is using it like a numpy array, and not just as a ctypes array. from multiprocessing import ...
6
votes
2answers
130 views

Process communication in Python

What is the best way to establish communication between two processes in python? After some googling, I tried to do so: parent_pipe, child_pipe = Pipe() p = Process(target = ...
6
votes
3answers
252 views

How to do dynamic creation of per-process queues in Python multiprocessing

I want to dynamically create multiple Processes, where each instance has a queue for incoming messages from other instances, and each instance can also create new instances. So we end up with a ...
6
votes
1answer
250 views

Why does this python program sometimes fail to exit?

I wrote a test program, which has two processes. The father process gets data from a Queue, and the child puts data into it. There is a signal handler which tells the program to exit. However, it does ...
6
votes
1answer
513 views

Python Multiprocessing.Pool lazy iteration

I'm wondering about the way that python's Multiprocessing.Pool class works with map, imap, and map_async. My particular problem is that I want to map on an iterator that creates memory-heavy objects, ...
6
votes
2answers
560 views

Using the multiprocessing module for cluster computing

I'm interested in running a Python program using a computer cluster. I have in the past been using Python MPI interfaces, but due to difficulties in compiling/installing these, I would prefer ...

1 2 3 4 5 13