8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tile
1 parent e38b7d4 commit fa01705Copy full SHA for fa01705
signatures/manipulation/tile.md
@@ -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
+```< A1EF /span>
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