-
Notifications
You must be signed in to change notification settings - Fork 20
Add decoder modeling #108
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
Open
mht-sharma
wants to merge
33
commits into
main
Choose a base branch
from
add_decoders
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add decoder modeling #108
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
8c54971
Add ryzen model
mht-sharma a4c5326
restructure
mht-sharma 449e32b
update decoder
mht-sharma 1ca2eb7
update decoder
mht-sharma 3e93153
fix import
mht-sharma df893ab
fix tests
mht-sharma 29dd6d5
fixed errors
mht-sharma efb2082
fixed errors
mht-sharma 268fbcc
set env varibales
mht-sharma 7782a35
add tests
mht-sharma a8afdfe
set env varibales
mht-sharma 2e3e062
rename macro
mht-sharma da34127
fix tests
mht-sharma 1408e77
fix tests
mht-sharma fee83e3
add marker
mht-sharma 0ca3e8f
update setup
mht-sharma 95cccda
update notifications
mht-sharma 7f1344b
Merge branch 'main' into add_decoders
mht-sharma 34be37a
update cloning
mht-sharma 4df250e
add comment for has
mht-sharma e46b1bc
add error checks
mht-sharma 8cda1d9
Merge branch 'main' into add_decoders
mht-sharma 2c01748
Merge branch 'main' into add_decoders
mht-sharma b2c5660
Merge branch 'main' into add_decoders
mht-sharma fd86dbd
update eapis
mht-sharma af34ab5
fix error msgs
mht-sharma ec3e463
review comments
mht-sharma d8ac628
review comments
mht-sharma af07dd1
Merge branch 'main' into add_decoders
mht-sharma 9ebfe57
fixed errors
mht-sharma b175108
add pipeline
mht-sharma e0cb89f
add pipeline
mht-sharma bb53a9b
add group
mht-sharma 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -166,3 +166,5 @@ cython_debug/ | |
| runs | ||
| sweeps | ||
| experiments | ||
| ryzen_cache | ||
| RyzenAI-SW | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| { | ||
| "passes": [ | ||
| { | ||
| "name": "init", | ||
| "plugin": "vaip-pass_init" | ||
| }, | ||
| { | ||
| "name": "fuse_GEMM", | ||
| "plugin": "vaip-pass_py_ext", | ||
| "disabled": false, | ||
| "pyExt": { | ||
| "moduleName": "voe.passes.fuse_GEMM", | ||
| "methodName": "rules" | ||
| } | ||
| }, | ||
| { | ||
| "name": "fuse_MATMUL", | ||
| "plugin": "vaip-pass_py_ext", | ||
| "disabled": false, | ||
| "pyExt": { | ||
| "moduleName": "voe.passes.fuse_MATMUL", | ||
| "methodName": "rules" | ||
| } | ||
| }, | ||
| { | ||
| "name": "fuse_MATMULINTEGER", | ||
| "plugin": "vaip-pass_py_ext", | ||
| "disabled": false, | ||
| "pyExt": { | ||
| "moduleName": "voe.passes.fuse_MATMULINTEGER", | ||
| "methodName": "rules" | ||
| } | ||
| } | ||
| ] | ||
| } |
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.
Maybe we discussed this already but why the renaming?
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 method is not actually renamed, but a new method is created. I could reuse the
_load_model_and_processorsin_from_pretrainedofCausalLMclass. The UI is making it look like its renamed.