#bit #reverse #swap

no-std bit_reverse

Computes the bit reversal of primitive integers

9 releases

Uses old Rust 2015

0.1.8 Jun 13, 2019
0.1.7 Jun 26, 2017
0.1.5 Sep 23, 2016

#78 in No standard library

Download history 143/week @ 2023-11-20 229/week @ 2023-11-27 294/week @ 2023-12-04 387/week @ 2023-12-11 156/week @ 2023-12-18 47/week @ 2023-12-25 208/week @ 2024-01-01 162/week @ 2024-01-08 588/week @ 2024-01-15 800/week @ 2024-01-22 765/week @ 2024-01-29 1050/week @ 2024-02-05 849/week @ 2024-02-12 998/week @ 2024-02-19 941/week @ 2024-02-26 999/week @ 2024-03-04

3,813 downloads per month
Used in 14 crates (7 directly)

MIT/Apache

16KB
217 lines

bit_reverse

Crates Shield Build Shield Build status

Library Objective

This library provides a number of ways to compute the bit reversal of all primitive integers. There are currently 3 different algorithms implemented: Bitwise, Parallel, and Lookup reversal.

Example

use bit_reverse::ParallelReverse;

assert_eq!(0xA0u8.swap_bits(), 0x05u8);

This library is very simple to uses just import the crate and the algorithm you want to use. Then you can call swap_bits() on any primitive integer. If you want to try a different algorithm just change the use statement and now your program will use the algorithm instead.

YMMV Performance Comparison

BitwiseReverse may be useful in space-constrained microcontrollers when capturing data, but is typically inferior to ParallelReverse, which is a Bitwise Parallel Reverse and thus an order of magnitude faster. For small sizes, <= 16 bits, LookupReverse is the fastest but it doesn't scale as well as ParallelReverse this is because ParallelReverse does a constant number of operations for every size (assuming your cpu has a hardware byte swap instruction). LookupReverse needs more lookups, ANDs, and ORs for each size increase. Thus ParallelReverse performs a little better at 32 bits and much better at 64 bits. These runtime characteristics are based on a Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz.

Memory Consumption

BitwiseReverse and ParallelReverse both only use a couple of stack variables for their computations. BitwiseReverse takes less space than ParallelReverse (18 bytes on MSP430). LookupReverse on the other hand statically allocates 256 u8s or 256 bytes to do its computations. LookupReverse's memory cost is shared by all of the types LookupReverse supports.

no_std Compatible

To link to core instead of STD, disable default features for this library in your Cargo.toml. Cargo choosing features

No runtime deps

Features