4 releases
0.2.0 | Sep 21, 2023 |
---|---|
0.1.2 | Sep 18, 2023 |
0.1.1 | Sep 18, 2023 |
0.1.0 | Sep 18, 2023 |
#1258 in Hardware support
23 downloads per month
27KB
434 lines
hyperlog-simd
A Rust implementation of HyperLogLog and HyperLogLogPlusPlus streaming distinct count algorithms with SIMD (Single Instruction, Multiple Data) support on both ARM and x86_64 platforms. Also features serde compatibility for easy serialization and deserialization.
Features
- 🔬 HLL and HLL++: Implementations of both HyperLogLog (HLL) and HyperLogLog++ (HLL++) algorithms.
- 🚀 Fast SIMD Support: Leverage the speed of SIMD operations on both ARM and x86_64 platforms.
- 🔄 Merge Sketches: Combine multiple sketches to allow for incremental and parallel processing.
- 📦 Serde Compatibility: Easily serialize and deserialize your sketches.
- 📚 Comprehensive Documentation: Provided examples and documentation for all features.
Table of Contents
Installation
Add hyperlog-simd
to your Cargo.toml
dependencies:
[dependencies]
hyperlog-simd = "0.1.0"
Usage
Here's a simple example to get started:
use hyperlog_simd::{HyperLogLog, HyperLogLogPlusPlus};
let mut hll = HyperLogLog::new();
hll.add("hello");
hll.add("world");
let count = hll.estimate();
println!("Estimated distinct count: {}", count);
let mut hllpp = HyperLogLogPlusPlus::new();
hllpp.add("hello");
hllpp.add("world");
let count_pp = hllpp.estimate();
println!("Estimated distinct estimate (HLL++): {}", count_pp);
For detailed examples and documentation, please refer to the documentation.
Benchmark
This library provides impressive performance gains on platforms that support SIMD. Benchmarks will be updated periodically, and you can also run them yourself using:
cargo bench
Contribution
We welcome contributions! Please see CONTRIBUTING.md for guidelines and details.
License
hyperlog-simd
is licensed under the MIT License. See LICENSE for details.
Happy coding! We hope hyperlog-simd
helps in your streaming distinct count needs with maximum efficiency! 🚀🦀
Dependencies
~1.1–1.6MB
~34K SLoC