How many workers for fmincon with UseParallel?
Mostrar comentarios más antiguos
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 comentario
Bruno Luong
el 1 de Mzo. de 2024
"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.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Surrogate Optimization en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!