| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601 |
- # mypy: allow-untyped-defs
- import math
- import operator
- from typing import NoReturn
- import sympy
- import torch
- from torch.utils._sympy.functions import (
- _keep_float,
- BitwiseFn_bitwise_and,
- BitwiseFn_bitwise_or,
- BitwiseFn_bitwise_xor,
- FloatPow,
- FloatTrueDiv,
- FloorDiv,
- IntTrueDiv,
- Max,
- Min,
- Mod,
- OpaqueUnaryFn_exp,
- OpaqueUnaryFn_log,
- OpaqueUnaryFn_log2,
- OpaqueUnaryFn_sqrt,
- PowByNatural,
- RoundDecimal,
- RoundToInt,
- ToFloat,
- TruncToInt,
- )
- # The sympy interpretation of operators. It will also sometimes work with
- # plain int/float, but if you do certain operations you will get out a
- # sympy.Basic in the end. If you want the Python/FX traceable interpretation,
- # check PythonReferenceAnalysis.
- # NB: For magic methods this needs to use normal magic methods
- # so that test_magic_methods works
- class ReferenceAnalysis:
- @staticmethod
- def constant(c, dtype):
- return sympy.sympify(c)
- @staticmethod
- def or_(a, b):
- return a | b
- @staticmethod
- def and_(a, b):
- return a & b
- @staticmethod
- def eq(a, b):
- if isinstance(a, sympy.Expr) or isinstance(b, sympy.Expr):
- return sympy.Eq(a, b)
- return a == b
- @classmethod
- def ne(cls, a, b):
- return cls.not_(cls.eq(a, b))
- @staticmethod
- def lt(a, b):
- return a < b
- @staticmethod
- def gt(a, b):
- return a > b
- @staticmethod
- def le(a, b):
- return a <= b
- @staticmethod
- def ge(a, b):
- return a >= b
- @staticmethod
- def not_(a):
- if isinstance(a, bool):
- raise AssertionError("not_ needs sympy expr")
- return ~a
- @staticmethod
- def reciprocal(x):
- return FloatTrueDiv(1.0, x)
- @staticmethod
- def square(x):
- return PowByNatural(x, 2)
- @staticmethod
- def trunc_to_int(x, dtype):
- return TruncToInt(x)
- @staticmethod
- def ceil_to_int(x, dtype):
- return sympy.ceiling(x)
- @staticmethod
- def floor_to_int(x, dtype):
- return sympy.floor(x)
- @staticmethod
- def floor(x):
- return _keep_float(sympy.floor)(x)
- @staticmethod
- def ceil(x):
- return _keep_float(sympy.ceiling)(x)
- @staticmethod
- def to_dtype(x, dtype):
- if dtype == torch.float64:
- return ToFloat(x)
- raise NotImplementedError(f"to_dtype {dtype} NYI")
- @staticmethod
- def mod(x, y):
- return Mod(x, y)
- @staticmethod
- def abs(x):
- return abs(x)
- @staticmethod
- def neg(x):
- return -x
- @staticmethod
- def truediv(a, b):
- return FloatTrueDiv(a, b)
- @staticmethod
- def int_truediv(a, b):
- return IntTrueDiv(a, b)
- @staticmethod
- def floordiv(a, b):
- return FloorDiv(a, b)
- @staticmethod
- def truncdiv(a, b) -> NoReturn:
- raise NotImplementedError("TODO: truncdiv")
- @staticmethod
- def add(a, b):
- return _keep_float(operator.add)(a, b)
- @classmethod
- def sym_sum(cls, args):
- return sympy.Add(*args)
- @staticmethod
- def mul(a, b):
- return _keep_float(operator.mul)(a, b)
- @staticmethod
- def sub(a, b):
- return _keep_float(operator.sub)(a, b)
- @staticmethod
- def exp(x):
- return OpaqueUnaryFn_exp(x)
- @staticmethod
- def log(x):
- return OpaqueUnaryFn_log(x)
- @staticmethod
- def log2(x):
- return OpaqueUnaryFn_log2(x)
- @staticmethod
- def sqrt(x):
- return OpaqueUnaryFn_sqrt(x)
- @staticmethod
- def pow(a, b):
- # pyrefly: ignore [bad-argument-type]
- return _keep_float(FloatPow)(a, b)
- @staticmethod
- def pow_by_natural(a, b):
- return PowByNatural(a, b)
- @staticmethod
- def minimum(a, b):
- return Min(a, b)
- @staticmethod
- def maximum(a, b):
- return Max(a, b)
- @staticmethod
- def round_to_int(a, dtype):
- return RoundToInt(a)
- @staticmethod
- def round_decimal(a, b):
- return RoundDecimal(a, b)
- @staticmethod
- def bitwise_and(a, b):
- return BitwiseFn_bitwise_and(a, b)
- @staticmethod
- def bitwise_or(a, b):
- return BitwiseFn_bitwise_or(a, b)
- @staticmethod
- def bitwise_xor(a, b):
- return BitwiseFn_bitwise_xor(a, b)
- # Unlike ReferenceAnalysis, does NOT sympyify, instead, works with plain
- # Python types and is FX traceable. Inheritance here is purely for code
- # sharing (TODO: considering splitting out a BaseReferenceAnalysis).
- class PythonReferenceAnalysis(ReferenceAnalysis):
- @staticmethod
- def constant(c, dtype):
- if dtype is torch.int64:
- return int(c)
- elif dtype is torch.double:
- return float(c)
- elif dtype is torch.bool:
- return bool(c)
- else:
- raise AssertionError(f"unrecognized dtype {dtype}")
- @staticmethod
- def not_(a):
- return torch.sym_not(a)
- @classmethod
- def sym_sum(cls, args):
- if len(args) == 0:
- return 0
- if len(args) == 1:
- return args[0]
- acc = cls.add(args[0], args[1])
- for i in range(2, len(args)):
- acc = cls.add(acc, args[i])
- return acc
- @staticmethod
- def floordiv(a, b):
- return a // b
- @staticmethod
- def mod(x, y):
- return x % y
- @staticmethod
- def python_mod(x, y):
- return x % y
- @staticmethod
- def truncdiv(a, b):
- return a / b
- @staticmethod
- def to_dtype(x, dtype):
- if dtype == torch.float64:
- return torch.sym_float(x)
- raise NotImplementedError(f"to_dtype {dtype} NYI")
- @staticmethod
- def exp(x) -> NoReturn:
- raise AssertionError("exp is not valid shape sympy expr")
- @staticmethod
- def log(x) -> NoReturn:
- raise AssertionError("log is not valid shape sympy expr")
- @staticmethod
- def log2(x):
- return torch._sym_log2(x) # type: ignore[attr-defined]
- @staticmethod
- def sqrt(x):
- return torch._sym_sqrt(x) # type: ignore[attr-defined]
- @staticmethod
- def minimum(a, b):
- return torch.sym_min(a, b)
- @staticmethod
- def maximum(a, b):
- return torch.sym_max(a, b)
- @staticmethod
- def floor_to_int(x, dtype):
- return math.floor(x)
- @staticmethod
- def ceil_to_int(x, dtype):
- return math.ceil(x)
- @staticmethod
- def floor(x):
- return float(math.floor(x))
- @staticmethod
- def ceil(x):
- return float(math.ceil(x))
- @staticmethod
- def truediv(a, b):
- return a / b
- @staticmethod
- def pow(a, b):
- return a**b
- @staticmethod
- def pow_by_natural(a, b):
- # Pray that safe_pow is not needed here lol. In particular, this
- # never participates in VR low/high ranges, so overflow should be
- # unlikely
- return a**b
- @staticmethod
- def round_to_int(a, dtype):
- return round(a)
- @staticmethod
- def round_decimal(a, b):
- return round(a, ndigits=b)
- @staticmethod
- def bitwise_and(a, b):
- return a & b
- @staticmethod
- def bitwise_or(a, b):
- return a | b
- @staticmethod
- def bitwise_xor(a, b):
- return a ^ b
- # Like PythonReferenceAnalysis, but some export-unfriendly choices of
- # operators to make things faster
- class OptimizedPythonReferenceAnalysis(PythonReferenceAnalysis):
- @staticmethod
- def sym_sum(args):
- return torch.sym_sum(args)
- def _to_dtype(x: torch.Tensor, dtype: torch.dtype) -> torch.Tensor:
- return torch.ops.prims.convert_element_type.default(x, dtype)
- # Suppose we have some int/float arguments. This diagram commutes:
- #
- # int/float -- PythonReferenceAnalysis.op --> int/float
- # | |
- # | |
- # torch.tensor(..., dtype=torch.int64/torch.float64)
- # | |
- # V V
- # Tensor -- TensorReferenceAnalysis.op --> Tensor
- #
- # NB: int before and after must be representable in int64 (we will
- # insert guards accordingly.)
- #
- # This is guaranteed to be FX traceable with OpOverloads only.
- class TensorReferenceAnalysis:
- # NB: This is actually dead, because with Proxy tracing the factory
- # function isn't traced correctly. Here for completeness.
- @staticmethod
- def constant(c, dtype):
- d: int | float | bool
- if dtype is torch.int64:
- d = int(c)
- elif dtype is torch.double:
- d = float(c)
- elif dtype is torch.bool:
- d = bool(c)
- else:
- raise AssertionError(f"unrecognized dtype {dtype}")
- return torch.ops.aten.scalar_tensor.default(d, dtype=dtype)
- @staticmethod
- def or_(a, b):
- return torch.ops.aten.logical_or.default(a, b)
- @staticmethod
- def and_(a, b):
- return torch.ops.aten.logical_and.default(a, b)
- @staticmethod
- def bitwise_and(a, b):
- return torch.ops.aten.bitwise_and(a, b)
- @staticmethod
- def bitwise_or(a, b):
- return torch.ops.aten.bitwise_or(a, b)
- @staticmethod
- def bitwise_xor(a, b):
- return torch.ops.aten.bitwise_xor(a, b)
- @staticmethod
- def eq(a, b):
- return torch.ops.aten.eq.Tensor(a, b)
- @classmethod
- def ne(cls, a, b):
- return torch.ops.aten.ne.Tensor(a, b)
- @staticmethod
- def lt(a, b):
- return torch.ops.aten.lt.Tensor(a, b)
- @staticmethod
- def gt(a, b):
- return torch.ops.aten.gt.Tensor(a, b)
- @staticmethod
- def le(a, b):
- return torch.ops.aten.le.Tensor(a, b)
- @staticmethod
- def ge(a, b):
- return torch.ops.aten.ge.Tensor(a, b)
- @staticmethod
- def not_(a):
- return torch.ops.aten.logical_not.default(a)
- @staticmethod
- def reciprocal(x):
- return torch.ops.aten.reciprocal.default(x)
- @staticmethod
- def square(x):
- # TODO: maybe composite implicit autograd doesn't work here?
- return torch.ops.aten.square.default(x)
- @staticmethod
- def trunc_to_int(x, dtype):
- return _to_dtype(torch.ops.aten.trunc.default(x), dtype)
- @staticmethod
- def ceil_to_int(x, dtype):
- return _to_dtype(torch.ops.aten.ceil.default(x), dtype)
- @staticmethod
- def floor_to_int(x, dtype):
- return _to_dtype(torch.ops.aten.floor.default(x), dtype)
- @staticmethod
- def floor(x):
- return torch.ops.aten.floor.default(x)
- @staticmethod
- def ceil(x):
- return torch.ops.aten.ceil.default(x)
- @staticmethod
- def to_dtype(x, dtype):
- return _to_dtype(x, dtype)
- @staticmethod
- def mod(x, y) -> NoReturn:
- # TODO: https://github.com/pytorch/pytorch/pull/133654
- raise NotImplementedError(
- "no C-style modulus operation available from frontend atm"
- )
- @staticmethod
- def abs(x):
- return torch.ops.aten.abs.default(x)
- @staticmethod
- def neg(x):
- return torch.ops.aten.neg.default(x)
- @staticmethod
- def truediv(a, b):
- return torch.ops.aten.true_divide.Tensor(a, b)
- @staticmethod
- def int_truediv(a, b):
- raise NotImplementedError(
- "Python int truediv difficult to implement in PyTorch atm"
- )
- # TODO: This is wrong, CPython has a custom implementation of true
- # division that results in higher precision when the floats are
- # sufficiently large. Short term fix: add a guard here
- # pyrefly: ignore [unreachable]
- return torch.ops.aten.true_divide.default(
- _to_dtype(a, torch.float64), _to_dtype(b, torch.float64)
- )
- @staticmethod
- def floordiv(a, b):
- return torch.ops.aten.div.Tensor_mode(a, b, rounding_mode="floor")
- @staticmethod
- def truncdiv(a, b) -> NoReturn:
- raise NotImplementedError(
- "no C-style truncdiv operation available from frontend atm"
- )
- @staticmethod
- def add(a, b):
- return torch.ops.aten.add.Tensor(a, b)
- @staticmethod
- def mul(a, b):
- return torch.ops.aten.mul.Tensor(a, b)
- @staticmethod
- def sub(a, b):
- return torch.ops.aten.sub.Tensor(a, b)
- @staticmethod
- def exp(x):
- return torch.ops.aten.exp.default(x)
- @staticmethod
- def log(x):
- return torch.ops.aten.log.default(x)
- @staticmethod
- def log2(x):
- return torch.ops.aten.log2.default(x)
- @staticmethod
- def sqrt(x):
- return torch.ops.aten.sqrt.default(x)
- @staticmethod
- def sin(x):
- return torch.ops.aten.sin.default(x)
- @staticmethod
- def cos(x):
- return torch.ops.aten.cos.default(x)
- @staticmethod
- def tanh(x):
- return torch.ops.aten.tanh.default(x)
- @staticmethod
- def sinh(x):
- return torch.ops.aten.sinh.default(x)
- @staticmethod
- def cosh(x):
- return torch.ops.aten.cosh.default(x)
- @staticmethod
- def tan(x):
- return torch.ops.aten.tan.default(x)
- @staticmethod
- def acos(x):
- return torch.ops.aten.acos.default(x)
- @staticmethod
- def atan(x):
- return torch.ops.aten.atan.default(x)
- @staticmethod
- def asin(x):
- return torch.ops.aten.asin.default(x)
- @staticmethod
- def pow(a, b):
- return torch.ops.aten.pow.Tensor_Tensor(a, b)
- @staticmethod
- def pow_by_natural(a, b):
- # NB: pow handles int x int fine
- return torch.ops.aten.pow.Tensor_Tensor(a, b)
- @staticmethod
- def minimum(a, b):
- return torch.ops.aten.minimum.default(a, b)
- @staticmethod
- def maximum(a, b):
- return torch.ops.aten.maximum.default(a, b)
- @staticmethod
- def round_to_int(a, dtype):
- return torch.ops.aten.round.default(a)
- @staticmethod
- def round_decimal(a, b) -> NoReturn:
- raise NotImplementedError(
- "round decimal doesn't support Tensor second argument atm"
- )
- # return torch.ops.aten.round.decimals(a, b)
|