Skip to main content

vortex_tensor/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! Tensor extension type.
5
6mod metadata;
7pub use metadata::FixedShapeTensorMetadata;
8
9mod proto;
10mod vtable;
11
12pub mod scalar_fns;
13
14/// The VTable for the Tensor extension type.
15#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
16pub struct FixedShapeTensor;