Dot
torch_dot(self, tensor)
self
: the input tensortensor
: the other input tensorThis function does not broadcast .
Computes the dot product (inner product) of two tensors.
if (torch_is_installed()) { torch_dot(torch_tensor(c(2, 3)), torch_tensor(c(2, 1))) }
Useful links