DotProduct

Trait DotProduct 

Source
pub trait DotProduct<T>
where T: Number,
{ // Required method fn dot_product( self, rank_combinations: &[HashMap<RankIndex, RankCombinationId>], ) -> SparseTensor<T>; }

Required Methods§

Source

fn dot_product( self, rank_combinations: &[HashMap<RankIndex, RankCombinationId>], ) -> SparseTensor<T>

Implementors§

Source§

impl<'a, I, T> DotProduct<T> for I
where I: Iterator<Item = &'a SparseTensor<T>>, T: Number + 'a,