Question about source code of pytorch

Where can I find the source code of torch.mm?

1 Like

It eventually dispatches to https://github.com/pytorch/pytorch/blob/2e0dd8690320fb1a7ecd548730824c1610207179/aten/src/ATen/native/LinearAlgebra.cpp#L136-L148, which calls blas gemm.

1 Like

Thank you for your apply!