parfor unable to classify, why?

조회 수: 1 (최근 30일)
Bruno Luong
Bruno Luong 2023년 1월 4일
댓글: Edric Ellis 2023년 1월 5일
Can someone explain why the ind2sub first statement triggers the error, but the second works fine?
m = 2;
n = 3;
mycell = cell(m,n);
parfor k = 1:numel(mycell)
[i,j] = ind2sub(size(mycell), k); % MATLAB complains cannot classify mycell because of this
%[i,j] = ind2sub([m n], k); % this iis however accepted
mycell{k} = 1;
end
Error: Unable to classify the variable 'mycell' in the body of the parfor-loop. For more information, see Parallel for Loops in MATLAB, "Solve Variable Classification Issues in parfor-Loops".

채택된 답변

Matt J
Matt J 2023년 1월 4일
편집: Matt J 2023년 1월 4일
I suspect it is because mycell is intended to be a sliced variable, but the code violates the fixed indexing rule,
Fixed Index Listing. Within the first-level indexing of a sliced variable, the list of indices is the same for all occurrences of a given variable.
since in one place you index mycell with {k} and elsewhere you do not index it at all. Notice that this also doesn't work:
m = 2;
n = 3;
mycell = cell(m,n);
parfor k = 1:numel(mycell)
mycell;
mycell{k} = 1;
end
I also vaguely wonder if it makes sense for a parpool worker to try to determine the size() of a sliced variable when it only receives a piece of it.
  댓글 수: 5
Matt J
Matt J 2023년 1월 5일
편집: Matt J 2023년 1월 5일
@Edric Ellis If mycell were sliced, is it even possible for a parpool worker to determine its original size? Putting it another way, does a sliced variable somehow carry the metadata of the original, unsliced variable?
Edric Ellis
Edric Ellis 2023년 1월 5일
@Matt J no, the sliced portion on the worker doesn't directly know the metadata of the original array (but the code running on the worker does know enough to make sure it writes the correct piece of the sliced portion that it is working with) - this is just one reason why it's not valid to attempt to access the "whole" variable in any way in the body of the loop.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by