필터 지우기
필터 지우기

parallelization extremely slow on i7

조회 수: 2 (최근 30일)
Christoph
Christoph 2013년 3월 2일
Good Morning/Afernoon/Evening depending where you are ;)
I am just checking out the parallelization features of ML (R2012b) and I don't really see any advantages so far, though I am only executing sample code to be honest.
I have 4 cores on an Intel Core i7 and I use 4 workers to run the simple magic-square sample code. A run takes approximately 40 seconds while simply looping it without parallel code takes about 0.24s .
Can someone briefly comment on the matlabpool features and traps, most likely I am just in a regime of work where parallelization is useless.
code 1
matlabpool(4)
spmd
q = magic(labindex + 2);
end
for ii=1:length(q)
figure, imagesc(q{ii});
end
matlabpool close
code 2
for i=1:1:4
q=magic(i+2);
figure, imagesc(q);
end

답변 (1개)

Matt J
Matt J 2013년 3월 2일
편집: Matt J 2013년 3월 2일
Where is this "sample" to be found? The computation looks way too small for parallelization to be fruitful. Try something like,
q = magic(labindex+2000);

카테고리

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