You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that the StridedOneVector PR #174 has been merged, we can focus on the time to first solve.
Using the following script:
using MadNLP
using MadNLPTests
nlp = MadNLPTests.HS15Model()
ips = MadNLP.InteriorPointSolver(nlp)
@time MadNLP.optimize!(ips)
MadNLP takes for the first solve:
Total wall-clock secs in solver (w/o fun. eval./lin. alg.) = 8.082
Total wall-clock secs in linear solver = 0.590
Total wall-clock secs in NLP function evaluations = 0.037
Total wall-clock secs = 8.709
EXIT: Optimal Solution Found.
8.147811 seconds (24.28 M allocations: 1.187 GiB, 6.16% gc time, 99.93% compilation time)
It would be ideal if we can decrease that time to improve the user experience.
The text was updated successfully, but these errors were encountered:
Now that the
StridedOneVector
PR #174 has been merged, we can focus on the time to first solve.Using the following script:
MadNLP takes for the first solve:
It would be ideal if we can decrease that time to improve the user experience.
The text was updated successfully, but these errors were encountered: