MatMul - 1 vs 9

Files changed (1) hide show
  1. MatMul1 → MatMul9 +5 -2
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)
15
19
  ):
16
- Constrain input and output types to float tensors.+ Constrain input and output types to float/int tensors.? ++++