gpu_sparse_matvec

Function gpu_sparse_matvec 

Source
pub fn gpu_sparse_matvec<T>(
    matrix: &CsrArray<T>,
    vector: &ArrayView1<'_, T>,
    backend: Option<GpuBackend>,
) -> SparseResult<Array1<T>>
where T: Float + Debug + Copy + GpuDataType + Sum,
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.