Azzera filtri
Azzera filtri

parallel computing parfor implementation

2 visualizzazioni (ultimi 30 giorni)
Akand Islam
Akand Islam il 1 Mag 2015
Risposto: Dasharath Gulvady il 11 Mag 2015
Hello,
Please see in attachment the sample for loop where a is 10*10 matrix with initial values.
How variable a can be controlled to implement parfor?
Thanks, Akand

Risposte (1)

Dasharath Gulvady
Dasharath Gulvady il 11 Mag 2015
I see in your code that each iteration is dependent on the values in the previous iteration.
var = a(i-1, j) + a(i+1,j);
This is not supported by parfor. You cannot use a parfor-loop when an iteration in your loop depends on the results of other iterations. Each iteration must be independent of all others.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by