Function mul

Source
pub fn mul(lhs: &Tensor, rhs: &Tensor) -> Tensor
Expand description

Multiplies two Tensor objects.

§Arguments

  • lhs - The first Tensor.
  • rhs - The second Tensor.

§Returns

The resulting Tensor after the multiplication.