xref: /aosp_15_r20/external/executorch/exir/program/__init__.py (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1# Copyright (c) Meta Platforms, Inc. and 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
7# pyre-strict
8
9from executorch.exir.program._fake_program import get_fake_program
10from executorch.exir.program._program import (
11    _to_edge,
12    edge_to_executorch_passes,
13    EdgeProgramManager,
14    ExecutorchProgram,
15    ExecutorchProgramManager,
16    ExirExportedProgram,
17    to_edge,
18    to_edge_transform_and_lower,
19)
20
21__all__ = [
22    "ExirExportedProgram",
23    "ExecutorchProgram",
24    "_to_edge",
25    "to_edge",
26    "to_edge_transform_and_lower",
27    "edge_to_executorch_passes",
28    "EdgeProgramManager",
29    "ExecutorchProgramManager",
30    "get_fake_program",
31    "get_real_program",
32]
33