Skip to content

Commit

Permalink
remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
danking committed Sep 24, 2024
1 parent 11bc19b commit ce6290a
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions encodings/fastlanes/src/delta/compute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))?
Expand All @@ -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,
Expand Down

0 comments on commit ce6290a

Please sign in to comment.