Clear Filters
Clear Filters

function status in parfeval / fetchOutputs

2 views (last 30 days)
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

Accepted Answer

Edric Ellis
Edric Ellis on 27 Jan 2015
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

More Answers (1)

Alexander Braun
Alexander Braun on 27 Jan 2015
Looks promising. Thanks a lot.

Categories

Find more on Background Processing in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!