-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Simplify const
memchr
.
#101784
Simplify const
memchr
.
#101784
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 044e06b1137ca15470c4d49b2504de75800f256c with merge 9dc04300a5a305d2d428acbab5de557b568a1fe2... |
044e06b
to
db29de7
Compare
@rustbot label +const-hack |
I think pushing to the branch after queuing the perf job killed it... |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit db29de7 with merge 1910faf74b5eaa029de0304fb4e055b9aa3219a1... |
☀️ Try build successful - checks-actions |
Queued 1910faf74b5eaa029de0304fb4e055b9aa3219a1 with parent 294f0ee, future comparison URL. |
Finished benchmarking commit (1910faf74b5eaa029de0304fb4e055b9aa3219a1): 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 a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis 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.
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 |
Looks fine. @bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (b195f53): 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)ResultsThis 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. Footnotes |
Perf runs shows literally nothing if there no catastrophic regression\improvement, or fn not used a lot (not this case). Microbenches is probably good way to check this kind of changes. |
Extracted from #101607.
Removes the need for
const_eval_select
.