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

Skip to content

Commit fa01705

Browse files
committed
Add signatures for tile
1 parent e38b7d4 commit fa01705

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

signatures/manipulation/tile.md

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

0 commit comments

Comments
 (0)
0