bulk change type T to type *T* in spec (#6486)

* bulk change `type T` to `type *T*` in spec

* update all `T` which referee to type to use *T* pattern

* get back with `T` where T is dimension

* fix *T*1 -> *T1*

* Make italic types where was no formating
This commit is contained in:
Patryk Elszkowski
2021-07-02 12:51:00 +02:00
committed by GitHub
parent ccf786438b
commit de53c40578
61 changed files with 253 additions and 257 deletions

View File

@@ -63,13 +63,13 @@ output = data / (bias + (alpha / size ** len(axes)) * sqr_sum) ** beta
**Inputs**
* **1**: `data` - tensor of type `T` and arbitrary shape. **Required.**
* **1**: `data` - tensor of type *T* and arbitrary shape. **Required.**
* **2**: `axes` - 1D tensor of type `T_IND` which specifies indices of dimensions in `data` which define normalization slices. **Required.**
* **2**: `axes` - 1D tensor of type *T_IND* which specifies indices of dimensions in `data` which define normalization slices. **Required.**
**Outputs**
* **1**: Output tensor of type `T` and the same shape as the `data` input tensor.
* **1**: Output tensor of type *T* and the same shape as the `data` input tensor.
**Types**
* *T*: any supported floating point type.