The variable x in a parfor cannot be classified

5 Ansichten (letzte 30 Tage)
Priyabrata Senapati
Priyabrata Senapati am 10 Jan. 2019
When I run this code, I get an error "The variable x in a parfor cannot be classified" that points to x(j,:) in the line sum = sum + A(i,j)*x(j,:);. Can you please suggest what should I do?
parfor i = 2:n
while (j < i)
if (A(i,j) ~= 0)
sum = sum + A(i,j)*x(j,:);
end
j = j+1;
end
end
  1 Kommentar
KSSV
KSSV am 10 Jan. 2019
YOu need not to use a parfor for this. YOu can achieve it stright away by vectorization which would be very fast.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Edric Ellis
Edric Ellis am 10 Jan. 2019
Hm, I didn't see that precise error. I modified your example just a little so that it was actually executable, like so:
n = 4;
A = rand(n);
x = rand(n);
sum = 0; % note 1
parfor i = 2:n
j = 1; % note 2
while (j < i)
if (A(i,j) ~= 0)
sum = sum + A(i,j)*x(j,:);
end
j = j+1;
end
end
A couple of changes:
  1. I set an initial value for sum
  2. You must reset j each time around the parfor loop so that the parfor machinery can tell that you intend j to be a temporary variable (and that you aren't doing anything order-dependent).
  1 Kommentar
Priyabrata Senapati
Priyabrata Senapati am 10 Jan. 2019
Hi, I implemented the changes that you mentioned and I get the same error. The error says that the way I have implemeted x in the sum variable is wrong for parfor. Can you please suggest?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by