next-plaid 1.2.0

CPU-based PLAID implementation for multi-vector search using ndarray
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
//! CUDA-accelerated functions for next-plaid.
//!
//! When the `cuda` feature is enabled, the standard next-plaid functions
//! automatically use CUDA acceleration. No code changes required for users.
//!
//! # Performance Note: CUDA Initialization Time
//!
//! The first CUDA context creation can take 10-30+ seconds on some systems due to
//! NVIDIA driver initialization. This is especially slow when GPU persistence mode
//! is disabled (the default).
//!
//! **To reduce init time**, enable GPU persistence mode (requires root):
//! ```bash
//! sudo nvidia-smi -pm 1
//! ```

use cudarc::cublas::sys::cublasOperation_t;
use cudarc::cublas::{CudaBlas, Gemm, GemmConfig};
use cudarc::driver::{
    CudaContext as CudarcContext, CudaFunction, CudaSlice, CudaStream, LaunchConfig, PushKernelArg,
};
use cudarc::nvrtc::{compile_ptx_with_opts, CompileOptions};
use ndarray::{Array1, ArrayView2};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex, OnceLock};

use crate::error::{Error, Result};

/// Run a closure, catching panics without printing the default panic message.
///
/// When CUDA libraries are stubs or incomplete, `cudarc` panics inside `dlsym`.
/// The default panic hook prints a scary `thread 'main' panicked at …` message
/// before `catch_unwind` has a chance to handle it. This helper temporarily
/// replaces the hook with a no-op so users only see our clean fallback message.
pub fn catch_cuda_panic<F, R>(f: F) -> std::result::Result<R, Box<dyn std::any::Any + Send>>
where
    F: FnOnce() -> R + std::panic::UnwindSafe,
{
    let prev_hook = std::panic::take_hook();
    std::panic::set_hook(Box::new(|_| {}));
    let result = std::panic::catch_unwind(f);
    std::panic::set_hook(prev_hook);
    result
}

/// Default maximum GPU memory to use (4GB)
const DEFAULT_MAX_GPU_MEMORY: usize = 4 * 1024 * 1024 * 1024;

/// Global flag to track if CUDA has been determined to be broken/unavailable.
/// Can be cleared with `clear_cuda_broken()` to retry initialization after
/// the user has repaired their CUDA environment.
static CUDA_BROKEN: AtomicBool = AtomicBool::new(false);

/// Global CUDA context, lazily initialized on first use.
/// Protected by a Mutex so it can be reset when `clear_cuda_broken()` is called.
static GLOBAL_CUDA_CONTEXT: OnceLock<Mutex<Option<Arc<CudaContext>>>> = OnceLock::new();

/// CUDA context holding device, stream, cuBLAS handle, and kernel functions.
pub struct CudaContext {
    pub device: Arc<CudarcContext>,
    pub stream: Arc<CudaStream>,
    pub blas: CudaBlas,
    argmax_func: CudaFunction,
    gather_subtract_func: CudaFunction,
}

impl CudaContext {
    /// Create a new CUDA context on the specified device.
    /// This also preloads PTX kernels to avoid compilation delay on first use.
    ///
    /// Note: First CUDA context creation can take 10-30+ seconds due to driver
    /// initialization when persistence mode is disabled. Enable it with:
    /// `sudo nvidia-smi -pm 1`
    pub fn new(device_id: usize) -> Result<Self> {
        let device = CudarcContext::new(device_id)
            .map_err(|e| Error::Codec(format!("Failed to initialize CUDA device: {:?}", e)))?;

        let stream = device.default_stream();

        let blas = CudaBlas::new(stream.clone())
            .map_err(|e| Error::Codec(format!("Failed to initialize cuBLAS: {:?}", e)))?;

        // Preload PTX kernels during context creation
        let (argmax_func, gather_subtract_func) = load_kernels(&device)?;

        Ok(Self {
            device,
            stream,
            blas,
            argmax_func,
            gather_subtract_func,
        })
    }
}

