diff --git a/docs/ops/matrix/MatMul_1.md b/docs/ops/matrix/MatMul_1.md index 346b7e1cc45..191a94c9858 100644 --- a/docs/ops/matrix/MatMul_1.md +++ b/docs/ops/matrix/MatMul_1.md @@ -57,14 +57,17 @@ Two attributes, `transpose_a` and `transpose_b` specify embedded transposition f **Inputs**: -* **1**: Input batch of matrices A. Rank >= 1. Required. +* **1**: Tensor of type *T* with matrices A. Rank >= 1. Required. -* **2**: Input batch of matrices B. Rank >= 1. Required. +* **2**: Tensor of type *T* with matrices B. Rank >= 1. Required. **Outputs** -* **1**: Tensor with results of the multiplication. +* **1**: Tensor of type *T* with results of the multiplication. +**Types**: + +* *T*: any supported floating point or integer type. **Example**