Editor's Note: This file was selected as MATLAB Central Pick of the Week
This utility is a class for timing PARFOR loops. It can be used to observe the various overheads that may exist in parallel for loops and the utilization of each worker. Various examples of using this utility can be found in Example_Script.m.
This class should be used in the following way:
p = Par(n); (1)
parfor id = 1:n
Par.tic; (2)
<usual computations>
p(id) = Par.toc; (3)
end
stop(p); (4)
plot(p); (5)
1. Construct a Par object, with the number of iterations as the input. This constructs the object.
2. Call Par.tic just inside the PARFOR loop. This records the start time of the iteration.
3. Call Par.toc just before the end of the PARFOR loop. Store the
output to the appropriate index of the Par object. This is necessary for PARFOR to recognize that the variable is sliced.
4. Stop the measurement. This records the final end time.
5. Visualize.
There may be some overhead in adding the Par construct. Because of this, the numbers you get may not accurately portray the true timing, especially for short computations.
Sarah Wait Zaranek (2021). parTicToc (https://www.mathworks.com/matlabcentral/fileexchange/27472-partictoc), MATLAB Central File Exchange. Retrieved .
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
I am running matlab R2016a and i am getting this error: "Unable to convert objects of class 'Par' into 'double'." in the parfor line. Any ideas?
Sorry, I wrote wrong:
*Change (Line 592 to 594):
newlabels = char(zeros(length(ylabels),6));
newlabels(:,1) = ylabels;
newlabels(1,:) = 'Serial';
Great program!
I think has a bug when is used with plot(obj,obj2) option and is utilized with 10 o more workers.
I fixed this problem with:
*Change (Line 592 and 593):
newlabels = char(zeros(length(ylabels),6));
newlabels(:,1) = ylabels;
*By:
serTex = 'Serial';
carSerTex = length(serTex);
carYLab = size(ylabels,2);
newlabels = char(zeros(length(ylabels),max(carSerTex,carYLab)));
newlabels(:,1:carYLab) = ylabels;
newlabels(1,1:carSerTex) = serTex;
This is the best PARFOR profiling tool I've found.