-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Rub come caching on caller_location #129761
Conversation
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
Rub come caching on caller_location Inspired by the huge perf wins from making track_caller a no-op: rust-lang#129704, I started poking around and it looks like we have no deduplication of identical `panic::Location` allocations. Nora says I can use a query here, but I'm scared of query overhead so I'm going to perf something very crude first. r? `@ghost`
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (d81126f): comparison URL. Overall result: no relevant changes - no 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. @bors rollup=never Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary 5.3%)This 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. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: missing data |
Just noting that the benchmark results here are incomplete, because the master commit against which this try build was compared was not benchmarked properly. |
b691f26
to
d350a5e
Compare
🤔 Thanks, I thought something looked odd. How did you know that? Did you just notice rustc-perf having trouble? @bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
Rub come caching on caller_location Inspired by the huge perf wins from making track_caller a no-op: rust-lang#129704, I started poking around and it looks like we have no deduplication of identical `panic::Location` allocations. Nora says I can use a query here, but I'm scared of query overhead so I'm going to perf something very crude first. r? `@ghost`
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
I noticed the bootstrap data missing. Then I clicked on "show all results" and there were less than 100 results, rather than 500+ as is usual. |
Finished benchmarking commit (e4077d6): comparison URL. Overall result: ❌✅ regressions and improvements - no 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. @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)Results (primary -0.3%, secondary -0.7%)This 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.
CyclesResults (primary 0.4%, secondary 0.2%)This 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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 788.226s -> 789.955s (0.22%) |
d350a5e
to
ccd46d1
Compare
Inspired by the huge perf wins from making track_caller a no-op: #129704, I started poking around and it looks like we have no deduplication of identical
panic::Location
allocations.Nora says I can use a query here, but I'm scared of query overhead so I'm going to perf something very crude first.
r? @ghost