parallel_conjugate_gradient

Function parallel_conjugate_gradient 

Source
pub fn parallel_conjugate_gradient<F>(
    matrix: &ArrayView2<'_, F>,
    b: &ArrayView1<'_, F>,
    max_iter: usize,
    tolerance: F,
    config: &WorkerConfig,
) -> LinalgResult<Array1<F>>
where F: Float + Send + Sync + Zero + Sum + One + NumAssign + ScalarOperand + 'static,
Expand description

Parallel conjugate gradient solver

Implements parallel conjugate gradient method for solving linear systems with symmetric positive definite matrices.