-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Add link to closed PR for future optimizers of ChunkedBitSet relations #94709
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
Conversation
While optimizing these operations proved unfruitful w.r.t. improving compiler performance right now, faster versions might be needed at a later time.
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @nnethercote (or someone else) soon. Please see the contribution instructions for more information. |
Lovely, thank you. @bors r+ rollup |
📌 Commit 4d38f15 has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (89adcc6): comparison url. Summary: This benchmark run did not return any relevant results. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
// improved, but it hasn't been a problem in practice so far. | ||
// FIXME: This is slow if `other` is dense, but it hasn't been a problem | ||
// in practice so far. | ||
// If a a faster implementation of this operation is required, consider |
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.
tiny typo here and below
// If a a faster implementation of this operation is required, consider | |
// If a faster implementation of this operation is required, consider |
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.
Ah, that's stupid, thanks for catching it! Fixes in #94956
While optimizing these operations proved unfruitful w.r.t. improving compiler performance right now, faster versions might be needed at a later time. This PR adds a link in the FIXME to save any future optimizers some time, as requested by @nnethercote in #94625.
r? @nnethercote