-
Notifications
You must be signed in to change notification settings - Fork 51
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
Take Advantage of warm start after compute_backward #333
Comments
Hi @yyylllaaafff , thanks for your interest in
did you try this? Does the call to |
Here is an example,
And what we got is,
As you can see, the solve_time increased a lot if we compute_backward before warm_start solve. |
Thanks for providing this example, and yes I see your point. I think that currently there is no easy way around. The reason is that we reuse the We should think about a proper way to fix this @Bambade and @jcarpent. |
Hi,
Thanks for this powerful suite.
I got a QP initiated do solve and compute_backward like below,
qp = proxsuite.proxqp.dense.QP(nz, neq, nineq)
qp.init(...) # init qp here ...
qp.solve()
proxsuite.proxqp.dense.compute_backward(qp,...)
qp.update(...) #t hen update and solve again
qp.solve() # how can we take advantage of warm start here?
The text was updated successfully, but these errors were encountered: