Expand description
Sparse Matrix-Vector Multiplication (SpMV).
Computes y = A * x where A is a sparse matrix in CSR format. This is a fundamental operation for iterative graph algorithms like PageRank.
Structs§
- Spmv
Config - SpMV configuration.
Functions§
- dot
- Compute dot product of two vectors.
- norm2
- Compute L2 norm of a vector.
- normalize
- Normalize vector in-place.
- power_
iteration - Power iteration for dominant eigenvector.
- spmv
- Sequential SpMV: y = A * x.
- spmv_
axpby - SpMV with y = alpha * A * x + beta * y (BLAS-style).
- spmv_
parallel - Parallel SpMV using row-based parallelism.
- spmv_
with_ config - SpMV with configuration.