diskann-quantization 0.51.0

DiskANN is a fast approximate nearest neighbor search library for high dimensional data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
/*
 * Copyright (c) Microsoft Corporation.
 * Licensed under the MIT license.
 */

use super::vectors::{DataMutRef, FullQueryMut, MinMaxCompensation, MinMaxIP, MinMaxL2Squared};
use core::f32;

use crate::{
    AsFunctor, CompressInto,
    algorithms::Transform,
    alloc::{GlobalAllocator, ScopedAllocator},
    bits::{Representation, Unsigned},
    minmax::{MinMaxCosine, MinMaxCosineNormalized, vectors::FullQueryMeta},
    num::Positive,
    scalar::{InputContainsNaN, bit_scale},
};

/// Recall that from the module-level documentation, MinMaxQuantizer, quantizes X
/// into `n` bit vectors as follows  -
/// ```math
/// X' = round((X - s) * (2^n - 1) / c).clamp(0, 2^n - 1))
/// ```
/// where `s` is a shift value and `c` is a scaling parameter computed from the range of values.
///
/// For most bit widths (>1), given a positive scaling parameter `grid_scale : f32`,
/// these are computed as:
/// ```math
/// - m = (max_i X[i] + min_i X[i]) / 2.0
/// - w = max_i X[i] - min_i X[i]
///
/// - s = m - w * grid_scale
/// - c = 2 * w * grid_scale
///
/// where `grid_scale` is an input to the quantizer.
/// ```
/// For 1-bit quantization, to avoid outliers, `s` and `c` are derived differently:
/// - Values are first split into two groups: those below and above the mean.
/// - `s` is the average of values below the mean.
/// - `c` is the difference between the average of values above the mean and `s`.
///
/// See [`MinMaxCompensation`] for notation.
/// We have then that
/// ```math
/// X = X' * (c / (2^n - 1)) + s
///          --------------    -
///                 |          |
///                ax          bx
/// ```
pub struct MinMaxQuantizer {
    /// Support for different strategies of pre-transforming vectors before applying compression.
    /// See [`Transform`] for more details on supported types. The input dimension of vectors
    /// to the quantizer is derived from `transform.input_dim()`.
    transform: Transform<GlobalAllocator>,

    /// Scaling parameter used to scale the range (min, max) in order to avoid outliers.
    /// The input must be a positive value. In general, any value between [0.8, 1] does well.
    grid_scale: Positive<f32>,
}

impl MinMaxQuantizer {
    /// Instantiates a new quantizer with specific transform.
    pub fn new(transform: Transform<GlobalAllocator>, grid_scale: Positive<f32>) -> Self {
        Self {
            transform,
            grid_scale,
        }
    }

    /// Input dimension of vectors to quantizer.
    pub fn dim(&self) -> usize {
        self.transform.input_dim()
    }

    /// Output dimension of vectors after applying transform.
    ///
    /// Output storage vectors should use this dimension instead of `self.dim()` because
    /// in general, the output dim **may** be different from the input dimension.
    pub fn output_dim(&self) -> usize {
        self.transform.output_dim()
    }

    /// Outputs the minimum and maximum value of the range of values
    /// for an input vector `vec`. The function cases based on the
    /// intended number of bits `NBITS` per dimension.
    ///
    /// * `1-bit` - In order to avoid outlier values, the range
    ///   is defined by taking the values larger and smaller than
    ///   the numeric mean, and then taking the respective means of
    ///   each of these sets as the `max` and `min`.
    ///
    /// * `N-bits` - Computes the `min` and `max` of the vector values.
    ///
    /// # Returns
    ///
    /// * `(m - w * g, m + w * g)` - the lower and upper end of the range, where,
    ///   `m = (max + min) / 2.0`, `w = (max - min) / 2.0`, and `g = self.grid_scale`.
    fn get_range<const NBITS: usize>(&self, vec: &[f32]) -> (f32, f32) {
        let (min, max) = match NBITS {
            1 => {
                let (mut min, mut min_count) = (0.0f32, 0.0f32);
                let (mut max, mut max_count) = (0.0f32, 0.0f32);

                let mean = vec.iter().sum::<f32>() / (vec.len() as f32);

                vec.iter().for_each(|x| {
                    let m = f32::from((*x < mean) as u8);
                    min += m * x;
                    min_count += m;
                    max += (1.0 - m) * x;
                    max_count += 1.0 - m;
                });

                ((min / min_count).min(mean), (max / max_count).max(mean))
            }
            _ => {
                vec // Using `f32::NAN` since [`core::f32::min`] and `max` output the other value if one of them is NAN .
                    .iter()
                    .fold((f32::NAN, f32::NAN), |(cmin, cmax), &e| {
                        (cmin.min(e), cmax.max(e))
                    })
            }
        };

        let width = (max - min) / 2.0;
        let mid = min + width;

        (
            mid - width * self.grid_scale.into_inner(),
            mid + width * self.grid_scale.into_inner(),
        )
    }

