mindspore/docs/api/api_python/ops/mindspore.ops.func_bmm.rst

24 lines
954 B
ReStructuredText
Raw Normal View History

mindspore.ops.bmm
=================
.. py:function:: mindspore.ops.bmm(input_x, mat2)
基于batch维度的两个Tensor的矩阵乘法。
.. math::
\text{output}[..., :, :] = \text{matrix}(x[..., :, :]) * \text{matrix}(y[..., :, :])
2022-11-07 21:22:15 +08:00
`input_x` 的维度不能小于 `3` `mat2` 的维度不能小于 `2`
2022-10-13 16:22:54 +08:00
参数:
- **input_x** (Tensor) - 输入相乘的第一个Tensor。其shape为 :math:`(*B, N, C)` ,其中 :math:`*B` 表示批处理大小,可以是多维度, :math:`N`:math:`C` 是最后两个维度的大小。
- **mat2** (Tensor) - 输入相乘的第二个Tensor。Tensor的shape为 :math:`(*B, C, M)`
返回:
Tensor输出Tensor的shape为 :math:`(*B, N, M)`
异常:
2022-11-07 21:22:15 +08:00
- **ValueError** - `input_x` 的维度小于 `3` 或者 `mat2` 的维度小于2。
- **ValueError** - `input_x` 第三维的长度不等于 `mat2` 第二维的长度。