Document feedback

Question document fragment

When a question document fragment contains a formula, it is displayed as a space.

Submission type
issue

It's a little complicated...

I'd like to ask someone.

PR

Just a small problem.

I can fix it online!

Please select the submission type

Problem type
Specifications and Common Mistakes

- Specifications and Common Mistakes:

- Misspellings or punctuation mistakes,incorrect formulas, abnormal display.

- Incorrect links, empty cells, or wrong formats.

- Chinese characters in English context.

- Minor inconsistencies between the UI and descriptions.

- Low writing fluency that does not affect understanding.

- Incorrect version numbers, including software package names and version numbers on the UI.

Usability

- Usability:

- Incorrect or missing key steps.

- Missing main function descriptions, keyword explanation, necessary prerequisites, or precautions.

- Ambiguous descriptions, unclear reference, or contradictory context.

- Unclear logic, such as missing classifications, items, and steps.

Correctness

- Correctness:

- Technical principles, function descriptions, supported platforms, parameter types, or exceptions inconsistent with that of software implementation.

- Incorrect schematic or architecture diagrams.

- Incorrect commands or command parameters.

- Incorrect code.

- Commands inconsistent with the functions.

- Wrong screenshots.

- Sample code running error, or running results inconsistent with the expectation.

Risk Warnings

- Risk Warnings:

- Lack of risk warnings for operations that may damage the system or important data.

Content Compliance

- Content Compliance:

- Contents that may violate applicable laws and regulations or geo-cultural context-sensitive words and expressions.

- Copyright infringement.

Please select the type of question

Problem description

Describe the bug so that we can quickly locate the problem.

mindspore.ops.MatMul

View Source On Gitee
class mindspore.ops.MatMul(transpose_a=False, transpose_b=False)[source]

Multiplies matrix a and matrix b.

Output_{i j}=sum_{k=1}^{p} a_{i k} b_{k j}=a_{i 1} b_{1 j}+a_{i 2} b_{2 j}+cdots+a_{i p} b_{p j}, pin N

where the i,j indicates the output of the i-th row and j-th column element.

Note

  • If NM 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
  • transpose_a (bool) – If True , a is transposed before multiplication. Default: False .

  • transpose_b (bool) – If True , b is transposed before multiplication. Default: False .

Inputs:
  • a (Tensor) - The first tensor to be multiplied. The shape of the tensor is (N,C). If transpose_a is True , its shape must be (C,N) after transpose.

  • b (Tensor) - The second tensor to be multiplied. The shape of the tensor is (C,M). If transpose_b is True , its shape must be (M,C) after transpose.

Outputs:

Tensor, the shape of the output tensor is (N,M).

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.]]