Is this combination of parfor and global variables prone to errors?

2 visualizaciones (últimos 30 días)
In the main script mainScript.m, a parfor loop goes through N cases.
In each case of the parfor loop, the function principalFunction() is called.
%mainScript.m
parfor i = 1:N
someInputData = inputData(i,:);
results(i,1) = principalFunction(someInputData);
end
No global variables are declared or used anywhere in this file.
However, principalFunction() is a function that will declare global variables, and share them across function1, ..., functionN that will be called within principalFunction(). These functions will use the global variables along with any local variables passed.
%principalFunction.m
function result = principalFunction(someInputData)
global globalVariable1 globalVariable 2
% Call some functions where local variables are passed, and which will use
% global variables as well
localVariable1 = function1(someInputData);
localVariable2 = function2(someInputData,localVariable1);
localVariable3 = function3(someInputData);
result = functionN(localVariable1,localVariable2,localVariable3);
end
Most functions are part of a third-party library, and rewritting them to avoid using global variables is not an option.
I have tried a number of cases in parallel and in series for N < 30, and it seems to yield the same results.
However, I would still like to know for sure that there is nothing I am overlooking in this approach. Is there?

Respuesta aceptada

Walter Roberson
Walter Roberson el 26 de Oct. de 2021
That should work, as long as the principal function sets the global variables on every call, or at least tests whether they already exist non-empty and if not then assigns to them.
  1 comentario
Mitsu
Mitsu el 26 de Oct. de 2021
Yes, they are initialized in the principal function before they are used anywhere else. Thank you.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Parallel for-Loops (parfor) en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by