Skip to content

Commit f88b150

Browse files
committed
drop execute parent
Signed-off-by: Alexander Droste <alexander.droste@protonmail.com>
1 parent b4adfcd commit f88b150

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

vortex-cuda/src/dynamic_dispatch/plan_builder.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -396,17 +396,10 @@ impl FusedPlan {
396396
let slice_arr = array.as_::<Slice>();
397397
let child = slice_arr.child().clone();
398398

399-
// reduce_parent: (for types with SliceReduceAdaptor, like FoR/ZigZag)
400399
if let Some(reduced) = child.vtable().reduce_parent(&child, &array, 0)? {
401400
return self.walk(reduced, pending_subtrees);
402401
}
403402

404-
// execute_parent: (for types with SliceExecuteAdaptor/SliceKernel, like BitPacked)
405-
let mut ctx = ExecutionCtx::new(VortexSession::empty().with::<ArraySession>());
406-
if let Some(executed) = child.vtable().execute_parent(&child, &array, 0, &mut ctx)? {
407-
return self.walk(executed, pending_subtrees);
408-
}
409-
410403
vortex_bail!(
411404
"Cannot resolve SliceArray wrapping {:?} in dynamic dispatch plan builder",
412405
child.encoding_id()

0 commit comments

Comments
 (0)