parfor with sliced and reduction variable

5 Ansichten (letzte 30 Tage)
lingyan
lingyan am 20 Jun. 2013
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?

Akzeptierte Antwort

Edric Ellis
Edric Ellis am 20 Jun. 2013
Bearbeitet: Edric Ellis am 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 Kommentar
lingyan
lingyan am 20 Jun. 2013
Thanks a lot! Now it works. Can you please explain where am i wrong and why?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Text Analytics Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by