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