How to repeat/continue iteration of a parfor loop without incrementing the loop counter untill condition is satisfied

13 visualizzazioni (ultimi 30 giorni)
I would like to do a fixed number of simulations, the problem is that while running one, if some conditon is not met, I want to be able not to count the simulaton and redo it.
The logic without a parfor loop is something like this:
runs = 10;
counter = 0;
while counter <= runs
% do something
if condition
continue
end
counter = counter + 1;
end
How to implement the same idea with a parfoor loop?

Risposta accettata

Edric Ellis
Edric Ellis il 8 Apr 2022
It's not entirely clear how your "do something" chooses what to do. I think we need to see a little more detail there. Setting that aside for a moment, here's one possible option:
runs = 10;
parfor ii = 1:10
candidateResult = rand();
while candidateResult < 0.9
% Keep calling 'rand' until we get an acceptable result.
candidateResult = rand();
end
out(ii) = candidateResult;
end
Starting parallel pool (parpool) using the 'local' profile ... Connected to the parallel pool (number of workers: 2).
disp(out)
0.9301 0.9807 0.9604 0.9625 0.9114 0.9821 0.9334 0.9800 0.9460 0.9944
  3 Commenti
Edric Ellis
Edric Ellis il 8 Apr 2022
Really my uncertainty is around how you're selecting the things to do in "do something". In a typical parfor loop, your "do something" would depend on the loop index ii. However, if "do something" depends only on ii, then you'll always get the same answer, and never satisfy your condition. In the example I show, I'm using rand to avoid the problem because it is not deterministic. Here's some a silly non-working example that shows how things could go wrong if you have a completely deterministic "do something".
runs = 10;
parfor ii = 1:10
candidateResult = ii + 3;
while candidateResult < 42 % This will never complete
candidateResult = ii + 3;
end
out(ii) = candidateResult;
end

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by