pub fn add<T: Tensor<Dtype = f32>>(lhs: T, rhs: &T::NoTape) -> T
Expand description

Element wise addition.

Example:

let a = Tensor2D::new([[1.0, 2.0, 3.0], [-1.0, -2.0, -3.0]]);
let b = Tensor2D::ones();
let r = add(a, &b); // or `a + &b`
assert_eq!(r.data(), &[[2.0, 3.0, 4.0], [0.0, -1.0, -2.0]]);