PARFOR progress monitor (progress bar) v3

Version 1.0.0.0 (24,4 KB) von Dylan Muir
Progress monitor bar for matlab parfor loops, supports distributed pools
2,1K Downloads
Aktualisiert 22 Dez 2017

This progress bar (progress monitor) is designed to monitor progress during the execution of long parfor loops. It works using a Java-based client/server architecture, which means that it supports distributed worker pools (i.e. doesn't only work on local pools).
Usage:
Begin by creating a parallel pool.
Then construct a ParforProgMon object:
ppm = ParforProgMon(strWindowTitle, nNumIterations <, nProgressStepSize, nWidth, nHeight>);

'strWindowTitle' is a string containing the title of the progress bar window. 'nNumIterations' is an integer with the total number of iterations in the loop.

Optional arguments:
'nProgressStepSize' specifies to update the progress bar every time this number of steps passes. 'nWidth' and 'nHeight' specify the size of the progress window.

Within the parfor loop:
parfor (nIndex = 1:nNumIterations)
ppm.increment();
end

Updates over v2:
The class now automatically handles distributing the required code to the workers.

Zitieren als

Dylan Muir (2024). PARFOR progress monitor (progress bar) v3 (https://github.com/DylanMuir/ParforProgMon), GitHub. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2014b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Parallel for-Loops (parfor) finden Sie in Help Center und MATLAB Answers
Quellenangaben

Inspiriert: PARFOR progress monitor (progress bar) v4

Community Treasure Hunt

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

Start Hunting!

Versionen, die den GitHub-Standardzweig verwenden, können nicht heruntergeladen werden

Version Veröffentlicht Versionshinweise
1.0.0.0

Trying to include references to v1 and v2
Updated description

Updated description
Updated description
Updated description
Included an image
Updated description
Updated description
Updated description

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.