Skip to content

Commit e7023fe

Browse files
committed
ALP Kernel
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 1c3737e commit e7023fe

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

vortex-array/src/array/mod.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -722,13 +722,6 @@ impl<V: VTable> Array for ArrayAdapter<V> {
722722
}
723723

724724
fn reduce_parent(&self, parent: &ArrayRef, child_idx: usize) -> VortexResult<Option<ArrayRef>> {
725-
#[cfg(debug_assertions)]
726-
vortex_ensure!(
727-
Arc::as_ptr(&parent.children()[child_idx]) == self,
728-
"Parent array's child at index {} does not match self",
729-
child_idx
730-
);
731-
732725
let Some(reduced) = V::reduce_parent(&self.0, parent, child_idx)? else {
733726
return Ok(None);
734727
};

0 commit comments

Comments
 (0)