Sqrt - 1 vs 6¶
- Sqrt1 → Sqrt6 +0 -5
Sqrt1 → Sqrt6
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Square root takes one input data (Tensor<T>) and produces one output data
|
2
2
|
(Tensor<T>) where the square root is, y = x^0.5, is applied to
|
3
3
|
the tensor elementwise. If x is negative, then it will return NaN.
|
4
|
-
|
5
|
-
**Attributes**
|
6
|
-
|
7
|
-
* **consumed_inputs**:
|
8
|
-
legacy optimization attribute.
|
9
4
|
**Inputs**
|
10
5
|
* **X** (heterogeneous) - **T**:
|
11
6
|
Input tensor
|
12
7
|
**Outputs**
|
13
8
|
* **Y** (heterogeneous) - **T**:
|
14
9
|
Output tensor
|
15
10
|
**Type Constraints**
|
16
11
|
* **T** in (
|
17
12
|
tensor(double),
|
18
13
|
tensor(float),
|
19
14
|
tensor(float16)
|
20
15
|
):
|
21
16
|
Constrain input and output types to float tensors.
|