xref: /aosp_15_r20/external/pytorch/torch/_functorch/python_key.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1# Copyright (c) Facebook, Inc. and its affiliates.
2# All rights reserved.
3#
4# This source code is licensed under the BSD-style license found in the
5# LICENSE file in the root directory of this source tree.
6__all__ = ["make_fx", "dispatch_trace", "PythonKeyTracer", "pythonkey_decompose"]
7from torch.fx.experimental.proxy_tensor import (
8    decompose,
9    dispatch_trace,
10    make_fx,
11    PythonKeyTracer,
12)
13
14
15pythonkey_decompose = decompose
16