diff --git a/vortex-sampling-compressor/src/lib.rs b/vortex-sampling-compressor/src/lib.rs index 498bfcd433..150b52a93c 100644 --- a/vortex-sampling-compressor/src/lib.rs +++ b/vortex-sampling-compressor/src/lib.rs @@ -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, } } }