for / parfor within if

20 vues (au cours des 30 derniers jours)
Eric
Eric le 21 Nov 2019
Commenté : Jason Ross le 22 Nov 2019
Is there a way to write something like:
if parallelloop
parfor i=1:n
else
for i=1:n
end
...iterations
end
where parallellop is a boolean.
This code is not accepted by Matlab because the same end for both parfor and for.
A solution I do not accept for many reasons would be:
if parallelloop
parfor i=1:n
...iterations
end
else
for i=1:n
...iterations
end
end
Another solution I would like to have is an #ifdef like approach, but is there any?
Thanks by advance.
  2 commentaires
Philippe Lebel
Philippe Lebel le 21 Nov 2019
Modifié(e) : Philippe Lebel le 21 Nov 2019
what are the reasons why you dont want to put the end statments after the parfor and the for?
Eric
Eric le 22 Nov 2019
Because the code between for and end statements is too long and also if this writing can be done it can be written in a function with a genric name that will perform a parfor loop or a simple for loop, depending on the capabilities of the Matlab.
Just as a comparizon, I have the same approach with openMP and C++, the same code with preprocessor directives and if openMP is installed it is used, otherwise it is not. And I think that many people using distcomp would like to have this flexibility: a single code for many platforms/architectures.

Connectez-vous pour commenter.

Réponses (1)

Jason Ross
Jason Ross le 21 Nov 2019
You can control if a loop is run with parallel workers or not by changing the number of workers. See "Test parfor-Loops by Switching Between Parallel and Serial Execution" in the parfor documentation. Note that even with 0 workers, the parfor is still nondeterministic.
To make your example work, you would set the number of workers to 0 if parallelloop is false.
  4 commentaires
Eric
Eric le 22 Nov 2019
You are partially right because:
  1. computational time is not the same (as seen in your link) and
  2. parfor is not known on old versions of Matlab (mine is R2007 and parfor is not known).
Jason Ross
Jason Ross le 22 Nov 2019
There have been a lot of changes since then -- the computational time issue might have been a bug, and fixed. The overall point I was getting at was that parfor is interpreted as a for in the absence of Parallel Computing Toolbox being present.
This also does make the implicit assumption that parfor introduces new functionality that would be incompatible with releases that don't know what parfor is, but that's going to be the case with pretty much any arbitrary software package.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Parallel for-Loops (parfor) dans Help Center et File Exchange

Produits


Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by