0
votes
3answers
148 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 on …
0
votes
3answers
64 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 receiv …
2
votes
2answers
64 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 …
2
votes
8answers
370 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% …
1
vote
5answers
137 views
any body familiar with how I can implement a multiprocessing priority queue in python?
any body familiar with how I can implement a multiprocessing priority queue in python?
3
votes
1answer
41 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_coun …
1
vote
3answers
91 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 v …
2
votes
4answers
159 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 fun …
12
votes
7answers
790 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 …
4
votes
1answer
99 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 tha …
0
votes
0answers
43 views
How to generate pdb files for parallel builds?
We are seeking ideas on resolving a problem with linking/pdb generation when running multiple devenv.com using Visual Studio 2005.
We are getting the following intermittently erro …
0
votes
0answers
87 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 …
0
votes
6answers
99 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)
…
1
vote
1answer
124 views
python multiprocessing proxy
I have a 2 processes:
the first process is manager.py starts in backgroung:
from multiprocessing.managers import SyncManager, BaseProxy
from CompositeDict import *
class Compos …
1
vote
2answers
141 views
Multiprocessor Scheduling Algorithm
Hi,
I'm searching for a Sequential implementation of multiprocessor scheduling algorithm, preferably implemented in c++, or c.
Any suggestions are welcome.
