for / parfor within if
조회 수: 8 (최근 30일)
이전 댓글 표시
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
Philippe Lebel
2019년 11월 21일
편집: Philippe Lebel
2019년 11월 21일
what are the reasons why you dont want to put the end statments after the parfor and the for?
답변 (1개)
Jason Ross
2019년 11월 21일
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
Jason Ross
2019년 11월 22일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!