@@ -206,6 +206,7 @@ def binary_repr(num, width=None):
206
206
ti ._bitwise_and_result_type ,
207
207
ti ._bitwise_and ,
208
208
_BITWISE_AND_DOCSTRING ,
209
+ binary_inplace_fn = ti ._bitwise_and_inplace ,
209
210
)
210
211
211
212
@@ -281,6 +282,7 @@ def binary_repr(num, width=None):
281
282
ti ._bitwise_or_result_type ,
282
283
ti ._bitwise_or ,
283
284
_BITWISE_OR_DOCSTRING ,
285
+ binary_inplace_fn = ti ._bitwise_or_inplace ,
284
286
)
285
287
286
288
@@ -360,6 +362,7 @@ def binary_repr(num, width=None):
360
362
ti ._bitwise_xor_result_type ,
361
363
ti ._bitwise_xor ,
362
364
_BITWISE_XOR_DOCSTRING ,
365
+ binary_inplace_fn = ti ._bitwise_xor_inplace ,
363
366
)
364
367
365
368
@@ -510,6 +513,7 @@ def binary_repr(num, width=None):
510
513
ti ._bitwise_left_shift_result_type ,
511
514
ti ._bitwise_left_shift ,
512
515
_LEFT_SHIFT_DOCSTRING ,
516
+ binary_inplace_fn = ti ._bitwise_left_shift_inplace ,
513
517
)
514
518
515
519
bitwise_left_shift = left_shift # bitwise_left_shift is an alias for left_shift
@@ -585,6 +589,7 @@ def binary_repr(num, width=None):
585
589
ti ._bitwise_right_shift_result_type ,
586
590
ti ._bitwise_right_shift ,
587
591
_RIGHT_SHIFT_DOCSTRING ,
592
+ binary_inplace_fn = ti ._bitwise_right_shift_inplace ,
588
593
)
589
594
590
595
# bitwise_right_shift is an alias for right_shift
0 commit comments