Parallel Computing Toolbox - Java object transfer from client to workers

조회 수: 11 (최근 30일)
My problem regards the usage of the Parallel Computing Toolbox functions, and in particular the variable transfer from client to workers when the "variable" is a Java object. I have experieced that, without multithreading, passing a Java object from a main script to a function is not a problem, while using (for instance) parfeval to implement multithreading, the object is not passed correctly resulting in the error "Attempt to reference field of non-structure array", because the object structure is lost. Something similar happens to me also trying to implement multithreading exploiting a parfor cycle, therefore I suspect it may be a generalized issue with the usage of Matlab multithreading tools. May I kindly have any clarification with this regards?

채택된 답변

Edric Ellis
Edric Ellis 2015년 7월 21일
When you pass any MATLAB variables (including those that refer to Java objects) into parfor, parfeval, etc., then the contents of those variables need to be transmitted to a separate MATLAB process. The effect is the same as if you saved the variables to a .mat file and then loaded them. Not all MATLAB variables can be saved and loaded successfully - and those same variables will not function correctly with parfor, parfeval etc.
I recommend that you should construct such objects on the workers (i.e. inside parfor, parfeval, ...).
You might wish to use the Worker Object Wrapper to avoid constructing the same object multiple times on the workers.
  댓글 수: 4
Stefano C
Stefano C 2015년 7월 26일
편집: Stefano C 2015년 7월 27일
Thanks a lot Edric, sending the whole wrapper I now get a different error:
Error using WorkerObjWrapper
Too many input arguments.
Error in main (line 62)
wrapperData = WorkerObjWrapper(@generateDataset, WPATH, fName, numFolds);
It seems there is a sort of issue calling the wrapped function with multiple arguments, do you know why?
EDIT:
I have been able to solve this last question looking at the code of WorkerObjWrapper:
% W = WORKEROBJWRAPPER( FCN, ARGSCELL ) creates a WorkerObjWrapper by
% invoking FCN inside an SPMD block, supplying ARGSCELL as
% arguments. I.e., W.Value has the value obtained from running
% FCN(ARGSCELL{:}) on the workers.
Hence, for the posterity, in case the wrapped function has multiple inputs, WorkerObjWrapper has to be called in this way:
FcnArgs = {arg1, arg2, arg3, ...};
wrapperData = WorkerObjWrapper(@Fcn, FcnArgs);
Stefano C
Stefano C 2015년 7월 27일
편집: Stefano C 2015년 7월 27일
Excuse me Edric, despite having (I think) correctly instantiated the objects wrappers on the client and picked out the .Value on the workers, still WorkerObjWrapper does not seem to work, I now get the error:
Error in main (line 90)
[completedFold,value] = fetchNext(CV);
Caused by:
Error using WorkerObjWrapper/get.Value (line 109)
Assertion failed.
kindly, would you know what it may depend upon?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by