scirs2-sparse 0.4.2

Sparse matrix module for SciRS2 (scirs2-sparse)
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
//! Coordinate (COO) matrix format
//!
//! This module provides the COO matrix format implementation, which is
//! efficient for incremental matrix construction.

use crate::error::{SparseError, SparseResult};
use scirs2_core::numeric::{SparseElement, Zero};
use std::cmp::PartialEq;

/// Coordinate (COO) matrix
///
/// A sparse matrix format that stores triplets (row, column, value),
/// making it efficient for construction and modification.
pub struct CooMatrix<T> {
    /// Number of rows
    rows: usize,
    /// Number of columns
    cols: usize,
    /// Row indices
    row_indices: Vec<usize>,
    /// Column indices
    col_indices: Vec<usize>,
    /// Data values
    data: Vec<T>,
}

impl<T> CooMatrix<T>
where
    T: Clone + Copy + Zero + PartialEq + SparseElement,
{
    /// Get the triplets (row indices, column indices, data)
    pub fn get_triplets(&self) -> (Vec<usize>, Vec<usize>, Vec<T>) {
        (
            self.row_indices.clone(),
            self.col_indices.clone(),
            self.data.clone(),
        )
    }
    /// Create a new COO matrix from raw data
    ///
    /// # Arguments
    ///
    /// * `data` - Vector of non-zero values
    /// * `row_indices` - Vector of row indices for each non-zero value
    /// * `col_indices` - Vector of column indices for each non-zero value
    /// * `shape` - Tuple containing the matrix dimensions (rows, cols)
    ///
    /// # Returns
    ///
    /// * A new COO matrix
    ///
    /// # Examples
    ///
    /// ```
    /// use scirs2_sparse::coo::CooMatrix;
    ///
    /// // Create a 3x3 sparse matrix with 5 non-zero elements
    /// let rows = vec![0, 0, 1, 2, 2];
    /// let cols = vec![0, 2, 2, 0, 1];
    /// let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
    /// let shape = (3, 3);
    ///
    /// let matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");
    /// ```
    pub fn new(
        data: Vec<T>,
        row_indices: Vec<usize>,
        col_indices: Vec<usize>,
        shape: (usize, usize),
    ) -> SparseResult<Self> {
        // Validate input data
        if data.len() != row_indices.len() || data.len() != col_indices.len() {
            return Err(SparseError::DimensionMismatch {
                expected: data.len(),
                found: std::cmp::min(row_indices.len(), col_indices.len()),
            });
        }

        let (rows, cols) = shape;

        // Check _indices are within bounds
        if row_indices.iter().any(|&i| i >= rows) {
            return Err(SparseError::ValueError(
                "Row index out of bounds".to_string(),
            ));
        }

        if col_indices.iter().any(|&i| i >= cols) {
            return Err(SparseError::ValueError(
                "Column index out of bounds".to_string(),
            ));
        }

        Ok(CooMatrix {
            rows,
            cols,
            row_indices,
            col_indices,
            data,
        })
    }

    /// Create a new empty COO matrix
    ///
    /// # Arguments
    ///
    /// * `shape` - Tuple containing the matrix dimensions (rows, cols)
    ///
    /// # Returns
    ///
    /// * A new empty COO matrix
    pub fn empty(shape: (usize, usize)) -> Self {
        let (rows, cols) = shape;

        CooMatrix {
            rows,
            cols,
            row_indices: Vec::new(),
            col_indices: Vec::new(),
            data: Vec::new(),
        }
    }

    /// Add a value to the matrix at the specified position
    ///
    /// # Arguments
    ///
    /// * `row` - Row index
    /// * `col` - Column index
    /// * `value` - Value to add
    ///
    /// # Returns
    ///
    /// * Ok(()) if successful, Error otherwise
    pub fn add_element(&mut self, row: usize, col: usize, value: T) -> SparseResult<()> {
        if row >= self.rows || col >= self.cols {
            return Err(SparseError::ValueError(
                "Row or column index out of bounds".to_string(),
            ));
        }

        self.row_indices.push(row);
        self.col_indices.push(col);
        self.data.push(value);

        Ok(())
    }

    /// Get the number of rows in the matrix
    pub fn rows(&self) -> usize {
        self.rows
    }

    /// Get the number of columns in the matrix
    pub fn cols(&self) -> usize {
        self.cols
    }

    /// Get the shape (dimensions) of the matrix
    pub fn shape(&self) -> (usize, usize) {
        (self.rows, self.cols)
    }

    /// Get the number of non-zero elements in the matrix
    pub fn nnz(&self) -> usize {
        self.data.len()
    }

    /// Get the row indices array
    pub fn row_indices(&self) -> &[usize] {
        &self.row_indices
    }

    /// Get the column indices array
    pub fn col_indices(&self) -> &[usize] {
        &self.col_indices
    }

    /// Get the data array
    pub fn data(&self) -> &[T] {
        &self.data
    }

    /// Convert to dense matrix (as `Vec<Vec<T>>`)
    pub fn to_dense(&self) -> Vec<Vec<T>>
    where
        T: Zero + Copy + SparseElement,
    {
        let mut result = vec![vec![T::sparse_zero(); self.cols]; self.rows];

        for i in 0..self.data.len() {
            let row = self.row_indices[i];
            let col = self.col_indices[i];
            result[row][col] = self.data[i];
        }

        result
    }

    /// Convert to CSR format
    pub fn to_csr(&self) -> crate::csr::CsrMatrix<T> {
        crate::csr::CsrMatrix::new(
            self.data.clone(),
            self.row_indices.clone(),
            self.col_indices.clone(),
            (self.rows, self.cols),
        )
        .expect("Operation failed")
    }

    /// Convert to CSC format
    pub fn to_csc(&self) -> crate::csc::CscMatrix<T> {
        crate::csc::CscMatrix::new(
            self.data.clone(),
            self.row_indices.clone(),
            self.col_indices.clone(),
            (self.rows, self.cols),
        )
        .expect("Operation failed")
    }

    /// Transpose the matrix
    pub fn transpose(&self) -> Self {
        let mut transposed_data = Vec::with_capacity(self.data.len());
        let mut transposed_row_indices = Vec::with_capacity(self.row_indices.len());
        let mut transposed_col_indices = Vec::with_capacity(self.col_indices.len());

        for i in 0..self.data.len() {
            transposed_data.push(self.data[i]);
            transposed_row_indices.push(self.col_indices[i]);
            transposed_col_indices.push(self.row_indices[i]);
        }

        CooMatrix {
            rows: self.cols,
            cols: self.rows,
            row_indices: transposed_row_indices,
            col_indices: transposed_col_indices,
            data: transposed_data,
        }
    }

    /// Sort the matrix elements by row, then column
    pub fn sort_by_row_col(&mut self) {
        let mut indices: Vec<usize> = (0..self.data.len()).collect();
        indices.sort_by_key(|&i| (self.row_indices[i], self.col_indices[i]));

        let row_indices = self.row_indices.clone();
        let col_indices = self.col_indices.clone();
        let data = self.data.clone();

        for (i, &idx) in indices.iter().enumerate() {
            self.row_indices[i] = row_indices[idx];
            self.col_indices[i] = col_indices[idx];
            self.data[i] = data[idx];
        }
    }

    /// Sort the matrix elements by column, then row
    pub fn sort_by_col_row(&mut self) {
        let mut indices: Vec<usize> = (0..self.data.len()).collect();
        indices.sort_by_key(|&i| (self.col_indices[i], self.row_indices[i]));

        let row_indices = self.row_indices.clone();
        let col_indices = self.col_indices.clone();
        let data = self.data.clone();

        for (i, &idx) in indices.iter().enumerate() {
            self.row_indices[i] = row_indices[idx];
            self.col_indices[i] = col_indices[idx];
            self.data[i] = data[idx];
        }
    }

    /// Get the value at the specified position
    pub fn get(&self, row: usize, col: usize) -> T
    where
        T: Zero + SparseElement,
    {
        for i in 0..self.data.len() {
            if self.row_indices[i] == row && self.col_indices[i] == col {
                return self.data[i];
            }
        }
        T::sparse_zero()
    }

    /// Sum duplicate entries (elements with the same row and column indices)
    pub fn sum_duplicates(&mut self)
    where
        T: std::ops::Add<Output = T>,
    {
        if self.data.is_empty() {
            return;
        }

        // Sort by row and column
        self.sort_by_row_col();

        let mut unique_row_indices = Vec::new();
        let mut unique_col_indices = Vec::new();
        let mut unique_data = Vec::new();

        let mut current_row = self.row_indices[0];
        let mut current_col = self.col_indices[0];
        let mut current_val = self.data[0];

        for i in 1..self.data.len() {
            if self.row_indices[i] == current_row && self.col_indices[i] == current_col {
                // Same position, add values
                current_val = current_val + self.data[i];
            } else {
                // New position, store the previous one
                unique_row_indices.push(current_row);
                unique_col_indices.push(current_col);
                unique_data.push(current_val);

                // Update current position
                current_row = self.row_indices[i];
                current_col = self.col_indices[i];
                current_val = self.data[i];
            }
        }

        // Add the last element
        unique_row_indices.push(current_row);
        unique_col_indices.push(current_col);
        unique_data.push(current_val);

        // Update the matrix
        self.row_indices = unique_row_indices;
        self.col_indices = unique_col_indices;
        self.data = unique_data;
    }
}

