next-plaid 1.1.2

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
//! 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::{CudaBlas, Gemm, GemmConfig};
use cudarc::driver::{CudaDevice, CudaSlice, LaunchAsync, LaunchConfig};
use ndarray::{Array1, ArrayView2};
use std::sync::{Arc, OnceLock};

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

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

/// Global CUDA context, lazily initialized on first use.
static GLOBAL_CUDA_CONTEXT: OnceLock<Option<CudaContext>> = OnceLock::new();

/// CUDA context holding device and cuBLAS handle.
pub struct CudaContext {
    pub device: Arc<CudaDevice>,
    pub blas: CudaBlas,
}

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 = CudaDevice::new(device_id)
            .map_err(|e| Error::Codec(format!("Failed to initialize CUDA device: {}", e)))?;

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

        // Preload PTX kernels during context creation
        load_kernels(&device)?;

        Ok(Self { device, blas })
    }
}

/// Get the global CUDA context, initializing it if necessary.
/// Returns `None` if CUDA initialization fails (allows graceful fallback to CPU).
pub fn get_global_context() -> Option<&'static CudaContext> {
    GLOBAL_CUDA_CONTEXT
        .get_or_init(|| match CudaContext::new(0) {
            Ok(ctx) => Some(ctx),
            Err(e) => {
                eprintln!("[next-plaid] CUDA init failed: {}, using CPU", e);
                None
            }
        })
        .as_ref()
}

/// Check if CUDA context is already initialized (non-blocking).
pub fn is_initialized() -> bool {
    GLOBAL_CUDA_CONTEXT.get().is_some()
}

/// Argmax kernel - finds index of maximum value per row.
const ARGMAX_KERNEL: &str = r#"
.version 7.0
.target sm_70
.address_size 64

.visible .entry argmax_kernel(
    .param .u64 scores_ptr,
    .param .u64 codes_ptr,
    .param .u32 num_rows,
    .param .u32 num_cols
)
{
    .reg .u32 %r<20>;
    .reg .u64 %rd<10>;
    .reg .f32 %f<5>;
    .reg .pred %p<3>;

    mov.u32 %r0, %ctaid.x;
    mov.u32 %r1, %ntid.x;
    mov.u32 %r2, %tid.x;
    mad.lo.u32 %r3, %r0, %r1, %r2;

    ld.param.u64 %rd0, [scores_ptr];
    ld.param.u64 %rd1, [codes_ptr];
    ld.param.u32 %r4, [num_rows];
    ld.param.u32 %r5, [num_cols];

    setp.ge.u32 %p0, %r3, %r4;
    @%p0 bra END;

    mul.wide.u32 %rd2, %r3, %r5;
    shl.b64 %rd2, %rd2, 2;
    add.u64 %rd3, %rd0, %rd2;

    ld.global.f32 %f0, [%rd3];
    mov.u32 %r6, 0;
    mov.u32 %r7, 1;

LOOP:
    setp.ge.u32 %p1, %r7, %r5;
    @%p1 bra STORE;

    mul.wide.u32 %rd4, %r7, 4;
    add.u64 %rd5, %rd3, %rd4;
    ld.global.f32 %f1, [%rd5];

    setp.gt.f32 %p2, %f1, %f0;
    @%p2 mov.f32 %f0, %f1;
    @%p2 mov.u32 %r6, %r7;

    add.u32 %r7, %r7, 1;
    bra LOOP;

STORE:
    mul.wide.u32 %rd6, %r3, 4;
    add.u64 %rd7, %rd1, %rd6;
    st.global.u32 [%rd7], %r6;

END:
    ret;
}
"#;

/// Gather-subtract kernel - computes residuals = embeddings - centroids[codes].
/// 2D parallelization: blockIdx.x = row, threadIdx.x = dimension offset.
/// Each thread handles multiple dimensions with stride.
const GATHER_SUBTRACT_KERNEL: &str = r#"
.version 7.0
.target sm_70
.address_size 64

.visible .entry gather_subtract_kernel(
    .param .u64 embeddings_ptr,
    .param .u64 centroids_ptr,
    .param .u64 codes_ptr,
    .param .u64 residuals_ptr,
    .param .u32 num_rows,
    .param .u32 dim
)
{
    .reg .u32 %r<20>;
    .reg .u64 %rd<20>;
    .reg .f32 %f<5>;
    .reg .pred %p<3>;

    // row = blockIdx.x (one block per row)
    mov.u32 %r0, %ctaid.x;
    // d_start = threadIdx.x (starting dimension for this thread)
    mov.u32 %r1, %tid.x;
    // stride = blockDim.x
    mov.u32 %r2, %ntid.x;

    // Load parameters
    ld.param.u64 %rd0, [embeddings_ptr];
    ld.param.u64 %rd1, [centroids_ptr];
    ld.param.u64 %rd2, [codes_ptr];
    ld.param.u64 %rd3, [residuals_ptr];
    ld.param.u32 %r4, [num_rows];
    ld.param.u32 %r5, [dim];

    // Bounds check on row
    setp.ge.u32 %p0, %r0, %r4;
    @%p0 bra END;

    // Load code for this row: code = codes[row]
    mul.wide.u32 %rd4, %r0, 4;
    add.u64 %rd5, %rd2, %rd4;
    ld.global.u32 %r6, [%rd5];

    // Calculate base pointers for this row
    mul.wide.u32 %rd6, %r0, %r5;     // row * dim
    shl.b64 %rd6, %rd6, 2;           // * 4 bytes
    add.u64 %rd7, %rd0, %rd6;        // emb_base = embeddings + row * dim * 4

    mul.wide.u32 %rd8, %r6, %r5;     // code * dim
    shl.b64 %rd8, %rd8, 2;
    add.u64 %rd9, %rd1, %rd8;        // cent_base = centroids + code * dim * 4

    add.u64 %rd10, %rd3, %rd6;       // res_base = residuals + row * dim * 4

    // Loop: d = threadIdx.x, d += blockDim.x while d < dim
    mov.u32 %r7, %r1;                // d = d_start

DIM_LOOP:
    setp.ge.u32 %p1, %r7, %r5;
    @%p1 bra END;

    // Compute addresses for dimension d
    mul.wide.u32 %rd11, %r7, 4;
    add.u64 %rd12, %rd7, %rd11;      // &emb[d]
    add.u64 %rd13, %rd9, %rd11;      // &cent[d]
    add.u64 %rd14, %rd10, %rd11;     // &res[d]

    ld.global.f32 %f0, [%rd12];
    ld.global.f32 %f1, [%rd13];
    sub.f32 %f2, %f0, %f1;
    st.global.f32 [%rd14], %f2;

    add.u32 %r7, %r7, %r2;           // d += stride
    bra DIM_LOOP;

END:
    ret;
}
"#;

