numr 0.5.2

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Sparse matrix element-wise merge kernel launchers
//!
//! Two-pass algorithm for CSR element-wise operations:
//! 1. Count output size per row
//! 2. Exclusive scan to get row_ptrs
//! 3. Compute merged output

mod csc;
mod csr;
mod generic;
mod helpers;

pub use csc::*;
pub use csr::*;
pub use generic::*;