torch.bmm¶
- torch.bmm(input, mat2, *, out=None) Tensor ¶
对存储在
input
和mat2
中的矩阵执行批矩阵-矩阵乘积。input
和mat2
必须是包含相同数量矩阵的 3 维张量。如果
input
是 张量,mat2
是 张量,out
将是 张量。mat2 i \text{out}_i = \text{input}_i \mathbin{@} \text{mat2}_i 此运算符支持 TensorFloat32。
在某些 ROCm 设备上,当使用 float16 输入时,此模块将使用 不同的精度 进行反向传播。
注意
此函数不进行广播。有关广播矩阵乘法的更多信息,请参见
torch.matmul()
。示例
>>> input = torch.randn(10, 3, 4) >>> mat2 = torch.randn(10, 4, 5) >>> res = torch.bmm(input, mat2) >>> res.size() torch.Size([10, 3, 5])