ParallelEvaluate

Trait ParallelEvaluate 

Source
pub trait ParallelEvaluate<F: Float, O> {
    // Required method
    fn evaluate_parallel(
        &self,
        points: &ArrayView2<'_, F>,
        config: &ParallelConfig,
    ) -> InterpolateResult<O>;
}
Expand description

Trait for types that support parallel evaluation

Required Methods§

Source

fn evaluate_parallel( &self, points: &ArrayView2<'_, F>, config: &ParallelConfig, ) -> InterpolateResult<O>

Evaluate at multiple points in parallel

Implementors§