DylanMuir / ParforProgMon

Progress monitor for matlab parfor (parallel) loops

Home Page:dylan-muir.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parfor progress monitor

A Java-based Matlab class for progress monitoring during a parfor loop

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

Credits

Parfor Progress monitor

Parfor Progress monitor v2

About

Progress monitor for matlab parfor (parallel) loops

dylan-muir.com

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:MATLAB 50.7%Language:Java 49.3%