/// Get the global CUDA context, initializing it if necessary.
/// Returns `None` if CUDA initialization fails (allows graceful fallback to CPU).
///
/// If CUDA was previously marked as broken, returns `None` immediately.
/// Call `clear_cuda_broken()` to reset the flag and allow re-initialization
/// (e.g., after the user has repaired their CUDA environment).
pub fn get_global_context() -> Option<Arc<CudaContext>> {
    // Fast path: if CUDA has been determined to be broken, skip entirely
    if CUDA_BROKEN.load(Ordering::Relaxed) {
        return None;
    }

    let mutex = GLOBAL_CUDA_CONTEXT.get_or_init(|| Mutex::new(None));
    let mut guard = mutex.lock().unwrap();

    // If already initialized, return a clone of the Arc
    if let Some(ref ctx) = *guard {
        return Some(Arc::clone(ctx));
    }

    // Try to initialize CUDA
    // Wrap in catch_cuda_panic to handle panics from invalid/stub CUDA libraries
    // without printing the default panic message to stderr
    match catch_cuda_panic(|| CudaContext::new(0)) {
        Ok(Ok(ctx)) => {
            let ctx = Arc::new(ctx);
            *guard = Some(Arc::clone(&ctx));
            Some(ctx)
        }
        Ok(Err(e)) => {
            CUDA_BROKEN.store(true, Ordering::Relaxed);
            eprintln!(
                "[next-plaid] CUDA initialization error: {}. Falling back to CPU. \
                       Set NEXT_PLAID_FORCE_CPU=1 to skip CUDA and silence this warning.",
                e
            );
            None
        }
        Err(_) => {
            CUDA_BROKEN.store(true, Ordering::Relaxed);
            eprintln!("[next-plaid] CUDA library found but missing required symbols (stub or incompatible driver). \
                       Falling back to CPU. Install a full NVIDIA driver or set NEXT_PLAID_FORCE_CPU=1 to silence this warning.");
            None
        }
    }
}

/// Check if CUDA context is already initialized (non-blocking).
pub fn is_initialized() -> bool {
    GLOBAL_CUDA_CONTEXT
        .get()
        .and_then(|m| m.lock().ok())
        .is_some_and(|guard| guard.is_some())
}

/// Check if CUDA has been determined to be broken/unavailable.
/// Once CUDA initialization fails (panic or error), this returns true
/// and all subsequent CUDA operations should fall back to CPU.
/// Call `clear_cuda_broken()` to reset and allow retrying.
pub fn is_cuda_broken() -> bool {
    CUDA_BROKEN.load(Ordering::Relaxed)
}

/// Mark CUDA as broken. This should be called when CUDA initialization
/// panics or fails in any part of the codebase to prevent subsequent
/// calls from retrying.
pub fn mark_cuda_broken() {
    CUDA_BROKEN.store(true, Ordering::Relaxed);
}

/// Clear the CUDA broken flag and reset the cached context, allowing
/// re-initialization on the next call to `get_global_context()`.
///
/// Call this after the user has repaired their CUDA environment
/// (e.g., installed proper drivers) to retry GPU acceleration.
pub fn clear_cuda_broken() {
    CUDA_BROKEN.store(false, Ordering::Relaxed);
    // Clear the cached context so the next call re-attempts initialization
    if let Some(mutex) = GLOBAL_CUDA_CONTEXT.get() {
        if let Ok(mut guard) = mutex.lock() {
            *guard = None;
        }
    }
}

/// CUDA kernels for next-plaid operations
const CUDA_KERNELS: &str = r#"
// Argmax kernel - finds index of maximum value per row.
extern "C" __global__ void argmax_kernel(
    const float* scores,
    unsigned int* codes,
    int num_rows,
    int num_cols
) {
    int idx = blockIdx.x * blockDim.x + threadIdx.x;
    if (idx >= num_rows) return;

    const float* row = scores + (long long)idx * num_cols;
    float best_val = row[0];
    unsigned int best_idx = 0;

    for (int j = 1; j < num_cols; j++) {
        float val = row[j];
        if (val > best_val) {
            best_val = val;
            best_idx = j;
        }
    }

    codes[idx] = best_idx;
}

