Skip to content

Commit

Permalink
fully revert
Browse files Browse the repository at this point in the history
  • Loading branch information
danking committed Sep 19, 2024
1 parent b99f51a commit e6f8616
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vortex-sampling-compressor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ pub struct CompressConfig {

impl Default for CompressConfig {
fn default() -> Self {
let ki = 1 << 10;
let mi = 1 << 20;
let kib = 1 << 10;
let mib = 1 << 20;
Self {
// Sample length should always be multiple of 1024
sample_size: 128,
sample_count: 8,
max_depth: 3,
target_block_bytesize: 16 * mi,
target_block_size: 64 * ki,
target_block_bytesize: 16 * mib,
target_block_size: 64 * kib,
}
}
}
Expand Down

0 comments on commit e6f8616

Please sign in to comment.