Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How to fetch results of further code before spmd ends?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Thread to execute another algorithm within main function body was generated (to check, I put a print statement in algo loop). However, console prints the output in sequential manner. Is it possible in Matlab to fetch output of code part which got executed quickly on worker 2 before the longer print on worker 1.
To rephrase my question, if this is my code
1stfunction(input)
parpool(1)
spmd
out_array = 2nd_func(input)
end print statement
further code ...
end
Is it possible to fetch outputs of further code part on console before out_array gets printed completely, which takes longer duration than further code part.
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!