Skip to main content

vortex_tensor/vector/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Vector extension type for fixed-length float vectors (e.g., embeddings).
5
6/// The Vector extension type.
7#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
8pub struct Vector;
9
10mod vtable;