MatMul - 1 vs 13#
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- MatMul1 → MatMul13 +2 -7
MatMul1 → MatMul13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Matrix product that behaves like numpy.matmul: https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.matmul.html
|
2
2
|
**Inputs**
|
3
3
|
* **A** (heterogeneous) - **T**:
|
4
4
|
N-dimensional matrix A
|
5
5
|
* **B** (heterogeneous) - **T**:
|
6
6
|
N-dimensional matrix B
|
7
7
|
**Outputs**
|
8
8
|
* **Y** (heterogeneous) - **T**:
|
9
9
|
Matrix multiply results from A * B
|
10
10
|
**Type Constraints**
|
11
11
|
* **T** in (
|
12
|
-
tensor(bfloat16),
|
13
12
|
tensor(double),
|
14
13
|
tensor(float),
|
15
|
-
tensor(float16)
|
14
|
+
tensor(float16)
|
16
|
-
tensor(int32),
|
17
|
-
tensor(int64),
|
18
|
-
tensor(uint32),
|
19
|
-
tensor(uint64)
|
20
15
|
):
|
21
|
-
Constrain input and output types to float
|
16
|
+
Constrain input and output types to float tensors.
|