mindspore.ops.MatMul
- class mindspore.ops.MatMul(transpose_a=False, transpose_b=False)[source]
Multiplies matrix a and matrix b.
where the
indicates the output of the i-th row and j-th column element.Note
If
cannot be divided by 16, the performance will be poor in ascend environment.The dtype of inputs must be same.
On Ascend, float64 doesn't be supported.
- Parameters
- Inputs:
a (Tensor) - The first tensor to be multiplied. The shape of the tensor is
. If transpose_a isTrue
, its shape must be after transpose.b (Tensor) - The second tensor to be multiplied. The shape of the tensor is
. If transpose_b isTrue
, its shape must be after transpose.
- Outputs:
Tensor, the shape of the output tensor is
.
- Raises
TypeError – If transpose_a or transpose_b is not a bool.
TypeError – If the dtype of a and the dtype of b are not the same.
ValueError – If the column of matrix dimensions of a is not equal to the row of matrix dimensions of b.
ValueError – If length of shape of a or b is not equal to 2.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> a = Tensor(np.ones(shape=[1, 3]), mindspore.float32) >>> b = Tensor(np.ones(shape=[3, 4]), mindspore.float32) >>> matmul = ops.MatMul() >>> output = matmul(a, b) >>> print(output) [[3. 3. 3. 3.]]