function status in parfeval / fetchOutputs

2 次查看(过去 30 天)
Hello everybody,
I am planning a script which runs 2 functions simultaneously in a loop, using parfeval and fetchOutputs. These 2 functions will have different evaluation times like 2E-3s and 0.04s. If I am using fetchOutputs ,my loop will wait for the slower function to finish what is not desired. Therefore, I would like to ask if there is any way to check the status of my slower function i.e. using fetchOutputs only if the function is finished and keep the faster function running in the loop.
Cheers
Alexander Braun

采纳的回答

Edric Ellis
Edric Ellis 2015-1-27
You can check the State property of the Future object returned by parfeval to see if it has finished. You might also be able to use the fetchNext method with a timeout of 0 to collect the result if it's ready. Something like this (untested...)
while keepGoing
fslow = parfeval(@slowFcn, ...);
while isempty(fetchNext(fslow, 0))
% fetchNext returns empty if it hits the timeout.
fquick = parfeval(@quickFcn, ...);
quickResult = fetchOutputs(fquick);
end
slowResult = fetchOutputs(fslow);
end

更多回答(1 个)

Alexander Braun
Alexander Braun 2015-1-27
Looks promising. Thanks a lot.

类别

Help CenterFile Exchange 中查找有关 Background Processing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by