Can worker be removed from Matlab Distributed Computing Server without error?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Walter Roberson
il 14 Giu 2018
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.
Risposte (0)
Vedere anche
Categorie
Scopri di più su Parallel Computing Fundamentals in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!