Need help to classify a variable for parallel computing

2 views (last 30 days)
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".

Answers (1)

Walter Roberson
Walter Roberson on 14 Nov 2012
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 Comment
Mario Trevino
Mario Trevino on 15 Nov 2012
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

Sign in to comment.

Categories

Find more on Parallel for-Loops (parfor) in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!