// Gather-subtract kernel - computes residuals = embeddings - centroids[codes].
// 2D parallelization: blockIdx.x = row, threadIdx.x = dimension offset.
// Each thread handles multiple dimensions with stride.
extern "C" __global__ void gather_subtract_kernel(
    const float* embeddings,
    const float* centroids,
    const unsigned int* codes,
    float* residuals,
    int num_rows,
    int dim
) {
    int row = blockIdx.x;
    int d_start = threadIdx.x;
    int stride = blockDim.x;

    if (row >= num_rows) return;

    unsigned int code = codes[row];
    const float* emb_row = embeddings + (long long)row * dim;
    const float* cent_row = centroids + (long long)code * dim;
    float* res_row = residuals + (long long)row * dim;

    for (int d = d_start; d < dim; d += stride) {
        res_row[d] = emb_row[d] - cent_row[d];
    }
}
"#;

/// Compile and load CUDA kernels, returning the kernel functions.
///
/// Targets the device's actual compute capability to avoid
/// `CUDA_ERROR_UNSUPPORTED_PTX_VERSION` when the NVRTC compiler is newer
/// than the installed driver.
fn load_kernels(device: &Arc<CudarcContext>) -> Result<(CudaFunction, CudaFunction)> {
    let opts = match device.compute_capability() {
        Ok((major, minor)) => CompileOptions {
            options: vec![format!("--gpu-architecture=sm_{}{}", major, minor)],
            ..Default::default()
        },
        Err(_) => CompileOptions::default(),
    };

    let ptx = compile_ptx_with_opts(CUDA_KERNELS, opts)
        .map_err(|e| Error::Codec(format!("Failed to compile CUDA kernels: {:?}", e)))?;

    let module = device
        .load_module(ptx)
        .map_err(|e| Error::Codec(format!("Failed to load CUDA module: {:?}", e)))?;

    let argmax_func = module
        .load_function("argmax_kernel")
        .map_err(|e| Error::Codec(format!("Failed to load argmax_kernel: {:?}", e)))?;

    let gather_subtract_func = module
        .load_function("gather_subtract_kernel")
        .map_err(|e| Error::Codec(format!("Failed to load gather_subtract_kernel: {:?}", e)))?;

    Ok((argmax_func, gather_subtract_func))
}

/// Compute optimal batch size to stay within GPU memory budget.
fn compute_batch_size(n: usize, k: usize, dim: usize, max_gpu_memory: usize) -> usize {
    // Memory per row: embedding (dim*4) + scores (k*4) + code (4)
    let bytes_per_row = dim * 4 + k * 4 + 4;
    let fixed_memory = k * dim * 4; // centroids
    let available = max_gpu_memory.saturating_sub(fixed_memory);
    (available / bytes_per_row).clamp(1, n)
}

