TensoraddTensor.add() Returns the sum of the two tensors. Usage from tinygrad.tensor import Tensor a1 = Tensor([1, 2, 3]) a2 = Tensor([1, 2, 3]) a1 = a1.add(a2) print(a1.numpy()) Return value [2. 4. 6.]absarange