diskann_quantization/product/mod.rs
1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5
6//! Product quantization training and compression.
7
8pub mod train;
9
10mod tables;
11
12/////////////
13// Exports //
14/////////////
15
16// Error types
17pub use tables::{
18 BasicTable, BasicTableBase, BasicTableView, TableCompressionError, TransposedTable,
19};