File size: 316 Bytes
008bd6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from __future__ import annotations

from cupy import _core


bitwise_and = _core.bitwise_and


bitwise_or = _core.bitwise_or


bitwise_xor = _core.bitwise_xor


bitwise_not = _core.invert


bitwise_count = _core.bitwise_count


invert = _core.invert


left_shift = _core.left_shift


right_shift = _core.right_shift