/// CUDA-accelerated compress_into_codes with memory-efficient batching.
/// Used internally by ResidualCodec::compress_into_codes when cuda feature is enabled.
pub fn compress_into_codes_cuda_batched(
    ctx: &CudaContext,
    embeddings: &ArrayView2<f32>,
    centroids: &ArrayView2<f32>,
    max_gpu_memory: Option<usize>,
) -> Result<Array1<usize>> {
    let n = embeddings.nrows();
    let k = centroids.nrows();
    let dim = embeddings.ncols();
    let max_mem = max_gpu_memory.unwrap_or(DEFAULT_MAX_GPU_MEMORY);

    if n == 0 {
        return Ok(Array1::zeros(0));
    }

    let batch_size = compute_batch_size(n, k, dim, max_mem);

    // Ensure centroids are contiguous
    let centroids_cont = if centroids.is_standard_layout() {
        centroids.to_owned()
    } else {
        centroids.as_standard_layout().to_owned()
    };

    // Upload centroids once (reused across batches)
    let centroids_gpu: CudaSlice<f32> =
        ctx.stream
            .clone_htod(centroids_cont.as_slice().unwrap())
            .map_err(|e| Error::Codec(format!("Failed to copy centroids to GPU: {:?}", e)))?;

    // Kernels are preloaded in CudaContext::new()

    let mut all_codes = Vec::with_capacity(n);

    for batch_start in (0..n).step_by(batch_size) {
        let batch_end = (batch_start + batch_size).min(n);
        let batch_n = batch_end - batch_start;

        let batch = embeddings.slice(ndarray::s![batch_start..batch_end, ..]);
        let batch_cont = if batch.is_standard_layout() {
            batch.to_owned()
        } else {
            batch.as_standard_layout().to_owned()
        };

        let batch_gpu: CudaSlice<f32> = ctx
            .stream
            .clone_htod(batch_cont.as_slice().unwrap())
            .map_err(|e| Error::Codec(format!("Failed to copy batch to GPU: {:?}", e)))?;

        let mut scores_gpu: CudaSlice<f32> = ctx
            .stream
            .alloc_zeros(batch_n * k)
            .map_err(|e| Error::Codec(format!("Failed to allocate scores: {:?}", e)))?;

        // GEMM: scores = batch @ centroids.T
        let cfg = GemmConfig {
            transa: cublasOperation_t::CUBLAS_OP_T,
            transb: cublasOperation_t::CUBLAS_OP_N,
            m: k as i32,
            n: batch_n as i32,
            k: dim as i32,
            alpha: 1.0f32,
            lda: dim as i32,
            ldb: dim as i32,
            beta: 0.0f32,
            ldc: k as i32,
        };

        unsafe {
            ctx.blas
                .gemm(cfg, &centroids_gpu, &batch_gpu, &mut scores_gpu)
                .map_err(|e| Error::Codec(format!("cuBLAS GEMM failed: {:?}", e)))?;
        }

        let mut codes_gpu: CudaSlice<u32> = ctx
            .stream
            .alloc_zeros(batch_n)
            .map_err(|e| Error::Codec(format!("Failed to allocate codes: {:?}", e)))?;

        let block_size = 256;
        let grid_size = batch_n.div_ceil(block_size);
        let launch_cfg = LaunchConfig {
            block_dim: (block_size as u32, 1, 1),
            grid_dim: (grid_size as u32, 1, 1),
            shared_mem_bytes: 0,
        };
        let batch_n_i32 = batch_n as i32;
        let k_i32 = k as i32;

        unsafe {
            ctx.stream
                .launch_builder(&ctx.argmax_func)
                .arg(&scores_gpu)
                .arg(&mut codes_gpu)
                .arg(&batch_n_i32)
                .arg(&k_i32)
                .launch(launch_cfg)
                .map_err(|e| Error::Codec(format!("Argmax kernel failed: {:?}", e)))?;
        }

        let codes_host: Vec<u32> = ctx
            .stream
            .clone_dtoh(&codes_gpu)
            .map_err(|e| Error::Codec(format!("Failed to copy codes: {:?}", e)))?;

        all_codes.extend(codes_host.into_iter().map(|x| x as usize));
    }

    Ok(Array1::from_vec(all_codes))
}

/// Compute optimal batch size for fused compress+residuals to stay within GPU memory.
fn compute_batch_size_with_residuals(
    n: usize,
    k: usize,
    dim: usize,
    max_gpu_memory: usize,
) -> usize {
    // Memory per row: embedding (dim*4) + scores (k*4) + code (4) + residual (dim*4)
    let bytes_per_row = dim * 4 + k * 4 + 4 + dim * 4;
    let fixed_memory = k * dim * 4; // centroids
    let available = max_gpu_memory.saturating_sub(fixed_memory);
    (available / bytes_per_row).clamp(1, n)
}

