Skip to main content

vortex_compute/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4#![deny(missing_docs)]
5
6//! Lane-level compute kernels over Vortex buffers.
7//!
8//! Today this crate hosts the [`lane_kernels`] module — an [`IndexedSource`]/[`IndexedSink`]
9//! abstraction plus mask-aware map kernels that the autovectorizer can drive through
10//! independent lane reads/writes. Additional kernels will land here.
11//!
12//! [`IndexedSource`]: lane_kernels::IndexedSource
13//! [`IndexedSink`]: lane_kernels::IndexedSink
14
15pub mod lane_kernels;