-
Notifications
You must be signed in to change notification settings - Fork 49
Add g+g problem configs to tier1 model list #2023
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
base: develop
Are you sure you want to change the base?
Conversation
@dhernandez0 the CIs say too many unauthenticated requests, I'm not sure if you guys are aware of that? |
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.
Pull Request Overview
This PR adds g+g (GEMM+GEMM) problem configurations to the tier 1 model list for performance testing. These configurations enable testing of fused GEMM operations that include additional parameters like -transC
, -transO
, and -gemmO
for more complex matrix multiplication patterns.
- Adds g+g problem configs generated using migraphx-benchmark-utils script
- Adds configurations for various models including BERT, GPT-2, Whisper, and Stable Diffusion variants
- Includes both f32 and f16 precision variants across different model types
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
-t f32 -out_datatype f32 -transA false -transB false -g 1 -m 1 -n 4096 -k 14336 | ||
-t f32 -out_datatype f32 -transA false -transB false -g 1 -m 1 -n 4096 -k 4096 | ||
-t f32 -out_datatype f32 -transA false -transB false -g 1 -m 1 -n 32000 -k 4096 | ||
#unet_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.
is this a new 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.
It's in this list: https://amd.atlassian.net/wiki/spaces/MLSE/pages/934586591/Tier+1+models
But it did not previously have configs in this file
5464398
to
73c9be5
Compare
Motivation
This PR just adds the g+g problem configs for tier 1 models to the preexisting list.
Closes rocMLIR-internal #2027. The issue is on rocmlir-internal, so it may need to be closed manually.
Technical Details
Problem configs were generated with this script, plus the env var for g+g fusion and filtering for g+g problem configs, and those resulting problem configs were added to this list.
Test Plan
N/A
Test Result
N/A
Submission Checklist