Is there a built in function to calculate efficiently all pairwaise dot products of two tensors in Pytorch?
e.g.
input - tensor A
(shape N
xD
)
tensor B
(shape N
xD
)
output - tensor C
(shape N
xN
) such that C_i,j = torch.dot(A_i, B_j)
?