-
Notifications
You must be signed in to change notification settings - Fork 709
[Compiler Toolkit] Add option for full inductor. #2150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,11 +10,22 @@ | |
| @dataclass | ||
| class Compile: | ||
| """ | ||
| List of compiler pass names to apply in the compiler toolkit workflow. | ||
| By default, no passes are applied. | ||
| Example: --compile.passes autobucketing_reordering,regional_inductor | ||
| Compiler configuration for the compiler toolkit workflow. | ||
|
|
||
| - joint_passes: List of joint graph pass names to apply on the joint forward-backward | ||
| graph before partitioning. | ||
|
|
||
| Example: --compile.joint_passes inductor_decomposition | ||
|
|
||
| - passes: List of compiler pass names to apply to the partitioned forward/backward graphs. | ||
|
|
||
| Example: --compile.passes full_inductor_compilation | ||
|
|
||
| Note: If "full_inductor_compilation" is specified, "inductor_decomposition" must | ||
| be included in joint_passes. | ||
| """ | ||
|
|
||
| joint_passes: list[str] = field(default_factory=list) | ||
| passes: list[str] = field(default_factory=list) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. non-blocking. I wonder if we should have a better naming here to distinguish
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I think |
||
|
|
||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.