-
Notifications
You must be signed in to change notification settings - Fork 67
[release/2.6][SWDEV-523736] Skip&Fix some testcases for archs without SDPA or Navi4x #2213
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: release/2.6
Are you sure you want to change the base?
Conversation
pruthvistony please have a look. |
@@ -10611,6 +10611,7 @@ def fn(q, k, v): | |||
) | |||
|
|||
@expectedFailureXPU | |||
@unittest.skipIf(not PLATFORM_SUPPORTS_FLASH_ATTENTION, "Some archs don't support SDPA") |
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.
SDPA is support for Navi4 through AOTriton, we shouldnt skip the whole test
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 true for Navi48, but not for Navi44, currently no support it but it's planned as experimental in AOTriton 0.10.
Jenkins build for 5d697ad2d52d7d659dc4cc2fb76f7a224dc7b2a3 commit finished as FAILURE |
The commit updated, pruthvistony please have a look. |
Jenkins build for 03c4453a242a92f069a50552f0592ba3a38f46ee commit finished as FAILURE |
* Most part of testcases work properly on Navi48(gfx1201) with TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL=1, in this commit enable it for this arch. No support of AOTriton currently for Navci44(gfx1200), so these testcases just skipped. * test_qconv2d_int8_mixed_bf16 skipped because it was originally skipped in pytorch#112550 but later lost. * test_sac_ilp_case1 skipped as per SWDEV-509011 * test_distributed_checkpoint_state_dict_type[0-1]_cuda fixed bug with arguments.
[release/2.6][SWDEV-523736] Skip some testcases for archs without SDPA or Navi4x
[SWDEV-523736] Fix some unittests for Navi4x
TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL=1, in this commit enable it
for this arch. No support of AOTriton currently for Navci44(gfx1200),
so these testcases just skipped.
[Inductor] [Quant] Enable QConv2d Unary int8-mixed-bf16 Lowering pytorch/pytorch#112550 but later lost.
with arguments.
Fixes #SWDEV-523736