/// Load PTX kernels into the device.
fn load_kernels(device: &Arc<CudaDevice>) -> Result<()> {
    device
        .load_ptx(
            cudarc::nvrtc::Ptx::from_src(ARGMAX_KERNEL),
            "argmax",
            &["argmax_kernel"],
        )
        .map_err(|e| Error::Codec(format!("Failed to load argmax kernel: {}", e)))?;

    device
        .load_ptx(
            cudarc::nvrtc::Ptx::from_src(GATHER_SUBTRACT_KERNEL),
            "gather_subtract",
            &["gather_subtract_kernel"],
        )
        .map_err(|e| Error::Codec(format!("Failed to load gather_subtract kernel: {}", e)))?;

    Ok(())
}

/// 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 = ctx
        .device
        .htod_sync_copy(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 = ctx
            .device
            .htod_sync_copy(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
            .device
            .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: cudarc::cublas::sys::cublasOperation_t::CUBLAS_OP_T,
            transb: cudarc::cublas::sys::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
            .device
            .alloc_zeros(batch_n)
            .map_err(|e| Error::Codec(format!("Failed to allocate codes: {}", e)))?;

        let func = ctx
            .device
            .get_func("argmax", "argmax_kernel")
            .ok_or_else(|| Error::Codec("Failed to get argmax function".into()))?;

        let block_size = 256;
        let grid_size = batch_n.div_ceil(block_size);

        unsafe {
            func.launch(
                LaunchConfig {
                    block_dim: (block_size as u32, 1, 1),
                    grid_dim: (grid_size as u32, 1, 1),
                    shared_mem_bytes: 0,
                },
                (&scores_gpu, &mut codes_gpu, batch_n as u32, k as u32),
            )
            .map_err(|e| Error::Codec(format!("Argmax kernel failed: {}", e)))?;
        }

        let codes_host = ctx
            .device
            .dtoh_sync_copy(&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 = ctx
        .device
        .htod_sync_copy(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 = ctx
            .device
            .htod_sync_copy(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
            .device
            .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: cudarc::cublas::sys::cublasOperation_t::CUBLAS_OP_T,
            transb: cudarc::cublas::sys::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
            .device
            .alloc_zeros(batch_n)
            .map_err(|e| Error::Codec(format!("Failed to allocate codes: {}", e)))?;

        let argmax_func = ctx
            .device
            .get_func("argmax", "argmax_kernel")
            .ok_or_else(|| Error::Codec("Failed to get argmax function".into()))?;

        let block_size = 256;
        let grid_size = batch_n.div_ceil(block_size);

        unsafe {
            argmax_func
                .launch(
                    LaunchConfig {
                        block_dim: (block_size as u32, 1, 1),
                        grid_dim: (grid_size as u32, 1, 1),
                        shared_mem_bytes: 0,
                    },
                    (&scores_gpu, &mut codes_gpu, batch_n as u32, k as u32),
                )
                .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
            .device
            .alloc_zeros(batch_n * dim)
            .map_err(|e| Error::Codec(format!("Failed to allocate residuals: {}", e)))?;

        let gather_func = ctx
            .device
            .get_func("gather_subtract", "gather_subtract_kernel")
            .ok_or_else(|| Error::Codec("Failed to get gather_subtract function".into()))?;

        // For gather_subtract: one block per row, threads parallelize over dimensions
        let threads_per_row = dim.min(256);
        unsafe {
            gather_func
                .launch(
                    LaunchConfig {
                        block_dim: (threads_per_row as u32, 1, 1),
                        grid_dim: (batch_n as u32, 1, 1),
                        shared_mem_bytes: 0,
                    },
                    (
                        &batch_gpu,
                        &centroids_gpu,
                        &codes_gpu,
                        &mut residuals_gpu,
                        batch_n as u32,
                        dim as u32,
                    ),
                )
                .map_err(|e| Error::Codec(format!("Gather-subtract kernel failed: {}", e)))?;
        }

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

        let residuals_host = ctx
            .device
            .dtoh_sync_copy(&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);
        }
    }
}