Re: running a program on many processors

2010-03-08 Thread Processor-Dev1l
On Mar 8, 1:18 am, Paweł Banyś wrote: > Hello, > > I have already read about Python and multiprocessing which allows using > many processors. The idea is to split a program into separate tasks and > run each of them on a separate processor. However I want to run a Python > program doing a single s

Re: running a program on many processors

2010-03-07 Thread Stefan Behnel
Martin P. Hellwig, 08.03.2010 03:08: I did read, two years or so ago, that AMD was looking in to something that does just what you say on a cpu level, that is present itself as one logical cpu but underneath there are multiple physical ones. I wouldn't hold my breath though waiting for it. Many

Re: running a program on many processors

2010-03-07 Thread Martin P. Hellwig
On 03/08/10 00:18, Paweł Banyś wrote: Hello, I have already read about Python and multiprocessing which allows using many processors. The idea is to split a program into separate tasks and run each of them on a separate processor. However I want to run a Python program doing a single simple task

Re: running a program on many processors

2010-03-07 Thread Steven D'Aprano
On Mon, 08 Mar 2010 01:18:13 +0100, Paweł Banyś wrote: > Hello, > > I have already read about Python and multiprocessing which allows using > many processors. The idea is to split a program into separate tasks and > run each of them on a separate processor. However I want to run a Python > progra

Re: running a program on many processors

2010-03-07 Thread Gib Bogle
Paweł Banyś wrote: ... How can it be achieved? Very carefully. -- http://mail.python.org/mailman/listinfo/python-list

Re: running a program on many processors

2010-03-07 Thread Diez B. Roggisch
Am 08.03.10 01:18, schrieb Paweł Banyś: Hello, I have already read about Python and multiprocessing which allows using many processors. The idea is to split a program into separate tasks and run each of them on a separate processor. However I want to run a Python program doing a single simple ta

running a program on many processors

2010-03-07 Thread Paweł Banyś
Hello, I have already read about Python and multiprocessing which allows using many processors. The idea is to split a program into separate tasks and run each of them on a separate processor. However I want to run a Python program doing a single simple task on many processors so that their cumula