-
Notifications
You must be signed in to change notification settings - Fork 88
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
Pointwise + Concat fusion #2785
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
8d790be
WIP
umangyadav a7f9e03
Merge branch 'develop' into concat_convert_fusion
umangyadav ca22cc7
tests working
umangyadav c8f66fd
add used_once
umangyadav b8eb2e9
use noop
umangyadav 521b3b0
add partial case
umangyadav 4b5336e
licensing fix
umangyadav 62b1732
add case of multiple uses
umangyadav b73ae2f
remove prints
umangyadav 0259653
add multiple use verify test
umangyadav 0f0bf96
formatting
umangyadav 675f494
Move test to separate file
umangyadav 048ed96
Merge branch 'develop' into concat_convert_fusion
umangyadav 8e31d6a
fix counter issue because of static
umangyadav f2f7d91
fix static counter issue
umangyadav 7f5a49c
Merge branch 'develop' into concat_convert_fusion
umangyadav 8bc6c7e
Merge branch 'develop' into concat_convert_fusion
causten 7e01371
skip fusion if number of no-ops are more than 1.
umangyadav 3dec29f
Merge branch 'develop' into concat_convert_fusion
umangyadav cc8ef6b
change rule to allow more than 1 no-ops
umangyadav e5fd209
Merge branch 'develop' into concat_convert_fusion
umangyadav 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 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
Oops, something went wrong.
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.
Why is this prefixed with a
!
? I would prefer not to have it start with a special character because this will become_x0
in the C++.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 wasn't sure. I copied same logic from
pointwise_concat_pointwise
fusion. I can remove it.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.
It uses
x0
in that pass.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.
AMDMIGraphX/src/fuse_concat.cpp
Line 158 in b1a24e5
I am referring this line.