How to save computations of each "for" loop iteration in "SPMD"?

16 views (last 30 days)
Hello,
I have a "for" loop in SPMD to implement parallel computing through some workers. the computation of each worker in each iteration, must be saved to be used in the next iteration. I have used cell arrays to determine the variables and other approachs with no success. there is a function to be calculated in each iteration with respect to the above variable and when the variable is not updated in each iteration, the answer comes up with the same value for all the iterations.
the overall structure of my script:
spmd
for i=1:maxiter
x %variable calculated is each iteration
y=x(i-1)+... %the amount of x variable in the last iteration is needed
end
end
  1 Comment
Science Machine
Science Machine on 6 Oct 2022
I would have also liked to know! It seems that for loops within spmd loops are quite slow due to JIT (just in time)

Sign in to comment.

Answers (0)

Categories

Find more on Parallel Computing Fundamentals in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!