-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
260 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
from __future__ import annotations | ||
|
||
from .eval_frame import optimize # noqa | ||
from .graph import Graph # noqa | ||
from .graph_layer import GraphLayer # noqa | ||
from .graph_viewer import FxGraphViewer # noqa | ||
from .interpreter import Interpreter # noqa | ||
from .node import Node # noqa | ||
from .symbolic_trace import Tracer, symbolic_trace # noqa | ||
from .eval_frame import optimize | ||
from .graph import Graph | ||
from .graph_layer import GraphLayer | ||
from .graph_viewer import FxGraphViewer | ||
from .interpreter import Interpreter | ||
from .node import Node | ||
from .symbolic_trace import Tracer, symbolic_trace | ||
|
||
try: | ||
from ._version import version as __version__ | ||
from ._version import version_tuple | ||
except ImportError: | ||
__version__ = version = '0.0.0.unknown' | ||
__version__ = version = "0.0.0.unknown" | ||
__version_tuple__ = version_tuple = (0, 0, 0, "unknown") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
from __future__ import annotations | ||
|
||
from .base import CompilerBase, DummyCompiler # noqa: F401 | ||
from .base import CompilerBase, DummyCompiler | ||
|
||
try: | ||
from .tvm import TVMCompiler # noqa: F401 | ||
from .tvm import TVMCompiler | ||
except ImportError: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.