Skip to content

Commit 0b3ff1e

Browse files
committed
Sparse pipeline driver
Signed-off-by: Nicholas Gates <[email protected]>
1 parent dd834f0 commit 0b3ff1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vortex-array/src/pipeline/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub trait BindContext {
6666
///
6767
/// Each step of the kernel takes and returns vectors (depending on the type of kernel) of `N`
6868
/// elements. Input vectors are provided via the [`KernelCtx`] and indicate the position of their
69-
/// elements as either [`PipelineVector::Selection`] or [`PipelineVector::Prefix`] based on whether
69+
/// elements as either [`PipelineVector::Sparse`] or [`PipelineVector::Compact`] based on whether
7070
/// the selected elements are in their original positions or compacted at the start of the vector
7171
/// respectively.
7272
///

vortex-array/src/vtable/operator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub trait OperatorVTable<V: VTable> {
4040
Self::bind(array, Some(&selection.clone().into_array()), &mut ())?.execute()
4141
}
4242

43-
/// Downcast this array into a [`PipelineNode`] if it supports pipelined execution.
43+
/// Downcast this array into a [`PipelinedNode`] if it supports pipelined execution.
4444
///
4545
/// Each node is either a source node or a transformation node.
4646
fn pipeline_node(_array: &V::Array) -> Option<&dyn PipelinedNode> {

0 commit comments

Comments
 (0)