How many workers for fmincon with UseParallel?
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm solving a biggish problem where the function takes a while to compute and want to throw as many workers as possible on the problem.
- Is the reason to set UseParallel to true when solving a problem with fmincon that it can potentially speed up the evaluation of the problem's gradient?
- Say my problem has 100 variables. Could I then theoretically improve performance with up to 100 workers? Or does fmincon never use that many parallel processes?
댓글 수: 1
Bruno Luong
2024년 3월 1일
"Is the reason to set UseParallel to true when solving a problem with fmincon that it can potentially speed up the evaluation of the problem's gradient?"
Only if you don't provide the gradient then fmincon estimates the gradient using finite differnce, each component of the gradient can be estimated in parallel and UseParallel is set to TRUE.
채택된 답변
Matt J
2024년 3월 1일
편집: Matt J
2024년 3월 1일
Is the reason to set UseParallel to true when solving a problem with fmincon that it can potentially speed up the evaluation of the problem's gradient?
Yes.
Say my problem has 100 variables. Could I then theoretically improve performance with up to 100 workers? Or does fmincon never use that many parallel processes?
Theoretically. The number of workers can be set by you using parpool, if you have the Parallel Computing Toolbox, or fmincon will call parpool with default settings. How many workers you can create in a pool depends on your Matlab version and the resources available to your computer.
댓글 수: 3
Matt J
2024년 3월 1일
If it's a cluster, you'll also have to consider the time for transmitting data to the cluster nodes. If the work done by each node is much less than the communication time, you may not benefit much.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!