parallel_lu

Function parallel_lu 

Source
pub fn parallel_lu<F>(
    matrix: &ArrayView2<'_, F>,
    config: &WorkerConfig,
) -> LinalgResult<(Array2<F>, Array2<F>, Array2<F>)>
where F: Float + Send + Sync + Zero + Sum + One + NumAssign + ScalarOperand + 'static,
Expand description

Parallel LU decomposition with partial pivoting

Implements parallel LU decomposition using block-column approach.