-
Notifications
You must be signed in to change notification settings - Fork 20
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
Off-by-one in WallTimeEstimate #2992
Comments
IIRC, timings aren't reported (or even computed) for the very first step due to compilation (in order to disallow compilation time from contaminating timings). |
From a user-experience point of view, the message is a little confusing: it says that we completed the first step even when we completed the second. |
Agreed. Frankly, it's hard to design a progress-reporting function in the form of a callback, that doesn't have footguns and can potentially result in misreported numbers. I think a better solution would be to (re-)implement this in the timestepper, as we'll have proper access to what we need in scope. Also, then other repos can use it. I'll open an issue there. |
This is a tiny detail, but it looks like that the
WallTimeEstimate
is off by one step:The text was updated successfully, but these errors were encountered: