Parallel pool sizing for a parfor loop
이전 댓글 표시
I run a parfor loop on an 8 cores workstation.
This loop is parfor i = 1:10 and the work in each iteration is substantial.
MATLAB automatically creates 8 workers.
Assuming that each iteration takes about the same time to complete, is this highly inefficient? I'm thinking that the 8 cores finish at about the same time, and then only 2 are assigned to the remaining 2 iterations.
Then again, I don't really understand the idea of parallel pools. How would I optimise the size?
댓글 수: 1
Brendan Hamm
2016년 9월 15일
Theoretically with nothing running on the machine these should finish "about the same time" if every iteration runs exactly the same (i.e. no branching with if statements etc.). However, your computer has other stuff running on it as well which will take some cpu time here and there for other processes. MATLAB does not block the use of these to other processes. So, I would conclude with don't worry if the last iteration only has 2 workers being used, the others are still available.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!