Need help to classify a variable for parallel computing

1 次查看(过去 30 天)
I have something like:
parfor
....
[blobCentroid(i-chunk,1:2),blobOrientation(i-chunk,1)]=blob_analysis(vidFrame_bn);
....
end
but get this msg:
Error: File: core_ZBtracker.m Line: 154 Column: 2
The variable blobCentroid in a parfor cannot be classified.
See Parallel for Loops in MATLAB, "Overview".

回答(1 个)

Walter Roberson
Walter Roberson 2012-11-14
Indexing of (non-temporary) arrays within parfor is restricted to using the parfor index in combination with constant offsets. If one of "i" or "chunk" is being computed inside the parfor, then the i-chunk indexing will be disallowed.
It is more or less the case that if parfor cannot prove, by quick static analysis, that the different iterations of the parfor loop will definitely write to parts of the array that cannot overlap what is written in any other iteration, then the indexing will be refused.
It is sometimes the case that there are theoretical proofs, or your knowledge of the data values, that allow you to know that the indexing in the different loops cannot overlap, but if parfor cannot prove it easy inspection, then parfor will balk.
  1 个评论
Mario Trevino
Mario Trevino 2012-11-15
hi Sir Walt(er) Im still quite confused with the right move to make. my loop looks as follows (chunk and delta are constants, blob_centroid is preallocated).
while ini<nFrames
if fin>nFrames;fin=nFrames;end
mov=read(vidObj, [ini fin]);
% getting ready for parallel computing chunk=start_vidFrame-1; nF=nFrames;
% matlabpool open for i=ini:fin waitbar(i/nF);
[blobCentroid(i-chunk,1:2),blobOrientation(i-chunk,1)]=blob_analysis(vidFrame_bn);
end ini=fin+1; fin=ini+delta; end

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by