How to call protected functions in parfor?

조회 수: 6 (최근 30일)
Tmfu Vh
Tmfu Vh 2019년 7월 26일
댓글: Tmfu Vh 2019년 7월 30일
This function is inside the common methods block of a class.
function GetWavelets(Me)
%Unrelated codes omitted…
parfor c=1:ttpc
%Me is the object itself, OnProgressReport is protectedly defined.
Me.OnProgressReport(c,ttpc);
%…
end
%…
end
The protected function OnProgressReport is unaccessible in the parfor loop. I found two workarounds:
  • Use for loop instead of parfor;
  • Set the Access attribute of OnProgressReport to public.
If I want to preserve the parfor loop for performance reasons, is it unavoidable to expose the OnProgressReport to public? Any other solutions?
Update 20190728: The OnProgressReport function is inherited from the superclass.

답변 (1개)

Edric Ellis
Edric Ellis 2019년 7월 26일
편집: Edric Ellis 2019년 7월 29일
EDIT: Changed my version to inherit protected method from parent class
Hm, I can't reproduce the problem - I tried in R2016b and R2019a. Here are my test classes:
%% Super.m:
classdef Super
properties (Access = private)
Value = 7
end
methods (Access = protected)
function out = protectedMethod(obj, x)
out = obj.Value + x;
end
end
end
%% Test.m:
classdef Test < Super
methods
function out = runInParfor(obj)
parfor ii = 1:4
out(ii) = obj.protectedMethod(ii);
end
end
end
end
which I exercise like this:
>> runInParfor(Test)
ans =
8 9 10 11
So, it appears to work for me. Could you elaborate on what you're doing differently?
  댓글 수: 3
Edric Ellis
Edric Ellis 2019년 7월 29일
Ok, I updated my attempt to reproduce the problem, still works fine for me...
Tmfu Vh
Tmfu Vh 2019년 7월 30일
Well I got it. The exception details showed in the commandline window is misleading - it said that the OnProgressReport function is undefined, but the real bug I found later has nothing to do with that function. So tricky! Whatever thank you for your patience.

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

카테고리

Help CenterFile Exchange에서 Create System Objects에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by