    fn compress<const NBITS: usize, T>(
        &self,
        from: &[T],
        mut into: DataMutRef<'_, NBITS>,
    ) -> Result<L2Loss, InputContainsNaN>
    where
        T: Copy + Into<f32>,
        Unsigned: Representation<NBITS>,
    {
        let mut into_vec = into.vector_mut();

        assert_eq!(from.len(), self.dim());
        assert_eq!(self.output_dim(), into_vec.len());

        let domain = Unsigned::domain_const::<NBITS>();
        let domain_min = *domain.start() as f32;
        let domain_max = *domain.end() as f32;

        let mut vec = vec![f32::default(); self.output_dim()];

        // We know vec.len() == self.output_dim() and `from.len() == self.dim`
        #[allow(clippy::unwrap_used)]
        self.transform
            .transform_into(
                &mut vec,
                &from.iter().map(|&x| x.into()).collect::<Vec<f32>>(),
                ScopedAllocator::global(),
            )
            .unwrap();

        let (min, max) = self.get_range::<NBITS>(&vec);

        let inverse_scale = (max - min).max(1e-8) / bit_scale::<NBITS>(); // To avoid NaN. This is ONLY possible if the vector is all the same value.
        let mut norm_squared: f32 = 0.0;
        let mut code_sum: f32 = 0.0;
        let mut loss: f32 = 0.0;

        let mut nan_check = false;

        vec.iter().enumerate().for_each(|(i, &v)| {
            nan_check |= v.is_nan();

            let code = ((v - min) / inverse_scale)
                .clamp(domain_min, domain_max)
                .round();

            let v_r = (code * inverse_scale) + min; // reconstructed value for `v`.
            norm_squared += v_r * v_r;
            code_sum += code;
            loss += (v_r - v).powi(2);

            //SAFETY: we checked that the lengths of `from` and `into_vec` are the same.
            unsafe {
                into_vec.set_unchecked(i, code as u8);
            }
        });

        let meta = MinMaxCompensation {
            dim: self.output_dim() as u32,
            b: min,
            a: inverse_scale,
            n: inverse_scale * code_sum,
            norm_squared,
        };

        into.set_meta(meta);

        if nan_check {
            Err(InputContainsNaN)
        } else {
            Ok(match Positive::new(loss) {
                Ok(p) => L2Loss::Positive(p),
                Err(_) => L2Loss::Zero,
            })
        }
    }
}

/////////////////
// Compression //
/////////////////

/// A struct defining euclidean loss from quantization.
///
/// For an input vector `x` and its representation `x'`,
/// this is supposed to store `||x - x'||^2`.
#[derive(Clone, Copy, Debug)]
pub enum L2Loss {
    Zero,
    Positive(Positive<f32>),
}

impl L2Loss {
    /// Euclidean loss as a `f32` value
    pub fn as_f32(&self) -> f32 {
        match self {
            L2Loss::Zero => 0.0,
            L2Loss::Positive(p) => p.into_inner(),
        }
    }
}

impl<const NBITS: usize, T> CompressInto<&[T], DataMutRef<'_, NBITS>> for MinMaxQuantizer
where
    T: Copy + Into<f32>,
    Unsigned: Representation<NBITS>,
{
    type Error = InputContainsNaN;

    type Output = L2Loss;

    /// Compress the input vector `from` into a mut ref of Data `to`.
    ///
    /// This method computes and stores the compensation coefficients required for computing
    /// distances correctly.
    ///
    /// # Error
    ///
    /// Returns an error if the input contains `NaN`.
    ///
    /// # Panics
    ///
    /// Panics if:
    /// * `from.len() != self.dim()`: Vector to be compressed must have the same
    ///   dimensionality as the quantizer.
    /// * `to.vector().len() != self.output_dim()`: Compressed vector must have the same dimensionality
    ///   as the quantizer.
    fn compress_into(&self, from: &[T], to: DataMutRef<'_, NBITS>) -> Result<L2Loss, Self::Error> {
        self.compress::<NBITS, T>(from, to)
    }
}

