Skip to content

Commit d483b10

Browse files
authored
Add comparison for nextafter (#9)
1 parent ad97bfd commit d483b10

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# nextafter
2+
3+
## NumPy
4+
5+
```
6+
numpy.nextafter(x1, x2, out=None, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.nextafter(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.nextafter(x1, x2, out=None, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.lax.nextafter(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
```
31+
32+
## PyTorch
33+
34+
```
35+
torch.nextafter(input, other, out=None) → Tensor
36+
```
37+
38+
## TensorFlow
39+
40+
```
41+
tf.math.nextafter( x1, x2, name=None ) → Tensor
42+
```

0 commit comments

Comments
 (0)