MatMul - 9 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.

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