API

 torch / torch


torch.dot

torch.dot(input, tensor) → Tensor

Computes the dot product (inner product) of two tensors.

Note

This function does not broadcast.

Example:

>>> torch.dot(torch.tensor([2, 3]), torch.tensor([2, 1]))
tensor(7)

此页内容是否对您有帮助