Skip to content

Commit 519dd9b

Browse files
committed
Add signatures
1 parent d7cf09a commit 519dd9b

File tree

6 files changed

+258
-0
lines changed

6 files changed

+258
-0
lines changed

signatures/bitwise/bitwise_and.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# bitwise_and
2+
3+
## NumPy
4+
5+
```
6+
numpy.bitwise_and(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.bitwise_and(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.bitwise_and(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.bitwise_and(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.bitwise_and(input, other, , out=None) → Tensor
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.bitwise_and(x, y, name=None) → Tensor
43+
```

signatures/bitwise/bitwise_invert.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# invert
2+
3+
## NumPy
4+
5+
```
6+
numpy.invert(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.invert(x, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.invert(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
19+
```
20+
21+
## JAX
22+
23+
```
24+
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.invert(x, name=None) → Tensor
43+
```

signatures/bitwise/bitwise_lshift.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# left_shift
2+
3+
## NumPy
4+
5+
```
6+
numpy.left_shift(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.left_shift(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.left_shift(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.left_shift(x, y, name=None) → Tensor
43+
```

signatures/bitwise/bitwise_or.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# bitwise_or
2+
3+
## NumPy
4+
5+
```
6+
numpy.bitwise_or(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.bitwise_or(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.bitwise_or(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.bitwise_or(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.bitwise_or(input, other, , out=None) → Tensor
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.bitwise_or(x, y, name=None) → Tensor
43+
```

signatures/bitwise/bitwise_rshift.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# right_shift
2+
3+
## NumPy
4+
5+
```
6+
numpy.right_shift(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.right_shift(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.right_shift(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.right_shift(x, y, name=None) → Tensor
43+
```

signatures/bitwise/bitwise_xor.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# bitwise_xor
2+
3+
## NumPy
4+
5+
```
6+
numpy.bitwise_xor(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
7+
```
8+
9+
## CuPy
10+
11+
```
12+
cupy.bitwise_xor(x1, x2, out=None, dtype=None) → ndarray
13+
```
14+
15+
## dask.array
16+
17+
```
18+
dask.array.bitwise_xor(x1, x2, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) → ndarray
19+
```
20+
21+
## JAX
22+
23+
```
24+
jax.numpy.bitwise_xor(x1, x2) → ndarray
25+
```
26+
27+
## MXNet
28+
29+
```
30+
31+
```
32+
33+
## PyTorch
34+
35+
```
36+
torch.bitwise_xor(input, other, , out=None) → Tensor
37+
```
38+
39+
## TensorFlow
40+
41+
```
42+
tf.bitwise.bitwise_xor(x, y, name=None) → Tensor
43+
```

0 commit comments

Comments
 (0)