GetGlobal() and parfor loop

Hello everyone,
I am using the setGlobal() and getGlobal() functions in a code that worked pretty well initially but doesn't work now that I'm trying to parrallelize it.
I noticed that the functions setGlobal() and getGlobal() struggle to work with the parfor loop. or example, when I run
setGlobalF([2 3 4])
% j = getGlobalF();
parfor i = 1:4
j = getGlobalF()
end
the j value is not assigned to [2 3 4].
Have you guys any ideas of why and how should I proceed ? Thanks !

1 Comment

I forget to put the function, here it is
function r = getGlobalF
global F
r = F;
end
function setGlobalF(val)
global F
F = val;
end

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 13 Jul 2022
Global and persistent variables are never copied to workers.
You need to do one of two things:
Note that any setGlobalF that you do on a worker will not affect the other workers. If you need to be able to affect the other workers, then you should either use spmd with labSend and labReceive or else use parallel.pool.DataQueue or parallel.pool.PollableDataQueue to send data from the workers to the client and then the client would send the updated values to the other workers.

1 Comment

Thank you very much for your answer you made everything way much clearer :)

Sign in to comment.

Categories

Community Treasure Hunt

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

Start Hunting!