Trait simdop::Mulhi [−] [src]

pub trait Mulhi<M: Multi> {
    fn mulhi(&self, a: M, b: M) -> M;
}

The Mulhi trait is used to specify high element-wise multiplication functionality.

Required Methods

fn mulhi(&self, a: M, b: M) -> M

Multiplies the elements in a and b and stores the higher halves of the results.

Implementors