-
Notifications
You must be signed in to change notification settings - Fork 78
Add target device arch string in device properties #5625
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
Conversation
Signed-off-by: Ettore Tiotto <[email protected]>
Signed-off-by: Ettore Tiotto <[email protected]>
Signed-off-by: Ettore Tiotto <[email protected]>
| def is_xpu_lpg(): | ||
| return is_xpu_arl_s() | ||
|
|
||
|
|
||
| def is_xpu_lpgP(): | ||
| return is_xpu_arl_h() | ||
|
|
||
|
|
||
| def is_xpu_hpg(): | ||
| return is_xpu_dg2() | ||
|
|
||
|
|
||
| def is_xpu_hpc(): | ||
| return is_xpu_pvc() | ||
|
|
||
|
|
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.
wonder if those are really going to be useful
|
|
||
|
|
||
| def is_xpu_xe2(): | ||
| return is_xpu_bmg() |
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 pvc xe2?
| return is_xpu_ptl_h() or is_xpu_ptl_u() | ||
|
|
||
|
|
||
| def is_xpu_xe3P(): |
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.
[optional] I usually see xe3p with p lower case.
Add the ability to query the target XPU architecture in Triton tests.