pub trait CwiseMul<Rhs: Tensor> {
type Output: Tensor;
// Required method
fn cwise_mul(self, other: Rhs) -> Self::Output;
}
pub trait CwiseMul<Rhs: Tensor> {
type Output: Tensor;
// Required method
fn cwise_mul(self, other: Rhs) -> Self::Output;
}