Tagged Questions
0
votes
1answer
24 views
Force only one function of module to run at a time
I am using Python and I have a swig interface to a c++ program. This program is a scientific application that also handles a database. We use it to fetch and save data, but the problem is that it does ...
0
votes
0answers
37 views
AssertionError when using a Process Pool in a recursive function
I'm trying to implement quicksort using process pools in python. Mostly just for fun. My basic idea is at every recursive call, add a task to the pool to do half the work, and do half the work in ...
0
votes
1answer
29 views
Is there a way to stop a running process in concurrent.futures?
How can I terminate a running process, started using concurrent.futures? As I understand, the cancel() method is there to remove a process from the queue if it is not running. But what about killing a ...
6
votes
5answers
264 views
why process doesn't join and doesn't run?
i have a simple problem to solve(more or less)
if i watch python multiprocessing tutorials i see that a process should be started more or less like this:
from multiprocessing import *
def u(m):
...
0
votes
0answers
39 views
Joblib parallel increases time by n jobs
While trying to get multiprocessing to work (and understand it) in python 3.3 I quickly reverted to joblib to make my life easier. But I experience something very strange (in my point of view). When ...
0
votes
0answers
52 views
How can I find a broken pipe (Python unit test)?
I've written a Thread class that reads from an URL, processes the stream and keeps a result as an attribute. In unit testing, instead of an URL, a 'rb' file gets passed to the object.
I've ...
0
votes
1answer
51 views
Python3 from Thread class to Process
I have some independent threads that would probably gain some speed if I can put them into Process.
I changed class x(Thread): with a def run(self): into a class x(Process)... but the Process doesn't ...
1
vote
1answer
58 views
Does multiprocessing module fix CPython multi-core usage?
In CPython, threading module doesn't utilise multiple cores because it uses global interpreter lock. However I recently found multiprocessing module from standard library which is said to sidestep the ...
1
vote
2answers
111 views
Minimax algorithms with multiprocessing issues
I have what I think can be only a synchronizing problem in this Python code.
The code is intended to apply a minimax algorithm to a Tic Tac Toe game, implemented with parallel processes instead of a ...
2
votes
2answers
72 views
multiprocess: identify process in queue
I have a multiprocess program that fetches web pages that all have different response time. The results are stored in the process queue according to the FIFO rule. I would like to indentify the ...
1
vote
1answer
84 views
In Multiprocessing, why is 1 process faster than multiple when accessing this Queue?
I have this code and have noticed when specifying more than 1 thread, performance suffers. The concept here is simple, setup a Queue in multiprocessing, access it from each thread, equally-- note I am ...
1
vote
1answer
95 views
Python multiprocessing - probably failure when method name pass to Process
I have problem with multiprocessing. Under you have the code (he's in couple of class and files, but i simplified it).
I suppose, that problem lies in pass method name which I want to multiply in ...
3
votes
1answer
172 views
Python 3.2 Multiprocessing.Process not running target function
I have a problem and I can't figure out what the issue is. The embedded code (the simplest sample code from the 3.2 docs, just to try to debug) WILL NOT run the target function. The Process ...
1
vote
1answer
99 views
time.sleep hangs multithread function in python
I am having trouble with a sleep statement hanging my multithreading function. I want my function to go about it's buisness while the rest of the program runs. Here is a toy that recreates my ...
27
votes
2answers
380 views
Python 3: Catching warnings during multiprocessing
Too long; didn't read
The warnings.catch_warnings() context manager is not thread safe. How do I use it in a parallel processing environment?
Background
The code below solves a maximization problem ...
7
votes
3answers
155 views
Python 3: Monkey-patched code not re-importable by multiprocessing
In Brief
How can I monkey patch module A from module B when module A's functions are supposed to be importable so that I can run the module A's functions with the multiprocessing standard library ...
1
vote
1answer
105 views
Python 3.2 Multiprocessing NotImplementedError: pool objects cannot be
I'm not sure why, but yesterday I was testing some multiprocessing code that I wrote and it was working fine. Then today when I checked the code again, it would give me this error:
Exception in ...
2
votes
2answers
2k views
Perform a for-loop in parallel in Python 3.2 [duplicate]
Possible Duplicate:
how do I parallelize a simple python loop?
I'm quite new to Python (using Python 3.2) and I have a question concerning parallelisation. I have a for-loop that I wish to ...
2
votes
2answers
267 views
python3.x multiprocessing cycling without “if __name__ == '__main__':”
I have this file (it doesn't make any useful work, it's only for learning):
import multiprocessing,sys
def parent(numproc=2):
print ('at start')
childs=[]
print ('bfore Pipe')
...
2
votes
1answer
203 views
Parallelly started Processes in Python executing serially?
I have an understanding problem/question concerning the multiprocessing library of Python:
Why do different processes started (almost) simultaneously at least seem to execute serially instead of ...
2
votes
2answers
375 views
Multiprocessing Process terminate fails on Linux
I just noticed the problem with process terminate (from multiprocessing library) method on Linux. I have application working with multiprocessing library but... when I call terminate function on ...
2
votes
1answer
198 views
Issues with Pool and multiprocessing in Python 3
Currently I'm trying to convert my little python script to support multiple threads/cores. I've been reading about the multiprocessing module for several days now and I've also been trying to get it ...
1
vote
1answer
230 views
Errors using multiprocessing.pool map when reading from an immutable object
I'm trying to use the multiprocessing Pool class to map a pure function over some immutable objects. However, when I try and run this, I see tons of errors in the terminal (sometimes lasting for ...
0
votes
1answer
528 views
Python 3: Using a multiprocessing queue for logging
I've recently been given the challenge of working multiprocessing into our software. I want a main process to spawn subprocesses, and I need some way of sending logging information back to the main ...
0
votes
1answer
128 views
How to create 3 instances of command prompt in Windows and pass commands to each prompt in parallel using python
I am using python 3.2 currently and I wanted to do write a code that generates 3 instances of command prompt in windows. I then need to access a different server in each of these command prompts using ...
1
vote
1answer
207 views
Python3, my multiprocessing example not running parallel processes
I'm new to multiprocessing. I've altered a simple example code, where a list is sent to worker subprocess, changed and sent back for printing. I've altered it in order to test if multiple processes ...
3
votes
3answers
767 views
python3 multiprocessing example crashed my pc :(
I am new to multiprocessing
I have run example code for two 'highly recommended' multiprocessing examples given in response to other stackoverflow multiprocessing questions. Here is an example of one ...
3
votes
1answer
399 views
Subprocess completes but still doesn't terminate, causing deadlock
Ok, since there are currently no answer's I don't feel too bad doing this.
While I'm still interested in what is actually happening behind the scenes to cause this problem, my most urgent questions ...
7
votes
1answer
134 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 ...
2
votes
1answer
86 views
Creating a variable that can be compared across processes
I have code like the following,
class _Process(multiprocessing.Process):
STOP = multiprocessing.Manager().Event()
def __init__(self, queue, process_fn):
self._q = queue
...
0
votes
1answer
113 views
multiprocessing.Process does not initiate the parallel run of functions by start()
I don't understand how to get multiprocessing.Process started. I used the following example code:
import random, time
import multiprocessing
def frz(no, tm):
a = 'start ' + str(no)
print(a)
...
3
votes
1answer
528 views
Updating a tk ProgressBar from a multiprocess.proccess in python3
I have successfully created a threading example of a thread which can update a Progressbar as it goes. However doing the same thing with multiprocessing has so far eluded me.
I'm beginning to wonder ...
1
vote
2answers
228 views
how can Python see 12 cpus on a cluster where I got allocated 4 cores by LSF?
I access a Linux cluster where resources are allocated using LSF, which I think is a common tool and comes from Scali (http://www.scali.com/workload-management/high-performance-computing). In an ...
0
votes
1answer
194 views
how come I have more threads than processes I asked for my pool in py3k multiprocessing under Linux?
I am trying to parallelize some work, which runs on my mac (Pyton 3.2.2 under Mac OS 10.7) but gives the following error on a Linux cluster I run it where I got 4 cores and access Python 3.2. The ...
2
votes
1answer
2k views
how to troubleshoot an “AttributeError: __exit__” in multiproccesing in Python?
I tried to rewrite some csv-reading code to be able to run it on multiple cores in Python 3.2.2. I tried to use the Pool object of multiprocessing, which I adapted from working examples (and already ...
1
vote
1answer
314 views
Python3 parallelize jobs with multiprocessing
I have a script that parses a file containing directories to other file, that have to be opened and read searching for a keyword.
Since the number of file is growing I'd like to enable multiprocessing ...
1
vote
1answer
103 views
why does an iterable object have no length in Python?
I think I am constantly improving my previous question. Basically, I would need to chunk up a large text (csv) file to send pieces to a multiprocess.Pool. To do so, I think I need at iterable object ...
1
vote
0answers
235 views
how to multiprocess large text files in python?
I tried to digest lines of a DictReader object after I read in a 60 MB csv file. I asked the question here: how to chunk a csv (dict)reader object in python 3.2?. (Code repated below.)
However, now I ...
0
votes
1answer
328 views
how to chunk a csv (dict)reader object in python 3.2?
I try to use Pool from the multiprocessing module to speed up reading in large csv files. For this, I adapted an example (from py2k), but it seems like the csv.dictreader object has no length. Does it ...
1
vote
0answers
162 views
how to streamline (or parallelize with multiprocessing) some python 3.2 code with many loops?
I tried to educate myself about optimizing python and potentially parallelizing my problem. The links I used are listed at my question posted over at ...
0
votes
1answer
65 views
Running a method in the background of the Python interpreter
I've made a class in Python 3.x, that acts as a server. One method manages sending and receiving data via UDP/IP using the socket module (the data is stored in self.cmd, and self.msr respectively). I ...
0
votes
1answer
225 views
Why do I get an import error for multiprocessing when my code is called from a unittest? (PyCharm Python 3)
In one of my modules I do the following import:
from multiprocessing import Pool
This module works fine when called normally, but when I use this from a unittest, I get the following error:
Error
...
0
votes
1answer
806 views
passing list of strings to map_async()
I'm having a funny issue with map_async that i can't figure out.
I'm using python's multiprocessing library with process pools. I'm trying to pass a list of strings to compare against and a list of ...
3
votes
1answer
1k views
Python Multiprocessing - Just not getting it
I've been spending some time trying to understand multiprocessing, though its finer points evade my untrained mind. I've been able to get a pool to return a simple integer, but if the function doesn't ...
1
vote
2answers
631 views
How to limit the number of processors that Python uses
I have a fairly memory expensive Python program to run on a computer that has 8 CPUs (using Python 3.1 64 bit). The problem is that it uses all 8 processors to 100% usage and thus freezes the machine ...
