0
votes
1answer
15 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 …
4
votes
1answer
79 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
76 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 …
2
votes
4answers
99 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 …
1
vote
2answers
89 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 interp …
2
votes
2answers
75 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 < …
0
votes
6answers
87 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
3answers
57 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 cod …
1
vote
1answer
111 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 …
0
votes
2answers
105 views
InterlockedIncrement vs. ++
How does InterlockedIncrement work?
Is the concern only on multi-processor systems?
What does it do, disable interrupts across all processors?
3
votes
2answers
58 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?
2
votes
2answers
139 views
Twisted network client with multiprocessing workers?
So, I've got an application that uses Twisted + Stomper as a STOMP client which farms out work to a multiprocessing.Pool of workers.
This appears to work ok when I just use a pyth …
0
votes
2answers
40 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 i …
1
vote
2answers
124 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.
0
votes
3answers
134 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 …
