[go: up one dir, main page]

[][src]Struct accurate::dot::DotK

pub struct DotK<F, R> { /* fields omitted */ }

Calculates a dot product using both product transformation and cascaded accumulators

See also Dot2... Dot9.

References

Based on Ogita, Rump and Oishi 05

Trait Implementations

impl<F, R> Add<(F, F)> for DotK<F, R> where
    F: TwoProduct + TwoSum,
    R: SumAccumulator<F>, 
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F, R> Add<DotK<F, R>> for DotK<F, R> where
    F: Float + TwoSum,
    R: SumAccumulator<F>,
    R::Output: Add<R, Output = R>, 
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F: Clone, R: Clone> Clone for DotK<F, R>[src]

impl<F: Copy, R: Copy> Copy for DotK<F, R>[src]

impl<F: Debug, R: Debug> Debug for DotK<F, R>[src]

impl<F, R> DotAccumulator<F> for DotK<F, R> where
    F: Float + TwoProduct + TwoSum,
    R: SumAccumulator<F>, 
[src]

impl<F, R> From<F> for DotK<F, R> where
    F: Float,
    R: SumAccumulator<F>, 
[src]

impl<F, R> Send for DotK<F, R> where
    F: Send,
    R: Send
[src]

Auto Trait Implementations

impl<F, R> RefUnwindSafe for DotK<F, R> where
    F: RefUnwindSafe,
    R: RefUnwindSafe

impl<F, R> Sync for DotK<F, R> where
    F: Sync,
    R: Sync

impl<F, R> Unpin for DotK<F, R> where
    F: Unpin,
    R: Unpin

impl<F, R> UnwindSafe for DotK<F, R> where
    F: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Acc, F> ParallelDotAccumulator<F> for Acc where
    Acc: DotAccumulator<F, Output = Acc> + Add<Acc> + Send
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.