impl<'a, T> CompressInto<&[T], FullQueryMut<'a>> for MinMaxQuantizer
where
    T: Copy + Into<f32>,
{
    type Error = InputContainsNaN;

    type Output = ();

    /// Compress the input vector `from` into a [`FullQueryMut`] `to`.
    ///
    /// This method simply applies the transformation to the input without
    /// any compression.
    ///
    /// # Error
    ///
    /// Returns an error if the input contains `NaN`.
    ///
    /// # Panics
    ///
    /// Panics if:
    /// * `from.len() != self.dim()`: Vector to be compressed must have the same
    ///   dimensionality as the quantizer.
    /// * `to.len() != self.output_dim()`: Compressed vector must have the same dimensionality
    ///   as the quantizer.
    fn compress_into(&self, from: &[T], mut to: FullQueryMut<'a>) -> Result<(), Self::Error> {
        assert_eq!(from.len(), self.dim());
        assert_eq!(self.output_dim(), to.len());

        // Transform the input vector and return error if it contains NaN
        let from: Vec<f32> = from.iter().map(|&x| x.into()).collect();
        if from.iter().any(|x| x.is_nan()) {
            return Err(InputContainsNaN);
        }

        // We know vec.len() == self.output_dim() and `from.len() == self.dim`
        #[allow(clippy::unwrap_used)]
        self.transform
            .transform_into(to.vector_mut(), &from, ScopedAllocator::global())
            .unwrap();

        let norm_squared = to.vector().iter().map(|x| *x * *x).sum::<f32>();
        let sum = to.vector().iter().sum::<f32>();

        *to.meta_mut() = FullQueryMeta { norm_squared, sum };

        Ok(())
    }
}

///////////////////////
// Distance Functors //
///////////////////////

macro_rules! impl_functor {
    ($dist:ident) => {
        impl AsFunctor<$dist> for MinMaxQuantizer {
            // no need to do any work here.
            fn as_functor(&self) -> $dist {
                $dist
            }
        }
    };
}

impl_functor!(MinMaxIP);
impl_functor!(MinMaxL2Squared);
impl_functor!(MinMaxCosine);
impl_functor!(MinMaxCosineNormalized);

///////////
// Tests //
///////////
#[cfg(test)]
#[cfg(not(miri))]
mod minmax_quantizer_tests {
    use std::num::NonZeroUsize;

    use diskann_utils::{Reborrow, ReborrowMut};
    use diskann_vector::{PureDistanceFunction, distance::SquaredL2};
    use rand::{
        SeedableRng,
        distr::{Distribution, Uniform},
        rngs::StdRng,
    };

    use super::*;
    use crate::{
        algorithms::transforms::NullTransform,
        alloc::GlobalAllocator,
        minmax::vectors::{Data, DataRef, FullQuery, FullQueryMut},
    };

    fn reconstruct_minmax<const NBITS: usize>(v: DataRef<'_, NBITS>) -> Vec<f32>
    where
        Unsigned: Representation<NBITS>,
    {
        (0..v.len())
            .map(|i| {
                let m = v.meta();
                v.vector().get(i).unwrap() as f32 * m.a + m.b
            })
            .collect()
    }

    fn test_quantizer_encoding_random<const NBITS: usize>(
        dim: usize,
        rng: &mut StdRng,
        relative_err: f32,
        scale: f32,
    ) where
        Unsigned: Representation<NBITS>,
        MinMaxQuantizer: for<'a, 'b> CompressInto<&'a [f32], DataMutRef<'b, NBITS>, Output = L2Loss>
            + for<'a, 'b> CompressInto<&'a [f32], FullQueryMut<'b>, Output = ()>,
    {
        let distribution = Uniform::new_inclusive::<f32, f32>(-1.0, 1.0).unwrap();

        let quantizer = MinMaxQuantizer::new(
            Transform::Null(NullTransform::new(NonZeroUsize::new(dim).unwrap())),
            Positive::new(scale).unwrap(),
        );

        assert_eq!(quantizer.dim(), dim);

        let vector: Vec<f32> = distribution.sample_iter(rng).take(dim).collect();

        let mut encoded = Data::new_boxed(dim);
        let loss = quantizer
            .compress_into(&*vector, encoded.reborrow_mut())
            .unwrap();

        let reconstructed = reconstruct_minmax::<NBITS>(encoded.reborrow());
        assert_eq!(reconstructed.len(), dim);

        let reconstruction_error: f32 = SquaredL2::evaluate(&*vector, &*reconstructed);
        let norm = vector.iter().map(|x| x * x).sum::<f32>();
        assert!(
            (reconstruction_error / norm) <= relative_err,
            "Expected vector : {:?} to be reconstructed within error {} but instead got : {:?}, with error {} for dim : {}",
            &vector,
            relative_err,
            &reconstructed,
            reconstruction_error / norm,
            dim,
        );

        assert!((loss.as_f32() - reconstruction_error) <= 1e-4);

        let expected_code_sum = (0..dim)
            .map(|i| encoded.vector().get(i).unwrap() as f32)
            .sum::<f32>();
        let code_sum = encoded.reborrow().meta().n / encoded.reborrow().meta().a;
        assert!(
            (code_sum - expected_code_sum).abs() <= 2e-5 * (dim as f32),
            "Encoded vector with dim : {dim} is {:?}, got error : {} for vector : {:?}",
            encoded.reborrow(),
            (code_sum - expected_code_sum).abs(),
            &vector,
        );
        let recon_norm_sq = reconstructed.iter().map(|x| x * x).sum::<f32>();
        assert!((encoded.reborrow().meta().norm_squared - recon_norm_sq).abs() <= 1e-3);

        // FullQuery
        let mut f = FullQuery::new_in(dim, GlobalAllocator).unwrap();
        quantizer
            .compress_into(vector.as_slice(), f.reborrow_mut())
            .unwrap();

        f.vector()
            .iter()
            .enumerate()
            .zip(vector.iter())
            .for_each(|((i, x), y)| {
                assert!(
                    (*x - *y).abs() < 1e-10,
                    "Full Query did not compress dimension {i} with value {} correctly, got {} instead.",
                    *y,
                    *x,
                )
            });

        assert!(
            (f.meta().norm_squared - norm).abs() < 1e-10,
            "Full Query norm in meta should be {norm} but instead got {}",
            f.meta().norm_squared
        );

        let sum = vector.iter().sum::<f32>();
        assert!(
            (f.meta().sum - sum) < 1e-10,
            "Full Query norm in meta should be {sum} but instead got {}",
            f.meta().sum
        );
    }

    cfg_if::cfg_if! {
        if #[cfg(miri)] {
            // The max dim does not need to be as high for `CompensatedVectors` because they
            // defer their distance function implementation to `BitSlice`, which is more
            // heavily tested.
            const TRIALS: usize = 2;
        } else {
            const TRIALS: usize = 10;
        }
    }

