Hi! I am trying to run a parfor loop on matlab, but the parfor doesn't want to run because the indexing of a variable is not working out.
Here is the code
parfor ii = 1:1:2*nsim
%p is a temporary variable
p = pvals(2);
if ii> nsim
p = pvals(2);
kk = k(ii-nsim);
else
kk = k(end);
end
disp(ii)
[MuTmpA,MuTmpB,VarTmpA,VarTmpB,CovTmpAB,Scatter_tmp]
= ModelCalc(kk,s_1,s_2,N,T,q,p,f,n_plt,pop_sample, plt_step);
MuA(:,ii) =
MuTmpA;
MuB(:,ii) = MuTmpB;
VarA(:,ii) = VarTmpA;
VarB(:,ii)
= VarTmpB;
CovAB(:,ii) = CovTmpAB;
*Scatter_final(:,2*ii-1:2*ii)=
Scatter_tmp* ;
end
The issue is with the Scatter_final variable the asterik line. The following message appears:
Explanation For MATLAB to execute parfor loops efficiently, the amount of data sent to the MATLAB workers must be minimal. One of the ways MATLAB achieves this is by restricting the way variables can be indexed in parfor iterations. The indicated variable is indexed in a way that is incompatible with parfor.
Suggested Action Fix the indexing. For a description of the indexing restrictions, see “Sliced Variables†in the Parallel Computing Toolbox documentation.
Thanks so much for reading my question!

 採用された回答

Edric Ellis
Edric Ellis 2016 年 6 月 17 日

0 投票

Outputs from a parfor loop must be sliced or reductions. In this case, you want a "sliced" output. The linked doc page will show you the full details, but in short - you need to use the loop variable directly as a subscript. In this case, you can make a simple modification to create a 3-D output and then reshape it back on the client.
n = 4;
% Original FOR loop something like this:
for idx = 1:2*n
tmp = repmat(idx, 3, 2);
out(:, 2*idx-1:2*idx) = tmp;
end
% Fixed up PARFOR loop uses 3-D 'pOut'
parfor idx = 1:2*n
tmp = repmat(idx, 3, 2);
pOut(:, :, idx) = tmp;
end
% RESHAPE 'pOut' to match 'out', and ASSERT it's correct
pOut = reshape(pOut, [], 4*n);
assert(isequal(out, pOut))

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeParallel for-Loops (parfor) についてさらに検索

タグ

タグが未入力です。

質問済み:

2016 年 6 月 15 日

編集済み:

2016 年 7 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by