using a parallel.pool.Constant variable in multiple parfor loops
조회 수: 1 (최근 30일)
이전 댓글 표시
I have ClassA as follows
classdef ClassA < handle
properties (Access = public)
myParameter = 'initValue';
end
methods (Access = public)
function obj = ClassA()
end
function [] = changeMyParameter(obj)
obj.myParameter = 'changedValue';
end
end
end
and ClassB as follows
classdef ClassB < handle
properties (Access = public)
myClassAList;
end
methods (Access = public)
function obj = ClassB()
clc
for i = 1 : 20
obj.myClassAList{i} = ClassA();
end
c = parallel.pool.Constant(obj.myClassAList);
parfor i = 1 : 20
c.Value{i}.changeMyParameter();
disp(c.Value{i}.myParameter);
end
disp('do something in the client')
parfor i = 1 : 20
disp(c.Value{i}.myParameter);
end
end
end
end
If I execute ClassB, I expect the disp command to produce the same results in both of the parfor loops, a list of 'changedValue'. This is what happens in the first loop, however, in the second loop I see a list that both have 'changedValue' and 'initValue' elements as well. Why?
댓글 수: 0
채택된 답변
Edric Ellis
2016년 11월 24일
In this case, the parallel.pool.Constant you're creating has a cell array of 20 elements on each worker. In your first parfor loop, each worker gets some of the 20 loop iterates, and modifies those elements of the cell array inside the Constant value. If you modify your parfor loops, hopefully this will help explain what's happening. For the first loop,
parfor i = 1 : 20
t = getCurrentTask();
c.Value{i}.changeMyParameter();
fprintf('Changing element %d on worker %d\n', i, t.ID);
end
This will show you which elements of c.Value are modified on which worker. (Note that each worker has its own independent copy of c.Value).
Then, when you run the second parfor loop, the iterates are not necessarily dispatched to the same workers in the same order, so if you run:
parfor i = 1 : 20
t = getCurrentTask();
fprintf('Checking element %d on worker %d\n', i, t.ID);
disp(c.Value{i}.myParameter);
end
You can see that in some cases, you're checking an element of c.Value on a worker where it wasn't modified.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!