    macro_rules! test_minmax_quantizer_encoding {
        ($name:ident, $dim:literal, $nbits:literal, $seed:literal, $err:expr) => {
            #[test]
            fn $name() {
                let mut rng = StdRng::seed_from_u64($seed);
                let scales = [1.0, 1.1, 0.9];
                for (s, e) in scales.iter().zip($err) {
                    for d in 10..$dim {
                        for _ in 0..TRIALS {
                            test_quantizer_encoding_random::<$nbits>(d, &mut rng, e, *s);
                        }
                    }
                }
            }
        };
    }
    test_minmax_quantizer_encoding!(
        test_minmax_encoding_1bit,
        100,
        1,
        0xa32d5658097a1c35,
        vec![0.5, 0.5, 0.5]
    );
    test_minmax_quantizer_encoding!(
        test_minmax_encoding_2bit,
        100,
        2,
        0xf60c0c8d1aadc126,
        vec![0.5, 0.5, 0.5]
    );
    test_minmax_quantizer_encoding!(
        test_minmax_encoding_4bit,
        100,
        4,
        0x09fa14c42a9d7d98,
        vec![1.0e-2, 1.0e-2, 3.0e-2]
    );
    test_minmax_quantizer_encoding!(
        test_minmax_encoding_8bit,
        100,
        8,
        0xaedf3d2a223b7b77,
        vec![2.0e-3, 2.0e-3, 7.0e-3]
    );

    macro_rules! expand_to_bitrates {
        ($name:ident, $func:ident) => {
            #[test]
            fn $name() {
                $func::<1>();
                $func::<2>();
                $func::<4>();
                $func::<8>();
            }
        };
    }

    /// Tests the edge case where min == max but both are non-zero.
    fn test_all_same_value_vector<const NBITS: usize>()
    where
        Unsigned: Representation<NBITS>,
        MinMaxQuantizer:
            for<'a, 'b> CompressInto<&'a [f32], DataMutRef<'b, NBITS>, Output = L2Loss>,
    {
        let dim = 30;
        let quantizer = MinMaxQuantizer::new(
            Transform::Null(NullTransform::new(NonZeroUsize::new(dim).unwrap())),
            Positive::new(1.0).unwrap(),
        );
        let constant_value = 42.5f32;
        let vector = vec![constant_value; dim];

        let mut encoded = Data::new_boxed(dim);
        let result = quantizer.compress_into(&vector, encoded.reborrow_mut());

        assert!(
            result.is_ok(),
            "Constant-value vector should compress successfully"
        );

        assert!(result.unwrap().as_f32().abs() <= 1e-6);

        // Reconstruction should yield the original constant value (approximately)
        let reconstructed = reconstruct_minmax(encoded.reborrow());
        for &val in &reconstructed {
            assert!(
                (val - constant_value).abs() < 1e-3,
                "Reconstructed value {} should be close to original {}. Compressed vector is {:?}",
                val,
                constant_value,
                encoded.meta(),
            );
        }
    }

