15 unstable releases (3 breaking)
0.3.1 | Jul 6, 2024 |
---|---|
0.2.5 | May 6, 2024 |
0.2.2 | Mar 22, 2024 |
0.1.2 | Dec 15, 2023 |
0.0.0-alpha.0 | Jul 7, 2023 |
#48 in Compression
951 downloads per month
Used in 7 crates
(6 directly)
295KB
7.5K
SLoC
Pco (Pcodec) losslessly compresses and decompresses numerical sequences with high compression ratio and moderately fast speed.
Quick Start
use pco::standalone::{simpler_compress, simple_decompress};
use pco::DEFAULT_COMPRESSION_LEVEL;
use pco::errors::PcoResult;
fn main() -> PcoResult<()> {
// your data
let mut my_nums = Vec::new();
for i in 0..100000 {
my_nums.push(i as i64);
}
// compress
let compressed: Vec<u8> = simpler_compress(&my_nums, DEFAULT_COMPRESSION_LEVEL)?;
println!("compressed down to {} bytes", compressed.len());
// decompress
let recovered = simple_decompress::<i64>(&compressed)?;
println!("got back {} ints from {} to {}", recovered.len(), recovered[0], recovered.last().unwrap());
Ok(())
}
Compilation Notes
For best performance on x86_64, compile with any bmi*
and avx*
instruction sets your hardware supports.
Almost all hardware x86 hardware these days supports bmi1
, bmi2
, and avx2
.
This improves compression speed slightly and decompression speed substantially!
To make sure you're using these, you can:
- Add the following to your
~/.cargo/config.toml
:
[target.'cfg(target_arch = "x86_64")']
rustflags = ["-C", "target-feature=+bmi1,+bmi2,+avx2"]
- OR compile with
RUSTFLAGS="-C target-feature=+bmi1,+bmi2,+avx2" cargo build --release ...
Note that settings target-cpu=native
does not always have the same effect,
since LLVM compiles for the lowest common denominator of instructions for a
broad CPU family.
Dependencies
~370KB