How to distinctly assign job and get the result of each worker using "parfor"?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Bill Masters
il 6 Mag 2020
Commentato: Bill Masters
il 7 Mag 2020
Hello,
I'm using parallel computing toolbox in order to parallelize my computation. there is a need for assigning an identical job with different data to each worker and after the computation of workers is done, I need to distinctly get each woker's result in the client process and use each of them for another purpose. how can I do this?!
thanks
Risposta accettata
Edric Ellis
il 7 Mag 2020
This sounds more like a job for spmd . Read more about that here: https://www.mathworks.com/help/parallel-computing/spmd.html . Here's an extremely simple example:
spmd
myOutput = 2 * labindex; % labindex has a different value on each worker
end
myOutput{3} % gets the value from the 3rd worker
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Distributed Arrays 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!