We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181d179 commit d723708Copy full SHA for d723708
1 file changed
rust/lance-index/src/vector/ivf/transform.rs
@@ -54,16 +54,6 @@ impl PartitionTransformer {
54
output_column: PART_ID_COLUMN.to_owned(),
55
}
56
57
-
58
- /// Compute the partition for each row in the input Matrix.
59
- ///
60
- #[instrument(level = "debug", skip_all)]
61
- pub(super) fn compute_partitions(&self, data: &FixedSizeListArray) -> UInt32Array {
62
- compute_partitions_arrow_array(&self.centroids, data, self.distance_type)
63
- .expect("failed to compute partitions")
64
- .0
65
- .into()
66
- }
67
68
impl Transformer for PartitionTransformer {
69
#[instrument(name = "PartitionTransformer::transform", level = "debug", skip_all)]
0 commit comments