-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
667 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
# this file was modified from the generated | ||
# https://github.com/pydata/xarray/blob/cf3655968b8b12cc0ecd28fb324e63fb94d5e7e2/xarray/core/_typed_ops.py | ||
# TODO: should we generate this ourselves? | ||
# TODO: test these magic methods | ||
import operator | ||
from typing import Any, Callable | ||
|
||
from typing_extensions import Self | ||
from xarray.core import nputils, ops | ||
|
||
|
||
class MagicTensorOpsMixin: | ||
__slots__ = () | ||
_Compatible = Any | ||
|
||
def _binary_op( | ||
self, | ||
other: _Compatible, | ||
f: Callable[[Any, Any], Any], | ||
reflexive: bool = False, | ||
) -> Self: | ||
raise NotImplementedError | ||
|
||
def __add__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.add) | ||
|
||
def __sub__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.sub) | ||
|
||
def __mul__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.mul) | ||
|
||
def __pow__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.pow) | ||
|
||
def __truediv__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.truediv) | ||
|
||
def __floordiv__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.floordiv) | ||
|
||
def __mod__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.mod) | ||
|
||
def __and__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.and_) | ||
|
||
def __xor__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.xor) | ||
|
||
def __or__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.or_) | ||
|
||
def __lshift__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.lshift) | ||
|
||
def __rshift__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.rshift) | ||
|
||
def __lt__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.lt) | ||
|
||
def __le__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.le) | ||
|
||
def __gt__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.gt) | ||
|
||
def __ge__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.ge) | ||
|
||
def __eq__(self, other: _Compatible) -> Self: # type: ignore[override] | ||
return self._binary_op( | ||
other, nputils.array_eq # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
def __ne__(self, other: _Compatible) -> Self: # type: ignore[override] | ||
return self._binary_op( | ||
other, nputils.array_ne # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
# When __eq__ is defined but __hash__ is not, then an object is unhashable, | ||
# and it should be declared as follows: | ||
__hash__: None # type:ignore[assignment] | ||
|
||
def __radd__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.add, reflexive=True) | ||
|
||
def __rsub__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.sub, reflexive=True) | ||
|
||
def __rmul__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.mul, reflexive=True) | ||
|
||
def __rpow__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.pow, reflexive=True) | ||
|
||
def __rtruediv__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.truediv, reflexive=True) | ||
|
||
def __rfloordiv__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.floordiv, reflexive=True) | ||
|
||
def __rmod__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.mod, reflexive=True) | ||
|
||
def __rand__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.and_, reflexive=True) | ||
|
||
def __rxor__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.xor, reflexive=True) | ||
|
||
def __ror__(self, other: _Compatible) -> Self: | ||
return self._binary_op(other, operator.or_, reflexive=True) | ||
|
||
def _inplace_binary_op( | ||
self, other: _Compatible, f: Callable[[Any, Any], Any] | ||
) -> Self: | ||
raise NotImplementedError | ||
|
||
def __iadd__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.iadd) | ||
|
||
def __isub__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.isub) | ||
|
||
def __imul__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.imul) | ||
|
||
def __ipow__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.ipow) | ||
|
||
def __itruediv__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.itruediv) | ||
|
||
def __ifloordiv__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.ifloordiv) | ||
|
||
def __imod__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.imod) | ||
|
||
def __iand__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.iand) | ||
|
||
def __ixor__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.ixor) | ||
|
||
def __ior__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.ior) | ||
|
||
def __ilshift__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.ilshift) | ||
|
||
def __irshift__(self, other: _Compatible) -> Self: | ||
return self._inplace_binary_op(other, operator.irshift) | ||
|
||
def _unary_op(self, f: Callable[[Any], Any], *args: Any, **kwargs: Any) -> Self: | ||
raise NotImplementedError | ||
|
||
def __neg__(self) -> Self: | ||
return self._unary_op(operator.neg) | ||
|
||
def __pos__(self) -> Self: | ||
return self._unary_op(operator.pos) | ||
|
||
def __abs__(self) -> Self: | ||
return self._unary_op(operator.abs) | ||
|
||
def __invert__(self) -> Self: | ||
return self._unary_op(operator.invert) | ||
|
||
def round(self, *args: Any, **kwargs: Any) -> Self: | ||
return self._unary_op( | ||
ops.round_, *args, **kwargs # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
def argsort(self, *args: Any, **kwargs: Any) -> Self: | ||
return self._unary_op( | ||
ops.argsort, *args, **kwargs # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
def conj(self, *args: Any, **kwargs: Any) -> Self: | ||
return self._unary_op( | ||
ops.conj, *args, **kwargs # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
def conjugate(self, *args: Any, **kwargs: Any) -> Self: | ||
return self._unary_op( | ||
ops.conjugate, *args, **kwargs # pyright: ignore[reportUnknownArgumentType] | ||
) | ||
|
||
__add__.__doc__ = operator.add.__doc__ | ||
__sub__.__doc__ = operator.sub.__doc__ | ||
__mul__.__doc__ = operator.mul.__doc__ | ||
__pow__.__doc__ = operator.pow.__doc__ | ||
__truediv__.__doc__ = operator.truediv.__doc__ | ||
__floordiv__.__doc__ = operator.floordiv.__doc__ | ||
__mod__.__doc__ = operator.mod.__doc__ | ||
__and__.__doc__ = operator.and_.__doc__ | ||
__xor__.__doc__ = operator.xor.__doc__ | ||
__or__.__doc__ = operator.or_.__doc__ | ||
__lshift__.__doc__ = operator.lshift.__doc__ | ||
__rshift__.__doc__ = operator.rshift.__doc__ | ||
__lt__.__doc__ = operator.lt.__doc__ | ||
__le__.__doc__ = operator.le.__doc__ | ||
__gt__.__doc__ = operator.gt.__doc__ | ||
__ge__.__doc__ = operator.ge.__doc__ | ||
__eq__.__doc__ = nputils.array_eq.__doc__ | ||
__ne__.__doc__ = nputils.array_ne.__doc__ | ||
__radd__.__doc__ = operator.add.__doc__ | ||
__rsub__.__doc__ = operator.sub.__doc__ | ||
__rmul__.__doc__ = operator.mul.__doc__ | ||
__rpow__.__doc__ = operator.pow.__doc__ | ||
__rtruediv__.__doc__ = operator.truediv.__doc__ | ||
__rfloordiv__.__doc__ = operator.floordiv.__doc__ | ||
__rmod__.__doc__ = operator.mod.__doc__ | ||
__rand__.__doc__ = operator.and_.__doc__ | ||
__rxor__.__doc__ = operator.xor.__doc__ | ||
__ror__.__doc__ = operator.or_.__doc__ | ||
__iadd__.__doc__ = operator.iadd.__doc__ | ||
__isub__.__doc__ = operator.isub.__doc__ | ||
__imul__.__doc__ = operator.imul.__doc__ | ||
__ipow__.__doc__ = operator.ipow.__doc__ | ||
__itruediv__.__doc__ = operator.itruediv.__doc__ | ||
__ifloordiv__.__doc__ = operator.ifloordiv.__doc__ | ||
__imod__.__doc__ = operator.imod.__doc__ | ||
__iand__.__doc__ = operator.iand.__doc__ | ||
__ixor__.__doc__ = operator.ixor.__doc__ | ||
__ior__.__doc__ = operator.ior.__doc__ | ||
__ilshift__.__doc__ = operator.ilshift.__doc__ | ||
__irshift__.__doc__ = operator.irshift.__doc__ | ||
__neg__.__doc__ = operator.neg.__doc__ | ||
__pos__.__doc__ = operator.pos.__doc__ | ||
__abs__.__doc__ = operator.abs.__doc__ | ||
__invert__.__doc__ = operator.invert.__doc__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.