tags:

views:

100

answers:

2

i do data mining project in python, during experiment phase i have to run many experiment in same time, how i assign each process to run each experiment? which module i should use?

+3  A: 

Have a look at the multiprocessing module.

Pär Wieslander
thank, :) ,have to try some !!!
vernomcrp
+2  A: 

Have a look at http://stackoverflow.com/questions/203912/does-python-support-multiprocessor-multicore-programming

Then look at http://wiki.python.org/moin/ParallelProcessing for more options

but generally python multiprocessing(http://docs.python.org/library/multiprocessing.html) module will be enough