pub fn parallel_svd<F>(
matrix: &ArrayView2<'_, F>,
config: &WorkerConfig,
) -> LinalgResult<(Array2<F>, Array1<F>, Array2<F>)>
Expand description
Parallel SVD decomposition
Implements parallel Singular Value Decomposition using a block-based approach for improved performance on large matrices.