parfor with sliced and reduction variable

5 views (last 30 days)
Hello, i'm trying to use parfor in this way:
oldc = c(:,index);
delta = thirds(biggy+1);
newc_left = oldc(:,ones(1,lssize));
newc_right = oldc(:,ones(1,lssize));
f_left = zeros(1,lssize);
f_right = zeros(1,lssize);
parfor i = 1:lssize
lsi = ls(i);
newc_left(lsi,i) = newc_left(lsi,i) - delta;
newc_right(lsi,i) = newc_right(lsi,i) + delta;
[f_left(i), con_left(i), fflag_left(i)] = CallObjFcn(Problem,newc_left(:,i),a,b,impcons,calltype,varargin{:});
[f_right(i), con_right(i), fflag_right(i)] = CallObjFcn(Problem,newc_right(:,i),a,b,impcons,calltype,varargin{:});
fcncounter = fcncounter + 2;
end
There is something wrong with the use of newc-left. can I use parfor in this case and how?

Accepted Answer

Edric Ellis
Edric Ellis on 20 Jun 2013
Edited: Edric Ellis on 20 Jun 2013
You could try something like this so that you're updating whole columns of newc_left and newc_right:
numRows = size(oldc, 1);
...
parfor ...
increment = zeros(numRows, 1);
increment(lsi(i)) = delta;
newc_left(:,i) = newc_left(:,i) - increment;
newc_right(:,i) = newc_right(:,i) + increment;
...
  1 Comment
lingyan
lingyan on 20 Jun 2013
Thanks a lot! Now it works. Can you please explain where am i wrong and why?

Sign in to comment.

More Answers (0)

Categories

Find more on Text Analytics Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!