Need help to classify a variable for parallel computing

6 ビュー (過去 30 日間)
Mario Trevino
Mario Trevino 2012 年 11 月 14 日
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 Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by