@@ -347,22 +347,22 @@ def __gt__(self, other):
347347
348348 def __iadd__ (self , other ):
349349 """Return ``self+=value``."""
350- dpnp .add . _inplace_op (self , other )
350+ dpnp .add (self , other , out = self )
351351 return self
352352
353353 def __iand__ (self , other ):
354354 """Return ``self&=value``."""
355- dpnp .bitwise_and . _inplace_op (self , other )
355+ dpnp .bitwise_and (self , other , out = self )
356356 return self
357357
358358 def __ifloordiv__ (self , other ):
359359 """Return ``self//=value``."""
360- dpnp .floor_divide . _inplace_op (self , other )
360+ dpnp .floor_divide (self , other , out = self )
361361 return self
362362
363363 def __ilshift__ (self , other ):
364364 """Return ``self<<=value``."""
365- dpnp .left_shift . _inplace_op (self , other )
365+ dpnp .left_shift (self , other , out = self )
366366 return self
367367
368368 def __imatmul__ (self , other ):
@@ -393,12 +393,12 @@ def __imatmul__(self, other):
393393
394394 def __imod__ (self , other ):
395395 """Return ``self%=value``."""
396- dpnp .remainder . _inplace_op (self , other )
396+ dpnp .remainder (self , other , out = self )
397397 return self
398398
399399 def __imul__ (self , other ):
400400 """Return ``self*=value``."""
401- dpnp .multiply . _inplace_op (self , other )
401+ dpnp .multiply (self , other , out = self )
402402 return self
403403
404404 def __index__ (self ):
@@ -416,22 +416,22 @@ def __invert__(self):
416416
417417 def __ior__ (self , other ):
418418 """Return ``self|=value``."""
419- dpnp .bitwise_or . _inplace_op (self , other )
419+ dpnp .bitwise_or (self , other , out = self )
420420 return self
421421
422422 def __ipow__ (self , other ):
423423 """Return ``self**=value``."""
424- dpnp .power . _inplace_op (self , other )
424+ dpnp .power (self , other , out = self )
425425 return self
426426
427427 def __irshift__ (self , other ):
428428 """Return ``self>>=value``."""
429- dpnp .right_shift . _inplace_op (self , other )
429+ dpnp .right_shift (self , other , out = self )
430430 return self
431431
432432 def __isub__ (self , other ):
433433 """Return ``self-=value``."""
434- dpnp .subtract . _inplace_op (self , other )
434+ dpnp .subtract (self , other , out = self )
435435 return self
436436
437437 def __iter__ (self ):
@@ -442,12 +442,12 @@ def __iter__(self):
442442
443443 def __itruediv__ (self , other ):
444444 """Return ``self/=value``."""
445- dpnp .true_divide . _inplace_op (self , other )
445+ dpnp .true_divide (self , other , out = self )
446446 return self
447447
448448 def __ixor__ (self , other ):
449449 """Return ``self^=value``."""
450- dpnp .bitwise_xor . _inplace_op (self , other )
450+ dpnp .bitwise_xor (self , other , out = self )
451451 return self
452452
453453 def __le__ (self , other ):
0 commit comments