Choose between for and parfor.

11 visualizzazioni (ultimi 30 giorni)
Martin
Martin il 2 Mag 2014
Commentato: Martin il 2 Mag 2014
Hi,
I want to run many simulations. For this I wrote "for" loop. I used parallel computing, using parfor instead; It works well.
Now I would like to have a binary parameter, say P, at the beginning of my program activating or not parallel computing. (if P == 0, use for loop. If P == 1, use parfor loop).
A way to do that is to copy paste the whole loop, write for on the first one, and parfor on the second one. But I would like to avoid that, to keep my program compact and easily modifiable. Do you think it is at all possible?

Risposta accettata

Friedrich
Friedrich il 2 Mag 2014
Modificato: Friedrich il 2 Mag 2014
Hi,
always use parfor as loop type. When no worker pool is open the parfor loop runs as for loop but backwards. But that should not matter. Note: In R2013b there was a new feature introduced which automatically open a new parallel pool when SPMD or PARFOR is executed. You might want to disable that feature in the parallel preference setting of your MATLAB in the case you use R2013b or newer.
Or in the case you dont like that put the whole body of the loop in a function which takes the index as input, e.g.
if run_in_parallel
parfor i=1:n
result(i) = myfun(i, other_args)
end
else
for i=1:n
result(i) = myfun(i, other_args)
end
end

Più risposte (0)

Categorie

Scopri di più su Parallel for-Loops (parfor) in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by