IsNaN - 9 vs 13#
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.
- IsNaN9 → IsNaN13 +0 -1
IsNaN9 → IsNaN13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Returns which elements of the input are NaN.
|
2
2
|
**Inputs**
|
3
3
|
* **X** (heterogeneous) - **T1**:
|
4
4
|
input
|
5
5
|
**Outputs**
|
6
6
|
* **Y** (heterogeneous) - **T2**:
|
7
7
|
output
|
8
8
|
**Type Constraints**
|
9
9
|
* **T1** in (
|
10
|
-
tensor(bfloat16),
|
11
10
|
tensor(double),
|
12
11
|
tensor(float),
|
13
12
|
tensor(float16)
|
14
13
|
):
|
15
14
|
Constrain input types to float tensors.
|
16
15
|
* **T2** in (
|
17
16
|
tensor(bool)
|
18
17
|
):
|
19
18
|
Constrain output types to boolean tensors.
|