-
Notifications
You must be signed in to change notification settings - Fork 79
Concretize all dynamic outputs of downstream expressions #420
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
Closed
Closed
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
757f685
Add C++ repro for #418
jacobhinkle 03ac754
Process all outputs of each Expr in concretization
jacobhinkle 36c70c5
Add fusion_ir_dynamic debug dump option
jacobhinkle 9727388
Propagate extent from P2C during concretization
jacobhinkle d675161
Merge remote-tracking branch 'origin/main' into fix_issue418
jacobhinkle 031f327
Revert "Propagate extent from P2C during concretization"
jacobhinkle 3724a00
Match concretized reshape extents to desired extents.
jacobhinkle 72b29ee
Remove debugging print statements
jacobhinkle 78ad7e2
Add output extents as ViewOp inputs
jacobhinkle 788f500
Remove concrete_reshape_out_tv after replacing
jacobhinkle bf9aa1e
Find expr outputs before calling StmtSort again
jacobhinkle 4f05ad5
Revert to d675161 but keep bf9aa1e5
jacobhinkle 8160c6f
Fix DynamicTransformIssue418_CUDA ATen keepdim args
jacobhinkle 3c173e0
Merge branch 'main' into fix_issue418
jacobhinkle 83062b8
Add failing full groupnorm test
jacobhinkle 82e7ee8
Fix bug in failing test
jacobhinkle 5c8a4c2
Properly set broadcast axes in inputs to 418Full test
jacobhinkle 9ffadb9
Add channels-last test
jacobhinkle 596ceab
Grab iter_type fix in newOutputDomain from #358
jacobhinkle fd6eca8
Merge remote-tracking branch 'origin/main' into fix_issue418
jacobhinkle 6b85cf4
Propagate replacements for placeholder extents
jacobhinkle c8a1176
Merge branch 'main' into fix_issue418
jacobhinkle f8a0610
Temporarily revert "Propagate replacements for placeholder extents"
jacobhinkle 8008ece
Merge branch 'main' into fix_issue418
jacobhinkle bd17931
Print dynamic fusion if fusion_ir_concretized is given
jacobhinkle 9aaedec
Set proper output extent in dynamic cat
jacobhinkle 735278c
Merge branch 'main' into fix_issue418
jacobhinkle 140298f
Add failing PadBroadcast test
jacobhinkle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This fixes a breakage that occurred when I made the other changes. It makes the output extent of cat look as it should (e.g.
(i0 + i2) + i4) instead of creating a new symbolic extent as was done previously and which complicated concretization.