-
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 u32 methods instead of manual shifting #105893
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
@bors r+ rollup=iffy |
📌 Commit 6913efa626c3d8420a402588a80cf1f074a3cdfb has been approved by It is now in the queue for this repository. |
⌛ Testing commit 6913efa626c3d8420a402588a80cf1f074a3cdfb with merge cbefec03be94fa09e4009d3b78cbb950c98daaf1... |
💥 Test timed out |
This comment has been minimized.
This comment has been minimized.
@bors retry |
⌛ Testing commit 6913efa626c3d8420a402588a80cf1f074a3cdfb with merge f749ff04a32e3fa1eec6296354546e391fab13ba... |
💥 Test timed out |
6913efa
to
102a07e
Compare
Switch to `to_be_bytes()` and `from_be_bytes()` instead of manual shifting This was suggested [`here`](rust-lang#105145 (comment)) Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
102a07e
to
51fe248
Compare
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (4f4d058): comparison URL. Overall result: ❌ regressions - 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.
|
…, r=Mark-Simulacrum Use u32 methods instead of manual shifting Switch to `to_le_bytes()` and `from_le_bytes()` instead of manual shifting This was suggested [`here`](rust-lang#105145 (comment)) Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
Switch to
to_le_bytes()
andfrom_le_bytes()
instead of manual shiftingThis was suggested
here
Signed-off-by: Ayush Singh ayushsingh1325@gmail.com