Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Benchmark comparison to eiquadprog++ #2

Open
stephane-caron opened this issue Nov 21, 2020 · 1 comment
Open

Benchmark comparison to eiquadprog++ #2

stephane-caron opened this issue Nov 21, 2020 · 1 comment

Comments

@stephane-caron
Copy link

The eiquadprog++ solver from Luca Di Gaspero et al. is another Eigen-based implementation of Goldfarb-Idnani. Have you tried it out?

I'd be curious to know how it compares to your implementation in GoldfarbIdnaniSolver.cpp 🙂

@aescande
Copy link
Collaborator

aescande commented Nov 21, 2020

Yes, I did some benchmarks that I should put properly in form.

The computations done by the two implementations are usually very close and, as a result, the timing are almost identical in a number of situations.
Where GoldfarbIdnaniSolver is faster (for now) is when handling double sided inequalities (slight edge) and bounds (larger difference). I'll soon be adding warm start as well, which could give quite substantial gains.
For now, GoldfarbIdnaniSolver is missing a robust handling of quasi linear dependencies in the active-set, what eiquadprog++ has. This is the very first item on my todo list.

Edit: you can actually run and play with the benchmarks comparing some solvers (LSSOL, QLD, Quadprog, eiquadprog++ and GoldfarbIdnani) with `benchmarks/Solvers.cpp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants