Info
This question is closed. Reopen it to edit or answer.
Parfor error using variables.
1 view (last 30 days)
Show older comments
a = 0; aa_array = cell(zeros)
parfor i = 1:20
if 1 == 1
a = a + 1;
aa_array(a,1) = {'done'} ;
end
This code is an simpliefied mimic of the code which I am executing. It is running fine with for loop.
However it gives error "Error, parfor cannot be used with the way variables a and aa_array are being used".
Whats the problem in this ?
0 Comments
Answers (1)
Walter Roberson
on 10 Aug 2013
Although you are setting all the elements to the same value in this particular case, it would only take a trivial modification of your code to arrive at a situation in which the values were not all the same. Then because parfor is allowed to execute the iterations in any order, relying on the sequential increment of "a" is not going to work: for example iterations i=1, i=5, and i=14 might all be running simultaneously in the "first round" at the time that a is 0, so depending on exact timing and internal implementation, you could end up writing into aa_array(1,1) three times or aa_array(3,1) three times, or (1,1) twice and (2,1) once, or any combination. Likewise, "a" could end up as 1 or 2 or 3 depending on how the three iterations "race" each other.
aa_array = cell(20,1);
parfor i = 1 : 20
if 1 == 1
aa_array(i,1) = {'done'};
end
end
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!