Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
H-H
H-H le 11 Sep 2014
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?

Réponses (1)

Edric Ellis
Edric Ellis le 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).

Catégories

En savoir plus sur Parallel Computing Fundamentals dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by