-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add optimization patterns fusing ops into custom ops #1636
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Xavier Dupre <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1636 +/- ##
==========================================
- Coverage 74.88% 74.53% -0.36%
==========================================
Files 242 245 +3
Lines 25869 26592 +723
Branches 4665 4827 +162
==========================================
+ Hits 19373 19821 +448
- Misses 5627 5851 +224
- Partials 869 920 +51 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Co-authored-by: Justin Chu <[email protected]>
Co-authored-by: Justin Chu <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Signed-off-by: Xavier Dupre <[email protected]>
Helpful to create a Pr description? Thanks! https://google.github.io/eng-practices/review/developer/cl-descriptions.html |
pattern_value.producer() is not None for pattern_value in pattern_node.inputs | ||
) | ||
|
||
if has_predecessor_in_pattern: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this condition meant to be an optimization (with no effect in behavior)? Trying to understand
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this fix might be related to an issue Jingyan is running into. Does this fix allow pattern-inputs to have other uses outside of the pattern?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think so. I think we should change this slightly, by applying the condition for each pattern_value separately, as mentioned in comment below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fill free to rewrite the code. If the unit test are passing, it means it is good.
orp.make_rewrite_rule_from_class(TransposeFusedMatMul1, True), | ||
orp.make_rewrite_rule_from_class(TransposeMatMul2, True), | ||
orp.make_rewrite_rule_from_class(TransposeFusedMatMul2, True), | ||
orp.make_rewrite_rule_from_class(FusedMatMulDiv1, generic=True), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trying to understand why you have this generic=True
? Is it for debugging?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it is using the generic pattern matcher (multi output pattern)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the pattern has multiple outputs, the implementation should automatically choose the generic matcher ... user doesn't have to specify it.
|
||
if has_predecessor_in_pattern: | ||
for graph_input, pattern_input in zip(graph_node.inputs, pattern_node.inputs): | ||
if len(graph_input.uses()) != len(pattern_input.uses()): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of the has_predecessor_in_pattern check above, I think we should do the check here: add if pattern_input.producer() is not None
here ... that will handle the case where some inputs have producer and others don't.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
pattern_pred = pattern_value.producer() | ||
if pattern_pred is not None and len(graph_value.uses()) != len( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am confused ... isn't this already handled above? Why this check on the number of uses again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rest of the loop can be executed for the first input if it satisfies the conditions and there is a case where it should not be done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fill free to find a better solution. The unit test should catch any weird behaviour.
Signed-off-by: Xavier Dupre <[email protected]>
@@ -41,6 +41,7 @@ | |||
prog = torch.onnx.export(model, args, dynamo=True) # pylint: disable=no-value-for-parameter | |||
else: | |||
prog = torch.onnx.dynamo_export(model, *args) | |||
|
Check warning
Code scanning / lintrunner
RUFF/W293 Warning
See https://docs.astral.sh/ruff/rules/blank-line-with-whitespace
@@ -41,6 +41,7 @@ | |||
prog = torch.onnx.export(model, args, dynamo=True) # pylint: disable=no-value-for-parameter | |||
else: | |||
prog = torch.onnx.dynamo_export(model, *args) | |||
|
Check warning
Code scanning / lintrunner
EDITORCONFIG-CHECKER/editorconfig Warning
…ttern matcher (#1731) The multi-output pattern does not support a useful case, where the pattern's input variables are reused elsewhere. This PR adds a test-case illustrating the scenario. I was hoping that some changes in the in-progress PR #1636 by Xavier might fix this. But I don't think it does. Adding the test-case for now. Need to figure out how to support this. --------- Co-authored-by: Justin Chu <[email protected]>
No description provided.