Re: sequential multiple processes

2009-10-24 Thread Wolodja Wentland
On Sun, Oct 25, 2009 at 00:41 +0900, Hyunchul Kim wrote: >  How to run multiple processes with sequential input of a thousand > of data >  in a script run? > >  I have a python script and 1,000 independent

Re: sequential multiple processes

2009-10-24 Thread Gary Herron
Hyunchul Kim wrote: Hi, all How to run multiple processes with sequential input of a thousand of data in a script run? I have a python script and 1,000 independent input data for it. Previously, I divided input data into/ n/ groups and ran a same python script /n/ times to use /n/ processor

sequential multiple processes

2009-10-24 Thread Hyunchul Kim
Hi, all How to run multiple processes with sequential input of a thousand of data in a script run? I have a python script and 1,000 independent input data for it. Previously, I divided input data into* n* groups and ran a same python script *n* times to use *n* processors. It's inconvenient. Ho