8000 Add eig signatures · pmeier/array-api-comparison@ea7eb4f · GitHub
[go: up one dir, main page]

Skip to content

Commit ea7eb4f

Browse files
committed
Add eig signatures
1 parent adc4649 commit ea7eb4f

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

signatures/linalg/eig.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# eig
2+
3+
## NumPy
4+
5+
```
6+
numpy.linalg.eig(a) → Tuple[ ndarray, ... ]
7+
```
8+
9+
## CuPy
10+
11+
```
12+
13+
```
14+
15+
## dask.array
16+
17+
```
18+
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.linalg.eig(a) → Tuple[ ndarray, ... ]
25+
```
26+
27+
## MXNet
28+
29+
```
30+
np.linalg.eig(a) → Tuple[ ndarray, ... ]
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.eig(input) → Tuple[ Tensor, ... ]
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.linalg.eig(tensor, name=None) → Tuple[ Tensor, ... ]
43+
```

0 commit comments

Comments
 (0)
0