| 1305 | def __itruediv__(self, x) -> Tensor: return self.assign(self.div(x)) # type: ignore[misc] |
| 1306 | def __ifloordiv__(self, x) -> Tensor: return self.assign(self.__floordiv__(x)) # type: ignore[misc] |
| 1307 | def __ipow__(self, x) -> Tensor: return self.assign(self.pow(x)) # type: ignore[misc] |
| 1308 | def __iand__(self, x) -> Tensor: return self.assign(self.bitwise_and(x)) # type: ignore[misc] |
| 1309 | def __ior__(self, x) -> Tensor: return self.assign(self.bitwise_or(x)) # type: ignore[misc] |
| 1310 | def __ixor__(self, x) -> Tensor: return self.assign(self.bitwise_xor(x)) # type: ignore[misc] |