Need help to classify a variable for parallel computing

5 Ansichten (letzte 30 Tage)
Mario Trevino
Mario Trevino am 14 Nov. 2012
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".

Antworten (1)

Walter Roberson
Walter Roberson am 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 Kommentar
Mario Trevino
Mario Trevino am 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

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Parallel for-Loops (parfor) finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by