Skip to content

Commit 763ee61

Browse files
committed
Add signatures for reciprocal
1 parent c8bac90 commit 763ee61

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# reciprocal
2+
3+
## NumPy
4+
5+
```
6+
numpy.reciprocal(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.reciprocal(x, /, out=None, *, casting='same_kind', dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.reciprocal(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → array
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.reciprocal(x, /) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
np.reciprocal(x, out=None, **kwargs) → ndarray
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.reciprocal(input, *, out=None) → Tensor
37+
```
38+
39+
Supports integral inputs, which are subsequently promoted to default scalar dtype.
40+
41+
## TensorFlow
42+
43+
```
44+
tf.math.reciprocal(x, name=None) → Tensor
45+
```
46+
47+
Supports all numeric dtypes.

0 commit comments

Comments
 (0)