Programatically determine Matlabpool Maximum Number of Local Workers
21 ビュー (過去 30 日間)
古いコメントを表示
I'm developing some code which will be shared with colleagues running different versions of matlab. Is there a way to programatically tell the maximum number of workers in the local pool?
0 件のコメント
採用された回答
Shashank Prasanna
2013 年 5 月 6 日
>> myCluster = parcluster('local');
>> myCluster.NumWorkers
For ver > R2012a, for earlier you may have to use findresource. This change is captured in the release notes for R2012a:
If your colleagues use earlier releases, you may have to do a version check and then an if else block.
>> version -release
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Parallel Computing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!