4
votes
7answers
127 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
46 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
8answers
388 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
105 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 …
3
votes
1answer
50 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
2answers
79 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
68 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.
…
2
votes
4answers
184 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
108 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
3answers
154 views
python multiprocessing manager & composite pattern sharing
I'm trying to share a composite structure through a multiprocessing manager but I felt in trouble with a "RuntimeError: maximum recursion depth exceeded" when trying to use just one of the Composite …
3
votes
4answers
135 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 …
2
votes
2answers
98 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 …
0
votes
6answers
108 views
Synchronize shell script execution
A modified version of a shell script converts an audio file from FLAC to MP3 format. The computer has a quad-core CPU. The script is run using:
./flac2mp3.sh $(find flac -type f)
This converts the …
0
votes
0answers
90 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
105 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 …
