フィルターのクリア

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

2 ビュー (過去 30 日間)
Mitsu
Mitsu 2021 年 10 月 26 日
コメント済み: Mitsu 2021 年 10 月 26 日
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?

採用された回答

Walter Roberson
Walter Roberson 2021 年 10 月 26 日
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 件のコメント
Mitsu
Mitsu 2021 年 10 月 26 日
Yes, they are initialized in the principal function before they are used anywhere else. Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by