7 releases (breaking)
0.8.0 | Jun 24, 2024 |
---|---|
0.7.0 | Nov 21, 2023 |
0.6.0 | Nov 20, 2023 |
0.5.0 | Oct 2, 2023 |
0.1.0 | Jul 20, 2023 |
#253 in Compression
Used in 3 crates
(via bustools)
60KB
687 lines
NewPFD-rs
Rust library implementing the NewPFD integer compression/decompression algorithm.
Performance
It's currently lacking optimization for speed, but it's decently fast. We perform this on geometrically distributed integers (Geo(lambda=0.01)) to force encoding exceptions in the NewPFD-block.
- Encoding: 90ms/ 1M integers
- Decoding: 16ms/ 1M integers
See benchmarks for details.
Examples
For more examples, see the rust-docs.
// Encode some data using NewPFD
use newpfd::newpfd_bitvec::{encode, decode};
let data = vec![10_u64,12,10,1,1,2,3];
let blocksize = 32; // needs to be a mutliple of 32
// encode
let (compressed_data, _) = encode(data.iter().cloned(), blocksize);
// compressed_data is a `bitvec::BitVec` (similar to a Vec<bool>)
// decode
let (decompressed_data, bits_processed) = decode(&compressed_data, data.len(), blocksize);
assert_eq!(data, decompressed_data);
assert_eq!(compressed_data.len(), bits_processed); // the entire bitstream was consumed
Dependencies
~3.5MB
~69K SLoC