필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
H-H
H-H 2014년 9월 11일
답변: Edric Ellis 2014년 9월 11일
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?

답변 (1개)

Edric Ellis
Edric Ellis 2014년 9월 11일
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).

카테고리

Help CenterFile Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by