(self, x)
| 1310 | def __ixor__(self, x) -> Tensor: return self.assign(self.bitwise_xor(x)) # type: ignore[misc] |
| 1311 | def __ilshift__(self, x) -> Tensor: return self.assign(self.lshift(x)) # type: ignore[misc] |
| 1312 | def __irshift__(self, x) -> Tensor: return self.assign(self.rshift(x)) # type: ignore[misc] |
| 1313 | def __imatmul__(self, x) -> Tensor: return self.assign(self.matmul(x)) # type: ignore[misc] |
| 1314 | |
| 1315 | def __eq__(self, x) -> Tensor: return self.eq(x) # type: ignore[override] |