pub fn parallel_conjugate_gradient<F>(
matrix: &ArrayView2<'_, F>,
b: &ArrayView1<'_, F>,
max_iter: usize,
tolerance: F,
config: &WorkerConfig,
) -> LinalgResult<Array1<F>>
Expand description
Parallel conjugate gradient solver
Implements parallel conjugate gradient method for solving linear systems with symmetric positive definite matrices.