4
votes
7answers
146 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 …
0
votes
1answer
64 views
Can’t pickle <type ‘instancemethod’> when using python’s multiprocessing Pool.map()
Hi,
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 …
2
votes
2answers
82 views
Detach a subprocess started using python multiprocessing module
Hello,
I would like to create a process using the mutliprocessing module in python but ensure it continues running after the process that created the subprocess exits.
I can get the required …
0
votes
3answers
69 views
python multiprocessing db access is very slow.
Hi
I have GUI that will interact with a postgres database, using psycopg2. I have db connection in a multiprocessing process, and send SQL via a multiprocessing queue, and receive via another queue.
…
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):
…
2
votes
8answers
396 views
Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
I use Python 2.5.4. My computer: CPU AMD Phenom X3 720BE, Mainboard 780G, 4GB RAM, Windows 7 32 bit.
I use Python threading but can not make every python.exe process consume 100% CPU. Why are they …
1
vote
3answers
106 views
How does one properly use the Unix exec C(++)-command?
Specifically, I need to call a version of exec that maintains the current working directory and sends standard out to the same terminal as the program calling exec. I also have a vector of string …
2
votes
4answers
191 views
How to combine Pool.map with Array (shared memory) in Python multiprocessing?
I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.
I like the Pool.map function and would like to use it to calculate functions on that data …
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 …
0
votes
1answer
109 views
Using multiprocessing pool of workers
Hello,
I have the following code written to make my lazy second CPU core working. What the code does basically is first find the desired "sea" files in the directory hierarchy and later execute set …
1
vote
2answers
107 views
Python on multiprocessor machines: multiprocessing or a non-GIL interpreter
This is more a style question. For CPU bound processes that really benefit for having multiple cores, do you typically use the multiprocessing module or use threads with an interpreter that doesn't …
3
votes
4answers
145 views
Python multiprocessing: restrict number of cores used
I want to know how to distribute N independent tasks to exactly M processors on a machine that has L cores, where L>M. I don't want to use all the processors because I still want to have I/O …
1
vote
3answers
68 views
String arguments in python multiprocessing
I'm trying to pass a string argument to a target function in a process. Somehow, the string is interpreted as a list of as many arguments as there are characters.
This is the code:
import …
0
votes
2answers
48 views
Dumping a multiprocessing.Queue into a list
I wish to dump a multiprcoessing.Queue into a list. For that task I've written the following function:
import Queue
def dump_queue(queue):
"""
Empties all pending items in a queue and …
2
votes
2answers
105 views
Python multiprocessing and database access with pyodbc “is not safe”?
The Problem:
I am getting the following traceback and don't understand what it means or how to fix it:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File …
