Multiplication in PyTorch

Posted hizhaolei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Multiplication in PyTorch相关的知识,希望对你有一定的参考价值。

1. Element-wise Multiplication

*

torch.Tensor.mul()

torch.mul()

 

2. Matrix Multiplication

torch.Tensor.matmul()

torch.matmul()

torch.Tensor.mm()

torch.mm()

 

3. Batch Matrix Multiplication

torch.bmm()

torch.bmm(out_theta.transpose(1, 2), out_phi)

  

以上是关于Multiplication in PyTorch的主要内容,如果未能解决你的问题,请参考以下文章

HDU 6073 Matching In Multiplication dfs遍历环 + 拓扑

668. Kth Smallest Number in Multiplication Table

668. Kth Smallest Number in Multiplication Table

HDU 6073 Matching In Multiplication —— 2017 Multi-University Training 4

[Leetcode]668.Kth Smallest Number in Multiplication Table

[LeetCode] Kth Smallest Number in Multiplication Table 乘法表中的第K小的数字