-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Don't catch overflow when running with cargo doc #101039
Conversation
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 5ab5ff28fddabfcfe6e9947d28bf305e35c3d961 with merge 0e7d1ccaf471feecaba9dbb903042f38824a6248... |
@bors try |
⌛ Trying commit 1f2f9f5c68d67be97bcad1084fdaf5fb0614e557 with merge c94e30c402e2d4bd6fd3fdeb4d26944e870c958e... |
☀️ Try build successful - checks-actions |
Queued c94e30c402e2d4bd6fd3fdeb4d26944e870c958e with parent 8a13871, future comparison URL. |
Finished benchmarking commit (c94e30c402e2d4bd6fd3fdeb4d26944e870c958e): comparison URL. Overall result: ❌✅ regressions and improvements - ACTION NEEDEDBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Footnotes |
The primary results look like the opposite of the perf results in #100705, and the rest is probably noise given the nature of the changes in this PR. This is fine to me. NOTE: For whoever is going to do perf triage on this PR, please also consider the results in tandem with those in #100705. @ouz-a, can you squash this into one commit, then r=me. @bors delegate+ |
✌️ @ouz-a can now approve this pull request |
@bors r+ rollup=never p=1 |
☀️ Test successful - checks-actions |
Finished benchmarking commit (c07a8b4): comparison URL. Overall result: ❌ regressions - ACTION NEEDEDNext Steps: If you can justify the regressions found in this perf run, please indicate this with @rustbot label: +perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Footnotes |
I think this may just be noise, as far as I can tell @ouz-a didn't change the code since the last time we ran perf ^ |
The primary regressions do seem like noise (as they are reversed in the next perf run), but the secondary regressions seem like sustained regressions. GitHub does show a commit after the perf results so perhaps code was pushed by @ouz-a? However, the change is a single boolean check which makes this unlikely to be a real issue. |
I'm going to mark this as triaged since the biggest regressions are noise. Given this is a small change and a needed fix, I don't think we need to address this. @rustbot label: +perf-regression-triaged |
Fixes #100991
r? @compiler-errors