-
Notifications
You must be signed in to change notification settings - Fork 31
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
SimpleControlSolver.solve() is extremely slow for full gain matrix and large # gait cycles #87
Comments
Here is an IPython session where I load in the huge dense A and b matrices from file and just try the sparse and non-sparse least squares solvers on them. Neither are super slow (the slow down I'm tracking down is on the order of 30 min to 1 hr for
|
|
This shows the profiling for the
|
|
|
The above shows the profile for each function call inside |
Ok I reran
|
Temporary solution is in place with PR #88. Also see moorepants/DynamicistToolKit#19 as the problem lies in DynamicistToolkit. |
I'm having trouble figuring out what the slow down is. One bottleneck is surely the parameter covariance computations in
dtk.process.least_squares_variance()
, but even when that computation is skipped it still seems to be slow.The text was updated successfully, but these errors were encountered: