We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1b6290 + 27bdfbe commit f69dd9aCopy full SHA for f69dd9a
2 files changed
spec/API_specification/elementwise_functions.md
@@ -944,8 +944,9 @@ each element `x1_i` of the input array `x1` with the respective element `x2_i` o
944
945
For floating-point operands,
946
947
-- If either `x1_i` or `x2_i` is `NaN`, the result is `NaN`.
948
-- If either `x1_i` or `x2_i` is `+infinity`, the result is `+infinity`.
+- If either `x1_i` or `x2_i` is `NaN`, the result is `NaN`.
+- If `x1_i` is `+infinity` and `x2_i` is not `NaN`, the result is `+infinity`.
949
+- If `x1_i` is not `NaN` and `x2_i` is `+infinity`, the result is `+infinity`.
950
951
#### Parameters
952
spec/API_specification/type_promotion.md
@@ -70,6 +70,7 @@ where
70
| **i1** | i2 | i4 | i8 |
71
| **i2** | i2 | i4 | i8 |
72
| **i4** | i4 | i4 | i8 |
73
+| **i8** | i8 | i8 | i8 |
74
75
### Floating-point type promotion table
76
0 commit comments