2个版本

0.1.1+SZ3-3.1.8.12024年5月28日
0.1.0+SZ3-3.1.82024年5月22日

169压缩 中排名

Download history • Rust 包仓库 138/week @ 2024-05-18 • Rust 包仓库 173/week @ 2024-05-25 • Rust 包仓库 46/week @ 2024-06-01 • Rust 包仓库 58/week @ 2024-06-08 • Rust 包仓库 36/week @ 2024-06-15 • Rust 包仓库 15/week @ 2024-06-22 • Rust 包仓库 10/week @ 2024-06-29 • Rust 包仓库 1/week @ 2024-07-06 • Rust 包仓库 25/week @ 2024-07-13 • Rust 包仓库 24/week @ 2024-07-20 • Rust 包仓库 5/week @ 2024-07-27 • Rust 包仓库

每月 56 次下载

MIT/ApacheGPL-3.0-only

4.5MB
40K SLoC

C 35K SLoC // 0.2% comments • Rust 包仓库 C++ 3K SLoC // 0.1% comments • Rust 包仓库 Rust 1K SLoC // 0.0% comments • Rust 包仓库 Visual Studio Project 180 SLoC • Rust 包仓库 Python 79 SLoC // 0.3% comments • Rust 包仓库 Objective-C 69 SLoC • Rust 包仓库 Visual Studio Solution 24 SLoC • Rust 包仓库 Batch 19 SLoC • Rust 包仓库

sz3-rs

SZ3有损浮点压缩器的顶层绑定。

用法

let data = vec![0; 64 * 64 * 64];
let data = DimensionedData::build(&data)
    .dim(64)?
    .dim(64)?
    .remainder_dim()?;
let config = Config::new(ErrorBound::Absolute(0.02));
let compressed = compress_with_config(&data, &config);
let decompressed = decompress::<f32, _>(&*compressed);

依赖项

~2.8–5.5MB
~100K SLoC