What's wrong with this parfor loop?

2 views (last 30 days)
even coil
even coil on 10 Dec 2015
Edited: Matt J on 11 Dec 2015
When I try to run the following parfor loop, Matlab returns the error claiming that A cannot be classified.
N = 10;
T = 3;
A = zeros(N,T);
parfor i = 1:1:N
for t = 1:1:T
A(i,t) = rand(1,1);
end
end
Why isn't A considered to be a sliced output variable? The following modification works just fine.
N = 10;
T = 3;
A = zeros(N,T);
parfor i = 1:1:N
A(i,1) = rand(1,1);
end
So it seems to be something to do with the inner loop over t. From reading the help document on sliced variables, I don't understand why this inner loop would make a difference.
  2 Comments
even coil
even coil on 11 Dec 2015
Is there a workaround besides using the vectorized version of rand? (Doing the analgous would be difficult in the application I have in mind.)
Matt J
Matt J on 11 Dec 2015
Edited: Matt J on 11 Dec 2015
If you interchange the order of the loops you've shown, it will run. Whether that's the best solution is hard to tell, though, without seeing an example closer to the application you have in mind.

Sign in to comment.

Accepted Answer

Edric Ellis
Edric Ellis on 11 Dec 2015
In this case, the fix is simply to remove the increment from the inner for loop, like so:
N = 10;
T = 3;
A = zeros(N,T);
parfor i = 1:1:N
for t = 1:T
A(i,t) = rand(1,1);
end
end
(I'm not sure why this limitation exists, it doesn't appear to be explicitly mentioned in the documentation)
  3 Comments
even coil
even coil on 11 Dec 2015
Why isn't this considered a bug? Isn't "1:T" just shorthand for "1:1:T"?
Matt J
Matt J on 11 Dec 2015
Edited: Matt J on 11 Dec 2015
Hard to say if it can be called a bug because it's not yet clear what level of support is intended for nested loops that interact with sliced variables. Note, for example, that the following also produces a classification error,
parfor i = 1:1:N
for t = 1:2:T
A(i,t) = rand(1,1);
end
end

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 11 Dec 2015
N = 10;
T = 3;
A = zeros(N,T);
parfor i = 1:1:N
v = zeros(1,T);
for t = 1:1:T
v(1,t) = rand(1,1);
end
A(i, :) = v;
end

Tags

Community Treasure Hunt

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

Start Hunting!