-
Notifications
You must be signed in to change notification settings - Fork 29
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
[tuner]: use iree_gpu.MMAIntrinsic and iree_gpu.MMAAttr #605
Conversation
127ed6d
to
3a07b21
Compare
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.
In the PR description, could you include the motivation behind this change?
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.
Looks good, just a couple of remaining issues
Signed-off-by: Bangtian Liu <liubangtian@gmail.com>
Signed-off-by: Bangtian Liu <liubangtian@gmail.com>
Signed-off-by: Bangtian Liu <liubangtian@gmail.com>
e5ee7dd
to
385f484
Compare
Signed-off-by: Bangtian Liu <liubangtian@gmail.com>
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.
LGTM % one suggestion. Thanks for all the fixes.
Signed-off-by: Bangtian Liu <liubangtian@gmail.com>
Remove the data class
MfmaIntrinsic
from the codebase, and use IREE attributes (iree_gpu.MMAIntrinsic
andiree_gpu.MMAAttr
) for MFMA intrinsics in the tuner.Motivation for this PR: The original MLIR processing relies heavily on string-based operations, making it fragile and prone to breaking with updates to the IREE Compiler. To address this, we aim to leverage key attributes directly through IREE Python bindings, enabled by exposing these attributes. For more details, refer to this issue.