parTicToc

This is a utility for timing PARFOR loops.
2K téléchargements
Mise à jour 1 sept. 2016

Afficher la licence

Note de l’éditeur : 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.

Citation pour cette source

Sarah Wait Zaranek (2024). parTicToc (https://www.mathworks.com/matlabcentral/fileexchange/27472-partictoc), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2010a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Parallel for-Loops (parfor) dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!

html/

Version Publié le Notes de version
1.0.0.1

Updated license

1.0.0.0