xref: /aosp_15_r20/external/pytorch/torch/fx/experimental/unification/dispatch.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1from functools import partial
2from .multipledispatch import dispatch  # type: ignore[import]
3
4namespace = {}  # type: ignore[var-annotated]
5
6dispatch = partial(dispatch, namespace=namespace)
7