Cluster profile for deployed apps
古いコメントを表示
I have an app (standalone app compiled using MATLAB Compiler) running on machines where MATLAB is not installed. The app uses Parallel Computing Toolbox. Hence, how do I create a "Cluster Profile" programmatically? Are there other ways to do this? Thanks.
回答 (2 件)
Hitesh Kumar Dasika
2019 年 2 月 21 日
0 投票
Hi Adam
You can make use of the cluster object properties and set them similar to how they will be set using Cluster Profile Manager. Please find the attached documentation links that talk about the same.
You can also access specific cluster profiles with the help of following functions.
Adam Gogacz
2019 年 2 月 21 日
編集済み: Adam Gogacz
2019 年 2 月 21 日
0 投票
3 件のコメント
Hitesh Kumar Dasika
2019 年 2 月 21 日
Hi Adam
You can do the modifications to cluster object by using the cluster properties as well. You can set the properties as part of the code by using the cluster object itself. Below is a small example of what I meant.
>> c = parcluster('local')
>>c.NumThreads = 10
>>c.NumWorkers = 10
Adam Gogacz
2019 年 2 月 21 日
Lucas Ivan
2025 年 7 月 8 日
Hello,
Jumping up as I have the same problem. I am trying to run a compiled code into an HPC infrastrucutre that doesn't have MATLAB installed in it. The problem is that, apparently, parpool() requires some files that are not available when using MCR in the HPC, but where available with a full MATLAB software used for the compilation.
Is there any workaround on this?
カテゴリ
ヘルプ センター および File Exchange で Job and Task Creation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!