-
Notifications
You must be signed in to change notification settings - Fork 977
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
Optimize model execution to stop immediately when required #2699
base: main
Are you sure you want to change the base?
Conversation
Performance benchmarks:
|
I noticed that the checks didn’t pass in my PR due to an Would it make sense to update the test setup to include |
Thanks for the PR! Could you explain clearer what the old behavior is, why it was wrong, what the new behavior is, and why that's right? |
Right now, in the Schelling model, if I set the
This works fine for the example models but the PR checks fail for test models running in For An alternative would be to copy how ModelController handles this into SimulatorController by directly checking |
I am trying to understand this PR and what motivates it. In my understanding, the overarching issue is that Next, when trying to fix this, it has knock-on consequences for event scheduling as well. Again, is this understanding correct? |
My bad for not being clear. This PR ensures the model stops exactly when it's supposed to, instead of running extra steps. This is essentially implementing #2332 in #2596.
Right. We do have a variable Now, For def do_step():
for _ in range(render_interval.value):
if not running.value:
break
simulator.run_for(1)
running.value = model.value.running
force_update() This would ensure that the model stops at the correct step, and it would also pass the build checks. But since def do_step():
simulator.run_for(render_interval.value)
running.value = model.value.running
force_update() while handling Wanted to get your input on which of these approaches seems more suitable. |
|
@HMNS19 are you still (planning to) working on this? |
Awesome! Let us know if you need anything. |
This PR updates the
do_step
function to exit early whenrunning.value
isFalse
. Previously, it would continue executingn
steps even afterrunning
was set to stop. Now, it stops immediately whenrunning.value
becomesFalse
.This applies to models running in both
ModelController
andSimulatorController
.