-
Notifications
You must be signed in to change notification settings - Fork 267
AI Based Parameter Prediction Model for conv_hip_igemm_group_fwd_xdlops Solver #2523
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
Merged
junliume
merged 23 commits into
develop
from
dmantri/conv_hip_igemm_grp_fwd_xdlops_heuristic
Dec 8, 2023
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
bbbfde6
implemented tuning heuristic for ck_igemm_group_fwd
Dmantri98 52ebde1
update testing
Dmantri98 c4269ee
cleanup testing
Dmantri98 690304e
clang-format and final changes
Dmantri98 65154f8
Merge develop
Dmantri98 e6e82d6
hip tidy fixes
Dmantri98 bb71c21
take out redundant void
Dmantri98 ffbc428
fix cppcheck error
Dmantri98 6dd08ee
replace temp vector with erase
Dmantri98 69c2351
add guards and takeout json_fwd.hpp
Dmantri98 275980d
Merge branch 'develop' of https://github.com/ROCmSoftwarePlatform/MIO…
Dmantri98 a358946
takeout architecture check
Dmantri98 d5d41ef
Merge branch 'develop' into dmantri/conv_hip_igemm_grp_fwd_xdlops_heu…
junliume 9ccba71
Merge branch 'develop' of https://github.com/ROCmSoftwarePlatform/MIO…
Dmantri98 9dadd17
cmake variable check
Dmantri98 ec59604
simplfy input_tensor shaping
Dmantri98 acf1d93
merge develop
Dmantri98 c593b63
Merge branch 'develop' into dmantri/conv_hip_igemm_grp_fwd_xdlops_heu…
Dmantri98 5cc829d
env variable and parameter template changes
Dmantri98 f5094ae
Merge branch 'develop' into dmantri/conv_hip_igemm_grp_fwd_xdlops_heu…
Dmantri98 77caaa8
clang format
Dmantri98 f62951b
add back const
Dmantri98 abd1738
Merge branch 'develop' into dmantri/conv_hip_igemm_grp_fwd_xdlops_heu…
Dmantri98 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
1 change: 1 addition & 0 deletions
1
src/kernels/gfx90a_ConvHipIgemmGroupFwdXdlops_decoder.ktn.model
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
src/kernels/gfx90a_ConvHipIgemmGroupFwdXdlops_encoder.ktn.model
Large diffs are not rendered by default.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
src/kernels/gfx90a_ConvHipIgemmGroupFwdXdlops_metadata.ktn.model
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"num_tuning_params": 9, | ||
"decodings": { | ||
"tunings": { | ||
"0": "-1", | ||
"1": "64", | ||
"2": "256", | ||
"3": "128", | ||
"4": "64", | ||
"5": "128", | ||
"6": "32", | ||
"7": "256", | ||
"8": "32", | ||
"9": "128", | ||
"10": "64", | ||
"11": "256", | ||
"12": "32", | ||
"13": "16", | ||
"14": "Default", | ||
"15": "OddC", | ||
"16": "2", | ||
"17": "1", | ||
"18": "4", | ||
"19": "1", | ||
"20": "2", | ||
"21": "4", | ||
"22": "8", | ||
"23": "1", | ||
"24": "4", | ||
"25": "8", | ||
"26": "1", | ||
"27": "4", | ||
"28": "-1" | ||
} | ||
} | ||
} |
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.
can we make
dim
a part of theModel
object? Sincedim
is known apriori, maybe we can just add it to the metadata for the model.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 would be fine but I don't see the point as we have to hard-code the feature vector anyway so if we know the size of the feature vector we can just extract
dim
from it.