-
Notifications
You must be signed in to change notification settings - Fork 60
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
Further speedups (route_search_all
, transfer
and route_next_link_choice
)
#94
Comments
Thanks for testing again! In my benchmark, the latter 2 are came from the random module of numpy. I think this will be very tough. For the Lines 1290 to 1302 in 71f5699
My priority on these issues is not high. Please let me know if you find a solution! |
I want to keep UXsim's simplicity, generality, and tractability high. After all, if one really need speed, C is the best solution. The use of these frameworks may indeed cause "Premature Optimization". Of course, it will be okay if there are very simple solutions. |
This is absolutely not urgent, just an issue to keep track of some things :) I think the main next step is to get more people involved in UXsim. Building models, giving feedback, reporting bugs. Maybe we could write some universities. |
Then there are two functions that would benefit a lot from a speedup: The Node Edit: I already stated that in the post above. In that case, this just confirms that these remain a bottleneck in large scale simulations. |
Closing. See #143 (comment) for the reason. Feel free to re-open. |
Thanks for you continued work on this. I think this issue deserves to stay open, since these remain major bottlenecks in simulation speed. |
Okay, please feel free to share any specific ideas you come up with |
Amazing speedups already have been achieved in
route_search_all
(#53 / #79) andhomogeneous_DUO_update
(#84 / #89), which both are now included in UXsim 1.4.0. For large scale networks, this results in over an order of magnitude speedup, in my own testing about ~40x.This allows for completely new types of simulation and research experiments. Looking forward, further optimization could pave the way for states of small country simulations, simulations over multiple days or huge numbers of simulations for deep uncertainty analysis / hyperparameter optimization. These are the current performance bottlenecks:
Which means the following functions currently take up the most of the runtime:
route_search_all
transfer
route_next_link_choice
Similar to earlier efforts, using fitting data structures, vectorization and lazy computation could have the most potential for speedups.
One thing to consider is that we need to watch out for Premature Optimization. I feel we already got the low-hanging fruit with the previous two speedups, maybe it's useful to first develop and stabilize UXsim further before squeezing further performance out of it.
The text was updated successfully, but these errors were encountered: