innr 0.3.0

SIMD-accelerated vector similarity primitives with binary, ternary, and scalar quantization
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
//! Sparse vector operations.
//!
//! Sparse vectors are represented as parallel arrays of sorted indices and values.
//! The merge-join algorithm computes dot products in O(|a| + |b|) time.
//!
//! # References
//!
//! - Formal et al. (2021, SIGIR), "SPLADE: Sparse Lexical and Expansion Model" --
//!   foundational reference for learned sparse representations; produces the sorted-index
//!   sparse vectors this module operates on
//! - Li et al. (2025), "SINDI: An Efficient Index for Approximate MIPS on Sparse Vectors"
//!   -- validates sparse dot as a key primitive for production RAG systems

/// Sparse dot product for sorted index arrays.
///
/// Computes the inner product of two sparse vectors represented as
/// (indices, values) pairs. Indices must be sorted in ascending order.
///
/// # Algorithm
///
/// Uses merge-join: two pointers advance through sorted indices,
/// accumulating products when indices match. Time complexity O(|a| + |b|).
///
/// # Arguments
///
/// * `a_indices` - Sorted indices for vector a
/// * `a_values` - Values corresponding to a_indices
/// * `b_indices` - Sorted indices for vector b
/// * `b_values` - Values corresponding to b_indices
///
/// # Example
///
/// ```rust
/// use innr::sparse_dot;
///
/// // Sparse vectors: a = [1.0 at index 0, 2.0 at index 2]
/// //                 b = [3.0 at index 0, 4.0 at index 3]
/// // dot(a, b) = 1.0 * 3.0 = 3.0 (only index 0 overlaps)
/// let a_idx = [0u32, 2];
/// let a_val = [1.0f32, 2.0];
/// let b_idx = [0u32, 3];
/// let b_val = [3.0f32, 4.0];
///
/// let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
/// assert!((result - 3.0).abs() < 1e-6);
/// ```
#[inline]
#[must_use]
#[allow(unsafe_code)]
pub fn sparse_dot(a_indices: &[u32], a_values: &[f32], b_indices: &[u32], b_values: &[f32]) -> f32 {
    assert_eq!(
        a_indices.len(),
        a_values.len(),
        "sparse_dot: a indices/values length mismatch"
    );
    assert_eq!(
        b_indices.len(),
        b_values.len(),
        "sparse_dot: b indices/values length mismatch"
    );

    sparse_dot_portable(a_indices, a_values, b_indices, b_values)
}

/// Portable sparse dot product (merge-join algorithm).
///
/// Time complexity: O(|a| + |b|)
/// Space complexity: O(1)
#[inline]
#[must_use]
pub fn sparse_dot_portable(
    a_indices: &[u32],
    a_values: &[f32],
    b_indices: &[u32],
    b_values: &[f32],
) -> f32 {
    let mut i = 0;
    let mut j = 0;
    let mut result = 0.0;

    // Merge-join: advance pointers based on index comparison
    while i < a_indices.len() && j < b_indices.len() {
        match a_indices[i].cmp(&b_indices[j]) {
            std::cmp::Ordering::Less => i += 1,
            std::cmp::Ordering::Greater => j += 1,
            std::cmp::Ordering::Equal => {
                result += a_values[i] * b_values[j];
                i += 1;
                j += 1;
            }
        }
    }

    result
}

/// Sparse MaxSim (SPLADE-style) scoring.
///
/// Computes `Σᵢ max(w_q[i] * w_d[i])` or similar aggregation for sparse vectors.
///
/// For SPLADE, the score is typically just dot product of expanded vectors.
/// But for "Sparse ColBERT" (late interaction over sparse vectors), we need maxsim.
///
/// # Assumptions
///
/// Designed for SPLADE-style vectors with non-negative weights (ReLU output).
/// If values can be negative and a query token has zero overlap with all doc
/// tokens, its contribution will be 0.0 (from `sparse_dot` returning 0.0 for
/// disjoint indices), which is correct. However, if all overlapping dot products
/// are negative, the max will be the least-negative value.
///
/// # Arguments
/// * `query_tokens` - List of sparse vectors for query tokens
/// * `doc_tokens` - List of sparse vectors for doc tokens
///
/// # Returns
/// Sum of max similarities.
#[must_use]
pub fn sparse_maxsim(query_tokens: &[(&[u32], &[f32])], doc_tokens: &[(&[u32], &[f32])]) -> f32 {
    if query_tokens.is_empty() || doc_tokens.is_empty() {
        return 0.0;
    }

    query_tokens
        .iter()
        .map(|(q_idx, q_val)| {
            doc_tokens
                .iter()
                .map(|(d_idx, d_val)| sparse_dot(q_idx, q_val, d_idx, d_val))
                .fold(f32::NEG_INFINITY, f32::max)
        })
        .sum()
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_sparse_dot_no_overlap() {
        let a_idx = [0u32, 2, 4];
        let a_val = [1.0f32, 2.0, 3.0];
        let b_idx = [1u32, 3, 5];
        let b_val = [4.0f32, 5.0, 6.0];

        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert_eq!(result, 0.0);
    }

    #[test]
    fn test_sparse_dot_full_overlap() {
        let a_idx = [0u32, 1, 2];
        let a_val = [1.0f32, 2.0, 3.0];
        let b_idx = [0u32, 1, 2];
        let b_val = [4.0f32, 5.0, 6.0];

        // dot = 1*4 + 2*5 + 3*6 = 4 + 10 + 18 = 32
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - 32.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_dot_partial_overlap() {
        let a_idx = [0u32, 2, 4];
        let a_val = [1.0f32, 2.0, 3.0];
        let b_idx = [1u32, 2, 3];
        let b_val = [4.0f32, 5.0, 6.0];

        // Only index 2 overlaps: 2*5 = 10
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - 10.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_dot_empty() {
        let empty_idx: [u32; 0] = [];
        let empty_val: [f32; 0] = [];
        let a_idx = [0u32, 1];
        let a_val = [1.0f32, 2.0];

        assert_eq!(sparse_dot(&empty_idx, &empty_val, &a_idx, &a_val), 0.0);
        assert_eq!(sparse_dot(&a_idx, &a_val, &empty_idx, &empty_val), 0.0);
    }

    #[test]
    fn test_sparse_dot_different_lengths() {
        let a_idx = [0u32, 1, 2, 3, 4];
        let a_val = [1.0f32, 2.0, 3.0, 4.0, 5.0];
        let b_idx = [2u32];
        let b_val = [10.0f32];

        // Only index 2 overlaps: 3*10 = 30
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - 30.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_maxsim_basic() {
        // Query: 2 tokens, Doc: 2 tokens
        let q1_idx = [0u32, 1];
        let q1_val = [1.0f32, 2.0];
        let q2_idx = [2u32, 3];
        let q2_val = [3.0f32, 4.0];

        let d1_idx = [0u32, 2];
        let d1_val = [0.5f32, 1.5];
        let d2_idx = [1u32, 3];
        let d2_val = [2.5f32, 3.5];

        let query = vec![(&q1_idx[..], &q1_val[..]), (&q2_idx[..], &q2_val[..])];
        let doc = vec![(&d1_idx[..], &d1_val[..]), (&d2_idx[..], &d2_val[..])];

        let result = sparse_maxsim(&query, &doc);

        // q1 vs d1: 1.0*0.5 = 0.5, q1 vs d2: 2.0*2.5 = 5.0 -> max = 5.0
        // q2 vs d1: 3.0*1.5 = 4.5, q2 vs d2: 4.0*3.5 = 14.0 -> max = 14.0
        // sum = 5.0 + 14.0 = 19.0
        assert!((result - 19.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_maxsim_empty_query() {
        let doc: Vec<(&[u32], &[f32])> = vec![(&[0u32][..], &[1.0f32][..])];
        let query: Vec<(&[u32], &[f32])> = vec![];
        assert_eq!(sparse_maxsim(&query, &doc), 0.0);
    }

    #[test]
    fn test_sparse_maxsim_empty_doc() {
        let query: Vec<(&[u32], &[f32])> = vec![(&[0u32][..], &[1.0f32][..])];
        let doc: Vec<(&[u32], &[f32])> = vec![];
        assert_eq!(sparse_maxsim(&query, &doc), 0.0);
    }

    // --- Additional coverage ---

    #[test]
    fn test_sparse_dot_single_element_overlap() {
        let a_idx = [42u32];
        let a_val = [7.0f32];
        let b_idx = [42u32];
        let b_val = [3.0f32];
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - 21.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_dot_single_element_no_overlap() {
        let a_idx = [10u32];
        let a_val = [5.0f32];
        let b_idx = [20u32];
        let b_val = [5.0f32];
        assert_eq!(sparse_dot(&a_idx, &a_val, &b_idx, &b_val), 0.0);
    }

    #[test]
    fn test_sparse_dot_large_index_values() {
        // Indices near u32::MAX to test that the merge-join handles large values.
        let a_idx = [0u32, 1_000_000, u32::MAX - 1];
        let a_val = [1.0f32, 2.0, 3.0];
        let b_idx = [500_000u32, 1_000_000, u32::MAX - 1];
        let b_val = [9.0f32, 4.0, 5.0];
        // Overlap at 1_000_000 (2*4=8) and u32::MAX-1 (3*5=15) => 23
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - 23.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_dot_both_empty() {
        let empty_idx: [u32; 0] = [];
        let empty_val: [f32; 0] = [];
        assert_eq!(
            sparse_dot(&empty_idx, &empty_val, &empty_idx, &empty_val),
            0.0
        );
    }

    #[test]
    fn test_sparse_dot_negative_values() {
        let a_idx = [0u32, 1, 2];
        let a_val = [-1.0f32, 2.0, -3.0];
        let b_idx = [0u32, 1, 2];
        let b_val = [4.0f32, -5.0, 6.0];
        // (-1*4) + (2*-5) + (-3*6) = -4 + -10 + -18 = -32
        let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        assert!((result - (-32.0)).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_dot_portable_matches_dispatch() {
        let a_idx = [0u32, 3, 7, 15];
        let a_val = [1.5f32, 2.5, 3.5, 4.5];
        let b_idx = [3u32, 7, 20];
        let b_val = [0.5f32, 1.0, 2.0];
        // Overlap at 3 (2.5*0.5=1.25) and 7 (3.5*1.0=3.5) => 4.75
        let dispatched = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
        let portable = sparse_dot_portable(&a_idx, &a_val, &b_idx, &b_val);
        assert!((dispatched - portable).abs() < 1e-6);
        assert!((portable - 4.75).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_maxsim_single_token_each() {
        // One query token, one doc token with overlapping indices.
        let q_idx = [0u32, 5];
        let q_val = [1.0f32, 2.0];
        let d_idx = [5u32, 10];
        let d_val = [3.0f32, 4.0];

        let query = vec![(&q_idx[..], &q_val[..])];
        let doc = vec![(&d_idx[..], &d_val[..])];

        // Only overlap at 5: 2.0 * 3.0 = 6.0
        let result = sparse_maxsim(&query, &doc);
        assert!((result - 6.0).abs() < 1e-6);
    }

    #[test]
    fn test_sparse_maxsim_no_overlap_returns_zero_per_query() {
        // All query-doc pairs are disjoint => each max is 0, sum is 0.
        let q_idx = [0u32, 1];
        let q_val = [1.0f32, 1.0];
        let d_idx = [100u32, 200];
        let d_val = [1.0f32, 1.0];

        let query = vec![(&q_idx[..], &q_val[..])];
        let doc = vec![(&d_idx[..], &d_val[..])];

        let result = sparse_maxsim(&query, &doc);
        assert_eq!(result, 0.0);
    }
}

#[cfg(test)]
mod proptests {
    use super::*;
    use proptest::prelude::*;

    /// Generate a sorted sparse vector with bounded values to avoid overflow.
    /// Values are in [-1000, 1000] to prevent multiplication overflow.
    fn arb_sparse_vec_bounded(
        max_len: usize,
        max_idx: u32,
    ) -> impl Strategy<Value = (Vec<u32>, Vec<f32>)> {
        prop::collection::vec(0..max_idx, 0..=max_len).prop_flat_map(move |mut indices| {
            // Sort and dedup to get unique sorted indices
            indices.sort_unstable();
            indices.dedup();
            let n = indices.len();
            // Use bounded floats to avoid overflow
            prop::collection::vec(-1000.0f32..1000.0f32, n)
                .prop_map(move |values| (indices.clone(), values))
        })
    }

    proptest! {
        /// Sparse dot is commutative: dot(a, b) == dot(b, a)
        #[test]
        fn sparse_dot_commutative(
            (a_idx, a_val) in arb_sparse_vec_bounded(20, 1000),
            (b_idx, b_val) in arb_sparse_vec_bounded(20, 1000)
        ) {
            let ab = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
            let ba = sparse_dot(&b_idx, &b_val, &a_idx, &a_val);

            // Commutative within tolerance, or both overflow in same direction
            let is_equal = (ab - ba).abs() < 1e-3 * ab.abs().max(ba.abs()).max(1.0);
            let both_inf = ab.is_infinite() && ba.is_infinite() && ab.signum() == ba.signum();
            let both_nan = ab.is_nan() && ba.is_nan();
            prop_assert!(is_equal || both_inf || both_nan,
                "ab={}, ba={}", ab, ba);
        }

        /// Sparse dot with self equals sum of squared values.
        #[test]
        fn sparse_dot_self_is_norm_squared(
            (idx, val) in arb_sparse_vec_bounded(50, 10000)
        ) {
            let result = sparse_dot(&idx, &val, &idx, &val);
            let expected: f32 = val.iter().map(|v| v * v).sum();

            // Allow for floating-point error proportional to magnitude
            let tolerance = 1e-4 * expected.abs().max(1.0);
            prop_assert!(
                (result - expected).abs() < tolerance,
                "result={}, expected={}, tolerance={}",
                result,
                expected,
                tolerance
            );
        }

        /// Sparse dot result is finite when inputs are bounded.
        #[test]
        fn sparse_dot_finite_result(
            (a_idx, a_val) in arb_sparse_vec_bounded(20, 1000),
            (b_idx, b_val) in arb_sparse_vec_bounded(20, 1000)
        ) {
            let result = sparse_dot(&a_idx, &a_val, &b_idx, &b_val);
            // With bounded inputs, result should be finite
            prop_assert!(result.is_finite(), "result was not finite: {}", result);
        }

        /// Sparse dot with disjoint indices is zero.
        #[test]
        fn sparse_dot_disjoint_is_zero(
            (idx, val) in arb_sparse_vec_bounded(20, 500)
        ) {
            // Shift b's indices by max(a) + 1 to ensure disjoint
            let shift = idx.iter().max().copied().unwrap_or(0) + 1;
            let b_idx: Vec<u32> = idx.iter().map(|i| i + shift).collect();

            let result = sparse_dot(&idx, &val, &b_idx, &val);
            prop_assert_eq!(result, 0.0);
        }

        /// Sparse maxsim is non-negative when all values are positive.
        #[test]
        fn sparse_maxsim_nonnegative_for_positive_values(
            n_query in 1usize..5,
            n_doc in 1usize..5
        ) {
            // Generate positive-only values
            let mut query_tokens = Vec::new();
            let mut doc_tokens = Vec::new();

            for i in 0..n_query {
                query_tokens.push((vec![i as u32], vec![1.0f32]));
            }
            for i in 0..n_doc {
                doc_tokens.push((vec![i as u32], vec![1.0f32]));
            }

            let query: Vec<(&[u32], &[f32])> = query_tokens
                .iter()
                .map(|(idx, val)| (idx.as_slice(), val.as_slice()))
                .collect();
            let doc: Vec<(&[u32], &[f32])> = doc_tokens
                .iter()
                .map(|(idx, val)| (idx.as_slice(), val.as_slice()))
                .collect();

            let result = sparse_maxsim(&query, &doc);
            prop_assert!(result >= 0.0, "sparse_maxsim should be non-negative for positive values");
        }
    }
}