Multiprocessing is the use of two or more central processing units (CPUs) within a single computer system
0
votes
0answers
35 views
Multiprocessing hangs when Number of processes is increased
I am trying to understand multiprocessing in python.
I made a test program that finds the max number from a set of lists.
It works fine for a limited number of processes, but at some point the ...
2
votes
2answers
40 views
Multiprocessing - Process owns my computer
I was just having a go with how to use the multiprocessing.Lock()
Working from the examples on:
http://docs.python.org/2/library/multiprocessing.html
This example in fact:
from multiprocessing ...
1
vote
1answer
15 views
PyCurl. 'Can't pickle Curl object' error on Windows x64
import multiprocessing
import time
import pycurl
class Bot(multiprocessing.Process):
def __init__(self):
multiprocessing.Process.__init__(self)
self.c = pycurl.Curl()
...
0
votes
1answer
19 views
Terminating subprocess in python2.7
I am working on windows 8 x64 system
I am writing a code in which i am using subprocess to execute one lengthy program
while execution i fetch output of program and analyse it runtime, for particular ...
0
votes
1answer
53 views
Train two models concurrently
All I need to do is, train two regression models (using scikit-learn) on the same data at the same time, using different cores. I've tried to figured out by myself using Process without success.
gb1 ...
-1
votes
2answers
47 views
Python: How can i use multiprocessing to speed up operating on class instances?
for example:
instances = [ClassName() for i in range(no_inst)]
for data in dataset:
for inst in instances:
inst.dosomething(data)
Note: The instances do not modify the data, so there is ...
0
votes
1answer
48 views
difference between the value returned by pthread_self() and gettid()
according to my understanding, the TID(thread id) returned by gettid() is unique inside a process(or inside a program with multiple processes, while each process may have multiple threads), namely, ...
1
vote
4answers
63 views
what is the value range of thread and process id?
fork and pthread_create will return a process id or thread id.
But I don't know the value range of these ids.
Now I want to make a lookup table, in each entry there is a item/field for thread id.
...
0
votes
1answer
15 views
Is There a Pickler With a Memo That Doesn't Require a File
We have an interesting use case for Pickler in python. We are doing multiprocessing with objects that have references to objects.
In this question about pickling member objects you can see that ...
1
vote
1answer
51 views
Multi-process in WebKit
In the Google Chrome each tab (or window/gui) is a different process (not only the tabs, but also plugins, extensions, etc.).
How can I make something like multi-process in Qt+WebKit?
Note: No need ...
3
votes
2answers
59 views
Send TERM signal to child process spawned in another thread of parent process
I'm on Linux platform and using Perl. First of all I created a thread, and forked a child process in this new thread. When the parent in the new thread returned and joined to the main thread, I would ...
1
vote
1answer
30 views
performance - multithreaded or multiprocess applications
In order to develop a highly network intensive server application on linux, what sort of architecture is preferred? The idea is that this app would typically run on machines with multiple cores ...
2
votes
1answer
32 views
Byte limit when transferring Python objects between Processes using a Pipe?
I have a custom simulator (for biology) running on a 64-bit Linux (kernel
version 2.6.28.4) machine using a 64-bit Python 3.3.0 CPython interpreter.
Because the simulator depends on many independent ...
0
votes
1answer
25 views
How to “listen” to a multiprocessing queue in Python
I will start with the code, I hope it is simple enough:
import Queue
import multiprocessing
class RobotProxy(multiprocessing.Process):
def __init__(self, commands_q):
...
0
votes
2answers
44 views
Java Heaps and GC on Multi-Processor machines?
How does Java deal with GC and Heap Allocation on multi-processor machines?
In the reading I've done, there doesn't seem to be any difference in the algorithms used between single and multi-processor ...
0
votes
3answers
22 views
Issue with setting value for Python class inherited from multiprocessing.Process
Why this code
import multiprocessing
import time
class Bot(multiprocessing.Process):
def __init__(self):
self.val = 0
multiprocessing.Process.__init__(self)
def ...
1
vote
0answers
21 views
MySQL transactions deadlocking, but SHOW ENGINE INNODB STATUS does not show a true deadlock
I am having some trouble with 2 processes modifying the same table in a MySQL database. Very occasionally it causes a deadlock and one or other of the processes gets a 'Deadlock found when trying to ...
6
votes
2answers
55 views
does single thread application utilize multi core in android?
Does single thread application use all the 4 core in a Quad-core phone.
I searched this a lot and found some articles that says yes and some saying no. some articles even say the android OS doesn't ...
1
vote
2answers
26 views
Does last_insert_id return the correct auto_increment id in a multiprocessing environment?
Here's some simplified code in my web application:
sub insert {
my $pid = fork();
if ($pid > 0) {
return;
}
else {
&insert_to_mysql();
my $last_id = ...
0
votes
1answer
44 views
python multiprocessing Pool with map_async
I trying to use the multiprocessing package in python with a Pool.
I have the function f which is called by the map_async function:
from multiprocessing import Pool
def f(host, x):
print host
...
2
votes
1answer
39 views
Parallelism in (I)Python with large blocks of data
I've been toiling with threads and processes for a while now to try to speed up my very parallel job in IPython. I'm not sure how much detail about the function I'm calling is useful, so here's a bash ...
0
votes
0answers
10 views
multiple CPU's usage symetrical
I have noticed this a number of times while doing computational expensive tasks on my computer, anywhere from computing hashes, to rendering videos.
In this specific situation I was rendering a video ...
0
votes
0answers
22 views
understanding OS basics: Multitasking, Multiprocessing
I know some of you may think this question as non-constructive, duplicate or want to close it, but still I want to ask it to have a better insight of the topic. I want to know about the famous ...
-4
votes
0answers
37 views
construct a database-alike table using C [closed]
I want to construct such a table in my program(linux C):
it has 3 items:
1 ip/port pair, 2 a FIFO queue pointer, 3 a process id or thread id
my program has two kinds of functions(or modules, ...
0
votes
1answer
45 views
Make a multiprocess UDP server with Python, one process for listening to one port
I want make a multiprocess UDP server with Python, listen one port for each process from a class:
processListener.py:
import multiprocessing
import socket
class ...
0
votes
1answer
14 views
is it possible to sync output of multiple running processes or delay output of process?
I have several processes running at the same time,
in each process there is one c program,
when these processes are running, each process/programs output some log information to stdout from time to ...
1
vote
0answers
27 views
Parallel numerical integration using python
I would like to numerically integration a function using multiple cpus in python. I would like to do something like:
from scipy.integrate import quad
import multiprocessing
def FanDDW(arguments):
...
0
votes
2answers
80 views
multiprocessing.value clear syntax?
I want to use multiprocessing.Value to use a variable in multiple processes, but the syntax is not clear on Python's documentation. Can anyone tell me what should I use as type (my variable is a ...
0
votes
0answers
22 views
Multiprocessing spawns process but not called function
I'm using multiprocessing to call a function wich takes as argument the key you press on your keyboard. But when I lauch my program, a new process appears in the Task Manager, but my function doesn't ...
1
vote
2answers
21 views
How to make sure that nodejs cluster assigns processes to different cores?
When utilizing multi cores via Node.js' cluster module is it guaranteed that each forked node worker is assigned to a different core?
If it's not guaranteed is there any way to control or manage it ...
0
votes
2answers
37 views
How to clear a multiprocessing queue in python
I just want to know how to clear a multiprocessing queue in python like a normal python queue. For instance:
from multiprocessing import Queue # multiprocessing queue
from Queue import Queue ...
0
votes
0answers
54 views
What are the best practices regarding ThreadPool? Using Python multiprocessing API
I hope this is not off topic.
I am writing a python script that has a heavy workload, so I decided to use the Python multiprocessing ThreadPool API.
I am using that in this way:
pool = ...
0
votes
0answers
37 views
python mutiprocessing: using class methods of instantiated classes with shared objects
I'm new to parallel processing but have an application for which it will be useful.
I have ~10-100k object instances (of type ClassA), and I want to use the multiprocessing module to distribute the ...
0
votes
2answers
49 views
C++ OpenMP exit while loop inside a parallel for
I use Visual Studio 2010 and OpenMP on a Windows 7 machine. I've written the following code snipplet:
#pragma omp parallel for
for(int jj=0;jj<2;jj++){
MSG msg;
// do something in parallel for jj
...
1
vote
1answer
28 views
Arduino : time scheduler is not working
I am trying to use the Arduino time scheduler. I copied the code from here and I imported the library, but it didn't compile. Here's the compilation error code and the code itself:
Error:
In file ...
0
votes
1answer
43 views
how do I parallelize a simple python def with multiple argument [duplicate]
I would like to parallelize a python script. I've create a definition:
def dummy(list1,list2):
do usefull calculations ...
The list1 and list2 contain a list of files name that I should read and ...
1
vote
1answer
20 views
Using sets with the multiprocessing module
I can't seem to share a set across processes using a Manager instance.
A condensed version of my code:
from multiprocessing.managers import SyncManager
manager = SyncManager()
manager.start()
...
0
votes
1answer
31 views
Multiprocessing pipes on windows with python
Does Windows support multithreading.pipes()? If yes, then what is wrong with this code? Do I need to be using reduction? The code hangs on p2.recv() and I get a RuntimeError when run from the command ...
0
votes
0answers
20 views
Python 2.7 on Windows, “assert main_name not in sys.modules, main_name” for all multiprocessing examples
There is following simple code:
from multiprocessing import Process, freeze_support
def foo():
print 'hello'
if __name__ == '__main__':
freeze_support()
p = Process(target=foo)
...
0
votes
2answers
36 views
python, better syntax with multiprocesses
I have the following method:
def GetMarketData(fr, cr, dct1, dct2, dict3, dct5, dct5):
md = MarketData()
q1 = Queue()
q2 = Queue()
q3 = Queue()
q4 = Queue()
q5 = Queue()
...
3
votes
2answers
78 views
is it possible to create a non-child process inside a shell script?
I'm using a shell process pool API at Github, for a script, as below
function foobar()
{
mytask($1);
}
job_pool_init 100 0
tcpdump -i eth0 -w tempcap & #
...
0
votes
1answer
27 views
Understanding process pool : how does a process pool use wait() to reap child process?
if a process pool is created and there are 10 processes
but my program only use 4 processes
it means there are 6 idle processes
to use a process pool,
generally the pseudo code is like:
...
0
votes
1answer
46 views
How to simultaneously query two APIs in Python?
Using web.py, I'm building a website in which I display search results from two third party websites through their public API. Unfortunately, for the APIs to send back the result takes about 4 ...
2
votes
2answers
57 views
python multiprocessing pool terminate
I'm working on a renderfarm, and I need my clients to be able to launch multiple instances of a renderer, without blocking so the client can receive new commands. I've got that working correctly, ...
0
votes
2answers
39 views
Is there no need to reap zombie process in python?
It seems to me in Python, there is no need to reap zombie processes.
For example, in the following code
import multiprocessing
import time
def func(msg):
time.sleep(2)
...
4
votes
1answer
75 views
how to fetch process from python process pool
I want to create many processes,
each process runs 5 seconds later than a previous process,
namely, the time interval between each process starts is 5 seconds,
so that:
run process 1
wait 5 seconds
...
1
vote
3answers
42 views
Retaining class instance list contents while multiprocessing
Let's say I have some class called dog:
class dog():
def __init__(self, name, age):
self.name = name
self.age = age
self.fleas = []
Now let's say I have a list of ...
0
votes
0answers
39 views
Too many open files. Python multiprocess TCP server
I am writing tcp server on Python. Os - ubuntu 12.04
The server is multiprocess. Main process is accepting connections. Accepted socket reduced and sent to the worker:
<main process>
h = ...
0
votes
0answers
34 views
Memory sharing custom objects in Python multiprocessing
I have several models loaded in memory, each model is an object of my custom Python class. These models themselves consist of 100s of MB of internal data each. I'm receiving small requests, which are ...
0
votes
1answer
20 views
Octo.py only using between 0% and 3% of my CPUs
I have been running a Python octo.py script to do word counting/author on a series of files. The script works well -- I tried it on a limited set of data and am getting the correct results.
But when ...


