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§
Sourcefn evaluate_parallel(
&self,
points: &ArrayView2<'_, F>,
config: &ParallelConfig,
) -> InterpolateResult<O>
fn evaluate_parallel( &self, points: &ArrayView2<'_, F>, config: &ParallelConfig, ) -> InterpolateResult<O>
Evaluate at multiple points in parallel