-
-
Notifications
You must be signed in to change notification settings - Fork 719
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
Fix intermittent test_profile_plot failure #6456
Conversation
rerun tests Note: rerunning gpuCI tests since those errors should be fixed by #6434 |
Wow, 100% pass now, haven't seen that in a while. Very nice! 😄 |
Merging in 24 hours if there are no comments |
while not len(p.source.data["left"]): | ||
await c.submit(slowinc, 1, pure=False, delay=0.1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while not len(p.source.data["left"]): | |
await c.submit(slowinc, 1, pure=False, delay=0.1) | |
await c.submit(slowinc, 1, pure=False, delay=0.1) | |
while not len(p.source.data["left"]): |
Is resubmitting necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, if the profiler didn't run during the task then we're screwed I think. We want to continuously run stuff until the profiler picks it up and that information arrives on the scheduler.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, thanks
while not len(p.source.data["left"]): | ||
await c.submit(slowinc, 1, pure=False, delay=0.1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, thanks
Thanks for the review @gjoseph92 |
Fixes #6454
cc @graingert for review if you have a moment.