Borrar filtros
Borrar filtros

Variable to track parfor loop progress

17 visualizaciones (últimos 30 días)
Andreu Angles Castillo
Andreu Angles Castillo el 18 de Dic. de 2018
Respondida: Edric Ellis el 19 de Dic. de 2018
I am using a paralled program and i would like to keep track of the progress of the loop, each iteration takes more or less the same time to execute. I came up with the following solution.
i=0;
parfor j=0:max
sprintf('%f',i);
some_calculation(j);
i=i+1;
end
I know I cannot use a variable in this way, but I believe the variable "i" could be used without any trouble in this way. Any work around?
Thanks, Andreu

Respuestas (2)

Edric Ellis
Edric Ellis el 19 de Dic. de 2018
@Matt J posted the simplest option which is to have the parfor loop display data. If you need more sophistication, you can use DataQueue to perform arbitrary computations at the client as the loop progresses, such as displaying a waitbar.

Matt J
Matt J el 18 de Dic. de 2018
What I do is display the loop counter, like in the following
parfor j=0:Jmax
some_calculation(j);
j,
end

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by