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
Comment