-
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
Use internal iteration in Iterator
comparison methods
#100845
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
r? @thomcc (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 db2b4a3 with merge db6da14ee4410b3d56c50bb6a28be04047a08c91... |
☀️ Try build successful - checks-actions |
Queued db6da14ee4410b3d56c50bb6a28be04047a08c91 with parent 3ce46b7, future comparison URL. |
Finished benchmarking commit (db6da14ee4410b3d56c50bb6a28be04047a08c91): comparison url. Instruction count
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. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Footnotes |
Hm, unsure about how much those regressions matter... I think in the past we've had perf issues with actually using internal iteration, even though it helps a lot for the iterator types it's important. I think I might punt the review to @scottmcm if they don't mind, since IIRC they have a lot more experience with iterators and iteration perf in particular. r? @scottmcm (Feel free to punt back if you don't have the time to review this -- I just know it's an area you've worked on a lot, and might be better suited than I) |
@@ -3613,29 +3595,26 @@ pub trait Iterator { | |||
/// assert!(xs.iter().eq_by(&ys, |&x, &y| x * x == y)); | |||
/// ``` | |||
#[unstable(feature = "iter_order_by", issue = "64295")] | |||
fn eq_by<I, F>(mut self, other: I, mut eq: F) -> bool | |||
fn eq_by<I, F>(self, other: I, eq: F) -> bool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not this PR, but it might be interesting to experiment with a size_hint
check for this one.
Something like
pub fn definitely_not_equal(a: &impl Iterator, b: &impl Iterator) -> bool {
match (a.size_hint(), b.size_hint()) {
((a_lo, _), (_, Some(b_hi))) => b_hi < a_lo,
((_, Some(a_hi)), (b_lo, _)) => a_hi < b_lo,
_ => false,
}
}
Since that could instantly catch a bunch of cases where things have good size_hints in practice, while also optimizing away completely for things that always return (0, None)
since that'd obviously always be false
overall.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For sure! I almost included that in this PR, in fact. It's a behavior change, but hopefully one we feel like we're permitted to make.
Thanks for this! It's a bit of a shame that it's asymmetric (which side has the @bors r+ rollup=never |
☀️ Test successful - checks-actions |
Finished benchmarking commit (0696895): comparison URL. Overall result: ✅ improvements - no action needed@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)This benchmark run did not return any relevant results for this metric. CyclesResultsThis 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.
Footnotes |
|
Updates the
Iterator
methodscmp_by
,partial_cmp_by
, andeq_by
to use internal iteration onself
. I've also extracted their shared logic into a private helper functioniter_compare
, which will either short-circuit once the comparison result is known or return the comparison of the lengths of the iterators.This change also indirectly benefits calls to
cmp
,partial_cmp
,eq
,lt
,le
,gt
, andge
.Unsurprising benchmark results: iterators that benefit from internal iteration (like
Chain
) see a speedup, while other iterators are unaffected.