forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
57 lines (53 loc) · 1.37 KB
/
__init__.py
File metadata and controls
57 lines (53 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
from typing import Any
from executorch.exir.capture import (
_capture_legacy_do_not_use,
CallSpec,
capture,
CaptureConfig,
EdgeCompileConfig,
ExecutorchBackendConfig,
)
from executorch.exir.emit import emit_program, EmitterOutput
from executorch.exir.program import (
_to_edge,
edge_to_executorch_passes,
EdgeProgramManager,
ExecutorchProgram,
ExecutorchProgramManager,
ExirExportedProgram,
to_edge,
to_edge_transform_and_lower,
)
from executorch.exir.serde.serialize import load, save
from executorch.exir.tracer import ExirDynamoConfig
from torch.export import ExportedProgram, ExportGraphSignature
Value = Any
__all__ = [
"emit_program",
"EmitterOutput",
"capture",
"_capture_legacy_do_not_use",
"CallSpec",
"ExportedProgram",
"ExirExportedProgram",
"ExecutorchProgram",
"ExportGraphSignature",
"_to_edge",
"to_edge",
"to_edge_transform_and_lower",
"EdgeProgramManager",
"ExecutorchProgramManager",
"edge_to_executorch_passes",
"CaptureConfig",
"EdgeCompileConfig",
"ExecutorchBackendConfig",
"Value",
"ExirDynamoConfig",
"load",
"save",
]