impl CooMatrix<f64> {
    /// Matrix-vector multiplication
    ///
    /// # Arguments
    ///
    /// * `vec` - Vector to multiply with
    ///
    /// # Returns
    ///
    /// * Result of matrix-vector multiplication
    pub fn dot(&self, vec: &[f64]) -> SparseResult<Vec<f64>> {
        if vec.len() != self.cols {
            return Err(SparseError::DimensionMismatch {
                expected: self.cols,
                found: vec.len(),
            });
        }

        let mut result = vec![0.0; self.rows];

        for i in 0..self.data.len() {
            let row = self.row_indices[i];
            let col = self.col_indices[i];
            result[row] += self.data[i] * vec[col];
        }

        Ok(result)
    }
}

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

    #[test]
    fn test_coo_create() {
        // Create a 3x3 sparse matrix with 5 non-zero elements
        let rows = vec![0, 0, 1, 2, 2];
        let cols = vec![0, 2, 2, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let shape = (3, 3);

        let matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");

        assert_eq!(matrix.shape(), (3, 3));
        assert_eq!(matrix.nnz(), 5);
    }

    #[test]
    fn test_coo_add_element() {
        // Create an empty matrix
        let mut matrix = CooMatrix::<f64>::empty((3, 3));

        // Add elements
        matrix.add_element(0, 0, 1.0).expect("Operation failed");
        matrix.add_element(0, 2, 2.0).expect("Operation failed");
        matrix.add_element(1, 2, 3.0).expect("Operation failed");
        matrix.add_element(2, 0, 4.0).expect("Operation failed");
        matrix.add_element(2, 1, 5.0).expect("Operation failed");

        assert_eq!(matrix.nnz(), 5);

        // Adding element out of bounds should fail
        assert!(matrix.add_element(3, 0, 6.0).is_err());
        assert!(matrix.add_element(0, 3, 6.0).is_err());
    }

    #[test]
    fn test_coo_to_dense() {
        // Create a 3x3 sparse matrix with 5 non-zero elements
        let rows = vec![0, 0, 1, 2, 2];
        let cols = vec![0, 2, 2, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let shape = (3, 3);

        let matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");
        let dense = matrix.to_dense();

        let expected = vec![
            vec![1.0, 0.0, 2.0],
            vec![0.0, 0.0, 3.0],
            vec![4.0, 5.0, 0.0],
        ];

        assert_eq!(dense, expected);
    }

    #[test]
    fn test_coo_dot() {
        // Create a 3x3 sparse matrix with 5 non-zero elements
        let rows = vec![0, 0, 1, 2, 2];
        let cols = vec![0, 2, 2, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let shape = (3, 3);

        let matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");

        // Matrix:
        // [1 0 2]
        // [0 0 3]
        // [4 5 0]

        let vec = vec![1.0, 2.0, 3.0];
        let result = matrix.dot(&vec).expect("Operation failed");

        // Expected:
        // 1*1 + 0*2 + 2*3 = 7
        // 0*1 + 0*2 + 3*3 = 9
        // 4*1 + 5*2 + 0*3 = 14
        let expected = [7.0, 9.0, 14.0];

        assert_eq!(result.len(), expected.len());
        for (a, b) in result.iter().zip(expected.iter()) {
            assert_relative_eq!(a, b, epsilon = 1e-10);
        }
    }

    #[test]
    fn test_coo_transpose() {
        // Create a 3x3 sparse matrix with 5 non-zero elements
        let rows = vec![0, 0, 1, 2, 2];
        let cols = vec![0, 2, 2, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let shape = (3, 3);

        let matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");
        let transposed = matrix.transpose();

        assert_eq!(transposed.shape(), (3, 3));
        assert_eq!(transposed.nnz(), 5);

        let dense = transposed.to_dense();
        let expected = vec![
            vec![1.0, 0.0, 4.0],
            vec![0.0, 0.0, 5.0],
            vec![2.0, 3.0, 0.0],
        ];

        assert_eq!(dense, expected);
    }

    #[test]
    fn test_coo_sort_and_sum_duplicates() {
        // Create a matrix with duplicate entries
        let rows = vec![0, 0, 0, 1, 1, 2];
        let cols = vec![0, 0, 1, 0, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0];
        let shape = (3, 2);

        let mut matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");
        matrix.sum_duplicates();

        assert_eq!(matrix.nnz(), 4); // Should have 4 unique entries after summing

        let dense = matrix.to_dense();
        let expected = vec![vec![3.0, 3.0], vec![9.0, 0.0], vec![0.0, 6.0]];

        assert_eq!(dense, expected);
    }

    #[test]
    fn test_coo_to_csr_to_csc() {
        // Create a 3x3 sparse matrix with 5 non-zero elements
        let rows = vec![0, 0, 1, 2, 2];
        let cols = vec![0, 2, 2, 0, 1];
        let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
        let shape = (3, 3);

        let coo_matrix = CooMatrix::new(data, rows, cols, shape).expect("Operation failed");

        // Convert to CSR and CSC
        let csr_matrix = coo_matrix.to_csr();
        let csc_matrix = coo_matrix.to_csc();

        // Convert back to dense and compare
        let dense_from_coo = coo_matrix.to_dense();
        let dense_from_csr = csr_matrix.to_dense();
        let dense_from_csc = csc_matrix.to_dense();

        assert_eq!(dense_from_coo, dense_from_csr);
        assert_eq!(dense_from_coo, dense_from_csc);
    }
}