    /// This tests boundary conditions in the quantization logic.
    fn test_two_distinct_values<const NBITS: usize>()
    where
        Unsigned: Representation<NBITS>,
        MinMaxQuantizer:
            for<'a, 'b> CompressInto<&'a [f32], DataMutRef<'b, NBITS>, Output = L2Loss>,
    {
        let dim = 20;
        let quantizer = MinMaxQuantizer::new(
            Transform::Null(NullTransform::new(NonZeroUsize::new(dim).unwrap())),
            Positive::new(1.0).unwrap(),
        );

        let val1 = -10.0f32;
        let val2 = 15.0f32;
        let mut vector = vec![val1; dim];
        // Make half the vector the second value
        for i in vector.iter_mut().skip(dim) {
            *i = val2;
        }

        let mut encoded = Data::new_boxed(dim);
        let result = quantizer.compress_into(&vector, encoded.reborrow_mut());

        assert!(
            result.is_ok(),
            "Two-value vector should compress successfully"
        );

        assert!(result.unwrap().as_f32().abs() <= 1e-6);

        // Verify that only two distinct codes are used
        let mut codes_used = std::collections::HashSet::new();
        for i in 0..dim {
            codes_used.insert(encoded.vector().get(i).unwrap());
        }

        // For most bit widths, we should see exactly 2 codes (min and max of domain)
        if NBITS > 1 {
            assert!(
                codes_used.len() <= 2,
                "Should use at most 2 distinct codes for 2-value input, but used: {:?}",
                codes_used
            );
        }

        // Verify reconstruction maintains the two-value structure approximately
        let reconstructed = reconstruct_minmax(encoded.reborrow());
        for ((i, val), v) in reconstructed.into_iter().enumerate().zip(&vector) {
            // Round to nearest 0.1 to account for quantization error
            assert!(
                (val - v).abs() < 1e-4,
                "Reconstructed value in dim : {i} is {val}, when it should be {v}."
            );
        }
    }

    /// Verifies that NaN values in the input cause the expected error but
    /// dimension in meta is correctly set.
    fn test_nan_input_error<const NBITS: usize>()
    where
        Unsigned: Representation<NBITS>,
        MinMaxQuantizer:
            for<'a, 'b> CompressInto<&'a [f32], DataMutRef<'b, NBITS>, Output = L2Loss>,
    {
        let dim = 100;
        let quantizer = MinMaxQuantizer::new(
            Transform::Null(NullTransform::new(NonZeroUsize::new(dim).unwrap())),
            Positive::new(1.0).unwrap(),
        );

        // Test vector with NaN in the middle.
        let mut vector_nan = vec![1.0f32; dim];
        vector_nan[33] = f32::NAN;
        let mut encoded = Data::new_boxed(dim);
        let result = quantizer.compress_into(&vector_nan, encoded.reborrow_mut());
        assert!(result.is_err(), "Vector with NaN should cause an error");

        let meta = encoded.meta();
        assert_eq!(meta.dim as usize, dim);
    }

    expand_to_bitrates!(all_same_values_vector, test_all_same_value_vector);
    expand_to_bitrates!(two_distinct_values, test_two_distinct_values);
    expand_to_bitrates!(nan_input_error, test_nan_input_error);

    /// Verifies that providing a vector with wrong dimensionality causes a panic.
    #[test]
    #[should_panic(expected = "assertion `left == right` failed\n  left: 15\n right: 10")]
    fn test_dimension_mismatch_panic()
    where
        Unsigned: Representation<8>,
        MinMaxQuantizer: for<'a, 'b> CompressInto<&'a [f32], DataMutRef<'b, 8>, Output = L2Loss>,
    {
        let expected_dim = 10;
        let quantizer = MinMaxQuantizer::new(
            Transform::Null(NullTransform::new(NonZeroUsize::new(expected_dim).unwrap())),
            Positive::new(1.0).unwrap(),
        );

        // Provide vector with wrong dimension
        let wrong_vector = vec![1.0f32; expected_dim + 5]; // Too many dimensions
        let mut encoded = Data::new_boxed(expected_dim);

        // This should panic due to assertion in compress_into
        let _ = quantizer.compress_into(&wrong_vector, encoded.reborrow_mut());
    }
}