MatMul - 1 vs 9#

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. MatMul1 → MatMul9 +2 -6
MatMul1 → MatMul9 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
12
  tensor(double),
13
13
  tensor(float),
14
- tensor(float16),
14
+ tensor(float16)
15
- tensor(int32),
16
- tensor(int64),
17
- tensor(uint32),
18
- tensor(uint64)
19
15
  ):
20
- Constrain input and output types to float/int tensors.? ----
16
+ Constrain input and output types to float tensors.