/// CUDA-accelerated fused compress_into_codes + residual computation.
///
/// This function computes both centroid codes AND residuals in a single GPU operation,
/// avoiding an extra CPU-GPU roundtrip. Used during indexing for better performance.
///
/// # Arguments
///
/// * `ctx` - CUDA context
/// * `embeddings` - Input embeddings of shape `[N, dim]`
/// * `centroids` - Centroids of shape `[K, dim]`
/// * `max_gpu_memory` - Optional GPU memory limit (defaults to 4GB)
///
/// # Returns
///
/// Tuple of (codes, residuals) where:
/// - codes: Array1<usize> of shape `[N]` with centroid indices
/// - residuals: Array2<f32> of shape `[N, dim]` with residual vectors
pub fn compress_and_residuals_cuda_batched(
    ctx: &CudaContext,
    embeddings: &ArrayView2<f32>,
    centroids: &ArrayView2<f32>,
    max_gpu_memory: Option<usize>,
) -> Result<(Array1<usize>, ndarray::Array2<f32>)> {
    let n = embeddings.nrows();
    let k = centroids.nrows();
    let dim = embeddings.ncols();
    let max_mem = max_gpu_memory.unwrap_or(DEFAULT_MAX_GPU_MEMORY);

    if n == 0 {
        return Ok((Array1::zeros(0), ndarray::Array2::zeros((0, dim))));
    }

    let batch_size = compute_batch_size_with_residuals(n, k, dim, max_mem);

    // Ensure centroids are contiguous
    let centroids_cont = if centroids.is_standard_layout() {
        centroids.to_owned()
    } else {
        centroids.as_standard_layout().to_owned()
    };

    // Upload centroids once (reused across batches)
    let centroids_gpu: CudaSlice<f32> =
        ctx.stream
            .clone_htod(centroids_cont.as_slice().unwrap())
            .map_err(|e| Error::Codec(format!("Failed to copy centroids to GPU: {:?}", e)))?;

    // Kernels are preloaded in CudaContext::new()

    let mut all_codes = Vec::with_capacity(n);
    let mut all_residuals = ndarray::Array2::<f32>::zeros((n, dim));

    for batch_start in (0..n).step_by(batch_size) {
        let batch_end = (batch_start + batch_size).min(n);
        let batch_n = batch_end - batch_start;

        let batch = embeddings.slice(ndarray::s![batch_start..batch_end, ..]);
        let batch_cont = if batch.is_standard_layout() {
            batch.to_owned()
        } else {
            batch.as_standard_layout().to_owned()
        };

        let batch_gpu: CudaSlice<f32> = ctx
            .stream
            .clone_htod(batch_cont.as_slice().unwrap())
            .map_err(|e| Error::Codec(format!("Failed to copy batch to GPU: {:?}", e)))?;

        // Allocate GPU memory for scores and codes
        let mut scores_gpu: CudaSlice<f32> = ctx
            .stream
            .alloc_zeros(batch_n * k)
            .map_err(|e| Error::Codec(format!("Failed to allocate scores: {:?}", e)))?;

        // GEMM: scores = batch @ centroids.T
        let cfg = GemmConfig {
            transa: cublasOperation_t::CUBLAS_OP_T,
            transb: cublasOperation_t::CUBLAS_OP_N,
            m: k as i32,
            n: batch_n as i32,
            k: dim as i32,
            alpha: 1.0f32,
            lda: dim as i32,
            ldb: dim as i32,
            beta: 0.0f32,
            ldc: k as i32,
        };

        unsafe {
            ctx.blas
                .gemm(cfg, &centroids_gpu, &batch_gpu, &mut scores_gpu)
                .map_err(|e| Error::Codec(format!("cuBLAS GEMM failed: {:?}", e)))?;
        }

        // Argmax to get codes
        let mut codes_gpu: CudaSlice<u32> = ctx
            .stream
            .alloc_zeros(batch_n)
            .map_err(|e| Error::Codec(format!("Failed to allocate codes: {:?}", e)))?;

        let block_size = 256;
        let grid_size = batch_n.div_ceil(block_size);
        let argmax_cfg = LaunchConfig {
            block_dim: (block_size as u32, 1, 1),
            grid_dim: (grid_size as u32, 1, 1),
            shared_mem_bytes: 0,
        };
        let batch_n_i32 = batch_n as i32;
        let k_i32 = k as i32;

        unsafe {
            ctx.stream
                .launch_builder(&ctx.argmax_func)
                .arg(&scores_gpu)
                .arg(&mut codes_gpu)
                .arg(&batch_n_i32)
                .arg(&k_i32)
                .launch(argmax_cfg)
                .map_err(|e| Error::Codec(format!("Argmax kernel failed: {:?}", e)))?;
        }

        // Free scores memory - no longer needed
        drop(scores_gpu);

        // Compute residuals: residuals = embeddings - centroids[codes]
        let mut residuals_gpu: CudaSlice<f32> = ctx
            .stream
            .alloc_zeros(batch_n * dim)
            .map_err(|e| Error::Codec(format!("Failed to allocate residuals: {:?}", e)))?;

        // For gather_subtract: one block per row, threads parallelize over dimensions
        let threads_per_row = dim.min(256);
        let gather_cfg = LaunchConfig {
            block_dim: (threads_per_row as u32, 1, 1),
            grid_dim: (batch_n as u32, 1, 1),
            shared_mem_bytes: 0,
        };
        let dim_i32 = dim as i32;

        unsafe {
            ctx.stream
                .launch_builder(&ctx.gather_subtract_func)
                .arg(&batch_gpu)
                .arg(&centroids_gpu)
                .arg(&codes_gpu)
                .arg(&mut residuals_gpu)
                .arg(&batch_n_i32)
                .arg(&dim_i32)
                .launch(gather_cfg)
                .map_err(|e| Error::Codec(format!("Gather-subtract kernel failed: {:?}", e)))?;
        }

        // Copy results back to host
        let codes_host: Vec<u32> = ctx
            .stream
            .clone_dtoh(&codes_gpu)
            .map_err(|e| Error::Codec(format!("Failed to copy codes: {:?}", e)))?;

        let residuals_host: Vec<f32> = ctx
            .stream
            .clone_dtoh(&residuals_gpu)
            .map_err(|e| Error::Codec(format!("Failed to copy residuals: {:?}", e)))?;

        all_codes.extend(codes_host.into_iter().map(|x| x as usize));

        // Copy residuals into output array (batch copy via slice)
        let residuals_slice = all_residuals
            .slice_mut(ndarray::s![batch_start..batch_end, ..])
            .into_slice_memory_order()
            .unwrap();
        residuals_slice.copy_from_slice(&residuals_host);
    }

    Ok((Array1::from_vec(all_codes), all_residuals))
}

#[cfg(test)]
mod tests {
    use super::*;
    use ndarray::Array2;
    use ndarray_rand::rand_distr::Uniform;
    use ndarray_rand::RandomExt;

    #[test]
    fn test_cuda_context() {
        let ctx = CudaContext::new(0);
        assert!(ctx.is_ok(), "Failed to create CUDA context");
    }

    #[test]
    fn test_compress_into_codes_cuda() {
        let ctx = CudaContext::new(0).expect("No CUDA");
        let embeddings = Array2::random((1000, 128), Uniform::new(-1.0f32, 1.0));
        let centroids = Array2::random((64, 128), Uniform::new(-1.0f32, 1.0));

        let codes =
            compress_into_codes_cuda_batched(&ctx, &embeddings.view(), &centroids.view(), None)
                .expect("CUDA failed");

        assert_eq!(codes.len(), 1000);
        for &code in codes.iter() {
            assert!(code < 64);
        }
    }
}