-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improve Dynamo partitioning System Performance on Large Models (#…
- Loading branch information
Showing
15 changed files
with
634 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
from ._decompositions import get_decompositions # noqa: F401 | ||
from ._fusers import * # noqa: F403 | ||
from ._partition import ( # noqa: F401 | ||
DEFAULT_SINGLE_NODE_PARTITIONS, | ||
get_submod_inputs, | ||
partition, | ||
) | ||
from ._fusers import * # noqa: F401 | ||
from ._pre_aot_lowering import SUBSTITUTION_REGISTRY # noqa: F401 | ||
from ._pre_aot_lowering import register_substitution # noqa: F401 | ||
from .substitutions import * # noqa: F403 | ||
from .substitutions import * # noqa: F401 |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from ._adjacency_partitioner import partition as fast_partition | ||
from ._global_partitioner import partition as global_partition | ||
from .common import get_graph_converter_support, get_submod_inputs |
Oops, something went wrong.