-
Notifications
You must be signed in to change notification settings - Fork 0
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
Speedup needed in higher_order_symbolics!
#18
Comments
Readibility could also be improved by wrapping the loops into separate functions |
TODO: add docstring, and don't forget to mention that the last |
If we allow And calling With all these we get even better performance: @time higher_order_symbolics!(sts,10)
4.801914 seconds (26.55 k allocations: 1.884 MiB, 1.25% compilation time) |
Option needed in case one needs remapping ( |
When dealing with higher order states, a significant amount of time is spent on transforming to states of higher order.
We can speed it up by remapping the original symbols before doing anything else (even though this means we are going to loop through
symbolic_timeseries
twice) :See fix here ba0db6c
The text was updated successfully, but these errors were encountered: