pub fn gpu_sparse_matvec<T>(
matrix: &CsrArray<T>,
vector: &ArrayView1<'_, T>,
backend: Option<GpuBackend>,
) -> SparseResult<Array1<T>>
Expand description
GPU sparse matrix-vector multiplication (legacy interface)
This function provides backward compatibility with the original API.
For new code, consider using the unified GpuSpMatVec
interface.