-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Debug-print result when an unstable fingerprint is detected #83314
Conversation
r? @lcnr (rust-highfive has picked a reviewer for you, use r? to override) |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 443cef5 with merge 42a82e0e789fcafa494356e56cfe095c3309f6f6... |
☀️ Try build successful - checks-actions |
Queued 42a82e0e789fcafa494356e56cfe095c3309f6f6 with parent f5f33ec, future comparison URL. |
Finished benchmarking try commit (42a82e0e789fcafa494356e56cfe095c3309f6f6): comparison url. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. Please note that if the perf results are neutral, you should likely undo the rollup=never given below by specifying Importantly, though, if the results of this run are non-neutral do not roll this PR up -- it will mask other regressions or improvements in the roll up. @bors rollup=never |
this actually looks like a small perf improvement? well, i guess as it isn't a regression: |
📌 Commit 443cef5 has been approved by |
☀️ Test successful - checks-actions |
But how it can be improvement, if there only thing changed is added new string for |
Yeah, the performance improvement is quite odd. Maybe the additional code we generate causes LLVM to decide to not inline something, which ends up improving performance? |
Helps with issues like #83311
I had previously tried to do this in #80692, but it had a significant performance impact (even though the code was never actually run). Hopefully, this will be better now that #79100 has been merged.