Info

This question is closed. Reopen it to edit or answer.

How to fetch results of further code before spmd ends?

1 view (last 30 days)
Oindri
Oindri on 10 Jul 2018
Closed: Oindri on 13 Jul 2018
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.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!