parallel computing speed question when the body of the parfor loop takes about 2 seconds
이전 댓글 표시
I have a question about parallel:
parfor ii=1:N dosomething%% end
in the parfor loop, the time of dosomething is 2 seconds in each loop, and N is about 100. In that condition, is it efficient to use parfor here???
I feel confused about that as I test the time and find the more core I use, the more time I spend!!!!!! Could someone help to answer this question?!!!!
채택된 답변
추가 답변 (1개)
Guanfeng Gao
2015년 5월 13일
0 개 추천
댓글 수: 1
Walter Roberson
2015년 5월 13일
Are the matrices large? If so then you might be encountering a lot of overhead in transmitting the values back. Try experimenting with drange() instead of parfor()
카테고리
도움말 센터 및 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!