-
Notifications
You must be signed in to change notification settings - Fork 41
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
Miopen dialect opt step13 : apply index diff maps in threadwise_copy
and threadwise_copy_v2
.
#226
Merged
Conversation
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
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
from
May 26, 2021 20:55
7e5cfb6
to
c74fe8e
Compare
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
7 times, most recently
from
May 30, 2021 19:28
cb930c3
to
9346f71
Compare
whchung
added
skip-ci
Don't build Jenkins tests
and removed
skip-ci
Don't build Jenkins tests
labels
May 30, 2021
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
2 times, most recently
from
May 30, 2021 20:57
04791d8
to
206ec22
Compare
whchung
changed the title
Miopen dialect opt step13 : apply index diff maps in miopen.threadwise_copy.
Miopen dialect opt step13 : apply index diff maps in May 30, 2021
threadwise_copy
and threadwise_copy_v2
.
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
from
May 31, 2021 01:18
206ec22
to
48d9aed
Compare
whchung
changed the title
Miopen dialect opt step13 : apply index diff maps in
[DO NOT MERGE] Miopen dialect opt step13 : apply index diff maps in Jun 1, 2021
threadwise_copy
and threadwise_copy_v2
. threadwise_copy
and threadwise_copy_v2
.
whchung
commented
Jun 1, 2021
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
4 times, most recently
from
June 1, 2021 21:52
4482c15
to
a7f2bbc
Compare
whchung
force-pushed
the
miopen-dialect-opt-step13
branch
from
June 1, 2021 22:22
a7f2bbc
to
cecef1a
Compare
- Consider Slice in computeIndexDiffMap. - Fix Embed parameters in bwd_data. - Populate a fake identity map to prevent it from being optimized. - Hack a unit test.
whchung
changed the title
[DO NOT MERGE] Miopen dialect opt step13 : apply index diff maps in
Miopen dialect opt step13 : apply index diff maps in Jun 2, 2021
threadwise_copy
and threadwise_copy_v2
. threadwise_copy
and threadwise_copy_v2
.
This reverts commit 734c407.
Avoid the identity map being optimized away by MLIR when it's embedded as a part of memref type. Fix unit tests. Remove those XXX hacks for conv2d_bwd_data.
@okakarpa this particular build is very interesting, it seems something is wrong in http://ml-ci.amd.com:21096/job/MLIR/job/MLIR-downstream-unit-test/3495/console
|
asroy
approved these changes
Jun 3, 2021
jenkins: retest this please. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR use index diff maps for matrix A/B/C, which uses
miopen.threadwise_copy
andmiopen.threadwise_copy_v2
op.Will revise this PR and implement
F_infinite
algorithm, based on infrastructure built in #231 #230 #229 #228 .