TensordotTensor.dot() Returns the dot product of two tensors. Usage from tinygrad.tensor import Tensor a1 = Tensor([[1.5, 5, 2, 3]]) a2 = Tensor([1, 2, 3, 4]) a2 = a2.reshape(4, 1) a1 = a1.dot(a2) print(a1.numpy()) Return value [[29.5]]divdropout