From ce6290a88f7446b115fe26b84b8b43f895b77a03 Mon Sep 17 00:00:00 2001 From: Daniel King Date: Tue, 24 Sep 2024 15:03:24 -0400 Subject: [PATCH] remove printlns --- encodings/fastlanes/src/delta/compute.rs | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/encodings/fastlanes/src/delta/compute.rs b/encodings/fastlanes/src/delta/compute.rs index f04a9ed39..b8d350dde 100644 --- a/encodings/fastlanes/src/delta/compute.rs +++ b/encodings/fastlanes/src/delta/compute.rs @@ -26,12 +26,6 @@ impl SliceFn for DeltaArray { let base_start_index = start_chunk * lanes; let base_stop_index = stop_chunk * lanes; - println!( - "{} {} {}", - base_stop_index, - base_stop_index, - self.bases_len() - ); let new_bases = bases.with_dyn(|a| { a.slice() .ok_or(vortex_err!("bases must be slice-able"))? @@ -58,22 +52,6 @@ impl SliceFn for DeltaArray { Some(stop % 1024) }; - println!( - "start={} stop={} start_chunk={} stop_chunk={} bases.len={} lanes={} new_bases.len={} new_deltas.len={} stop_chunk={} one_past_last_chunk={} {} limit={:?}", - start, - stop, - start_chunk, - stop_chunk, - bases.len(), - lanes, - new_bases.len(), - new_deltas.len(), - stop_chunk, - one_past_last_chunk, - stop_chunk == one_past_last_chunk, - limit, - ); - let arr = DeltaArray::try_new( new_bases, new_deltas,