-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Misc query tweaks #139234
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
Misc query tweaks #139234
Conversation
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
Misc query tweaks Several small query tweaks. I'm not totally sure if I'm misunderstanding how `ensure_ok()` interacts w/ caching, so perfing it first :> r? `@ghost`
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
d641708
to
27842e7
Compare
27842e7
to
3524e6a
Compare
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
Misc query tweaks Several small query tweaks. I'm not totally sure if I'm misunderstanding how `ensure_ok()` interacts w/ caching, so perfing it first :> r? `@ghost`
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (a701cc8): comparison URL. Overall result: ✅ 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 the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary 0.5%, 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.
CyclesResults (primary -2.4%, secondary -1.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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 774.398s -> 776.139s (0.22%) |
Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt Some changes occurred to constck cc @fee1-dead Some changes occurred to the CTFE machinery |
r? @lqd or someone else, should be a pretty straightforward review |
oli was too fast but if inquiring minds need to know, it lgtm as well :) |
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing d5b4c2e (parent) -> 3658060 (this PR) Test differencesShow 86 test diffsAdditionally, 86 doctest diffs were found. These are ignored, as they are noisy. Job group index Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (3658060): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary -0.4%, secondary 0.8%)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 -2.1%, secondary 2.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.
Binary sizeResults (primary -0.0%)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.
Bootstrap: 777.539s -> 778.368s (0.11%) |
Remove some redundant work around
cache_on_disk
andensure_ok
, sinceResult<(), ErrorGuaranteed>
queries don't need to cache or recompute their "value" if they are only used for their result.