Can worker be removed from Matlab Distributed Computing Server without error?
1 次查看(过去 30 天)
显示 更早的评论
I'm using MATLAB 8.6 (2015b), Parallel Computin Toolbox 6.7 (2015b) and MATLAB Distributes Computing Server 6.7 (2015b).
My cluster is made out of several laptops that double as regular work stations of my research group.
My code has a parfor-loop that should preferably work similarly wether the client runs it locally or in the cluster.
The problem is that every once in a while, one of the worker laptops crashes or somebody has to disconnect his/her laptop and this causes the parfor-loop in the client machine to throw an error.
Is there some way to detect if a worker has left the pool and recalculate the corresponding loops in the rest of the pool?
1 个评论
Walter Roberson
2018-6-14
parfor is the wrong instrument for this. See parfeval or perhaps batch, as those permit the client to check the status of workers and potentially start new tasks to account for failures.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parallel Computing Fundamentals 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!