Filter löschen
Filter löschen

matlab parfor to evaluate a function in bunch of 4 rather than all at the same time

3 Ansichten (letzte 30 Tage)
Hi all, I want to use matlab parallel functionality of parfor. However, my function doesn't allow the parallel evaluation of more than 4 at the same time due to the license issue. Is there a way that matlab uses parallel but in bunch of 4? for example,
parfor i = 1:100
t = function;
end
This probably, run 100 function evaluations at the same time. I want matlab to run my function parallel in bunch of 4.
is there any way to do so?

Antworten (1)

Edric Ellis
Edric Ellis am 11 Sep. 2014
The number of simultaneous function evaluations will be determined by the size of the parallel pool that you open. So, if you were to execute
parpool('local', 4)
before executing the PARFOR loop, then no more than 4 instances of 'function' would execute simultaneously. (If you're using an earlier release of MATLAB, you might need to say "matlabpool open local 4" instead of the 'parpool' command).

Kategorien

Mehr zu Parallel Computing Fundamentals finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by