Trait accurate::traits::ParallelDotAccumulator [] [src]

pub trait ParallelDotAccumulator<F>: DotAccumulator<F> + Add<Self, Output = Self> + Send + Sized {
    fn into_consumer(self) -> DotConsumer<Self> { ... }
}

A DotAccumulator that can be used in parallel computations

Provided Methods

Turns an accumulator into a consumer

Implementors