Expand description
Parallel implementations of vector operations for iterative solvers
This module provides SIMD and parallel accelerated implementations of common vector operations used in iterative solvers, leveraging scirs2-core infrastructure.
Structs§
- Parallel
Vector Options - Configuration options for parallel vector operations
Functions§
- advanced_
sparse_ matvec_ csr - Advanced-optimized parallel sparse matrix-vector multiplication with adaptive strategies
- parallel_
axpy - Parallel AXPY operation: y = a*x + y
- parallel_
dot - Parallel and SIMD accelerated dot product
- parallel_
linear_ combination - Enhanced parallel linear combination: z = ax + by
- parallel_
norm2 - Parallel and SIMD accelerated 2-norm computation
- parallel_
sparse_ matvec_ csr - Parallel sparse matrix-vector multiplication for CSR format
- parallel_
vector_ add - Parallel vector addition: z = x + y
- parallel_
vector_ copy - Parallel vector copy: y = x
- parallel_
vector_ scale - Parallel vector scaling: y = a*x
- parallel_
vector_ sub - Parallel vector subtraction: z = x - y