MatMul - 9 vs 13¶
- MatMul9 → MatMul13 +1 -0
MatMul9 → 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),
|
12
13
|
tensor(double),
|
13
14
|
tensor(float),
|
14
15
|
tensor(float16),
|
15
16
|
tensor(int32),
|
16
17
|
tensor(int64),
|
17
18
|
tensor(uint32),
|
18
19
|
tensor(uint64)
|
19
20
|
):
|
20
21
|
Constrain input and output types to float/int tensors.
|