Batch matrix multiplication 으로 두 operand가 모두 batch일때 사용하며, 브로드캐스트 기능을 지원하지 않는다. 두 입력은 3-D 텐서가 되어야한다.
torch.bmm(input, mat2, *, deterministic=False, out=None) -> tensor
Example:
input = torch.randn(10,3,4)
mat2 = torch.randn(10,4,5)
res = torch.bmm(input, mat2)
res.size()
# result : torch.Size([10,3,5])