Monitoring the progress of a long-running parfor loop is not straightforward because the workers cannot communicate. This function gets around that limitation by storing the progress in a text file.
Example usage:
N = 100;
parfor_progress(N); % Initialize
parfor i=1:N
pause(rand); % Replace with real code
parfor_progress; % Count
end
parfor_progress(0); % Clean up
引用
Jeremy (2025). Progress monitor (progress bar) that works with parfor (https://www.mathworks.com/matlabcentral/fileexchange/32101-progress-monitor-progress-bar-that-works-with-parfor), MATLAB Central File Exchange. に取得済み.
MATLAB リリースの互換性
プラットフォームの互換性
Windows macOS Linuxカテゴリ
- Parallel Computing > Parallel Computing Toolbox > Parallel for-Loops (parfor) >
- Parallel Computing > Parallel Computing Toolbox > Performance Profiling >
タグ
謝辞
ヒントを与えたファイル: ParforProgress class, parwaitbar, parfor_progressbar_v1, TimedProgressBar, parfor_progressbar, Progress bar for matlab loops (incl. parfor), Sparse Grid Interpolation
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!