-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Move finish
out of the Encoder
trait.
#98160
Conversation
This simplifies things, but requires making `CacheEncoder` non-generic. (This was previously merged as commit 4 in rust-lang#94732 and then was reverted in rust-lang#97905 because it caused a perf regression.)
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit bb02cc4 with merge 0cd7b450822dac8f46a45cfb4444f067b437e6e3... |
☀️ Try build successful - checks-actions |
Queued 0cd7b450822dac8f46a45cfb4444f067b437e6e3 with parent 1b9daa6, future comparison URL. |
Finished benchmarking commit (0cd7b450822dac8f46a45cfb4444f067b437e6e3): comparison url. Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking 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. @bors rollup=never Footnotes |
Well that's weird. Last time this commit was a clear regression, but now it's perf-neutral? r? @bjorn3 |
Weird. Let's try landing it one more time and if it turns out to be a regression revert it. @bors r+ rollup=never |
📌 Commit bb02cc4 has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (0423e06): comparison url. Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results
CyclesThis benchmark run did not return any relevant results for this metric. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression Footnotes |
This simplifies things, but requires making
CacheEncoder
non-generic.(This was previously merged as commit 4 in #94732 and then was reverted
in #97905 because it caused a perf regression.)
r? @ghost