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