Threaded for loop

John weekender_ny at yahoo.com
Sat Jan 13 15:15:44 EST 2007


I want to do something like this:

for i = 1 in range(0,N):
 for j = 1 in range(0,N):
   D[i][j] = calculate(i,j)

I would like to now do this using a fixed number of threads, say 10
threads.
What is the easiest way to do the "parfor" in python?

Thanks in advance for your help,
--j




More information about the Python-list mailing list