8000 Add signatures for `conj` · data-apis/array-api-comparison@7ecfa98 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7ecfa98

Browse files
committed
Add signatures for conj
1 parent eaa7581 commit 7ecfa98

File tree

1 file changed

+43
-0
lines changed
  • signatures/mathematical-functions-elementwise

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# conj
2+
3+
## NumPy
4+
5+
```
6+
numpy.conj(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.conj(x, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.conj(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.conj(x) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.conj(input) → Tensor
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.math.conj(x, name=None) → Tensor
43+
```

0 commit comments

Comments
 (0)
0