File size: 242 Bytes
c835f15 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from cupy import _core
bitwise_and = _core.bitwise_and
bitwise_or = _core.bitwise_or
bitwise_xor = _core.bitwise_xor
bitwise_not = _core.invert
invert = _core.invert
left_shift = _core.left_shift
right_shift = _core.right_shift
|