Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions vortex-file/src/strategy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ use vortex_pco::Pco;
use vortex_runend::RunEnd;
use vortex_sequence::Sequence;
use vortex_sparse::Sparse;
#[cfg(feature = "unstable_encodings")]
use vortex_tensor::encodings::turboquant::TurboQuant;
use vortex_utils::aliases::hash_map::HashMap;
use vortex_utils::aliases::hash_set::HashSet;
use vortex_zigzag::ZigZag;
Expand Down Expand Up @@ -111,8 +109,6 @@ pub static ALLOWED_ENCODINGS: LazyLock<HashSet<ArrayId>> = LazyLock::new(|| {
allowed.insert(RunEnd.id());
allowed.insert(Sequence.id());
allowed.insert(Sparse.id());
#[cfg(feature = "unstable_encodings")]
allowed.insert(TurboQuant.id());
allowed.insert(ZigZag.id());

#[cfg(feature = "zstd")]
Expand Down
2 changes: 1 addition & 1 deletion vortex-tensor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ half = { workspace = true }
itertools = { workspace = true }
num-traits = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }

[dev-dependencies]
rand = { workspace = true }
rand_distr = { workspace = true }
rstest = { workspace = true }
244 changes: 83 additions & 161 deletions vortex-tensor/public-api.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion vortex-tensor/src/encodings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
//! Encodings for the different tensor types.

// TODO(connor):
// pub mod norm; // Unit-normalized vectors.
// pub mod spherical; // Spherical transform on unit-normalized vectors.

pub mod turboquant;
261 changes: 0 additions & 261 deletions vortex-tensor/src/encodings/turboquant/array/data.rs

This file was deleted.

11 changes: 0 additions & 11 deletions vortex-tensor/src/encodings/turboquant/array/mod.rs

This file was deleted.

38 changes: 0 additions & 38 deletions vortex-tensor/src/encodings/turboquant/array/slots.rs

This file was deleted.

Loading
Loading