8000 disable cpu cases when running on intel GPU runner · pytorch/pytorch@b83e482 · GitHub
[go: up one dir, main page]

Skip to content

Commit b83e482

Browse files
committed
disable cpu cases when running on intel GPU runner
1 parent f6b827b commit b83e482

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/inductor/test_flex_attention.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,7 @@ class DeviceConfig:
173173
elif TEST_ON_XPU:
174174
# TODO: Pending on oneDNN's tf32 support.
175175
torch.backends.cuda.matmul.allow_tf32 = False
176-
test_device = (
177-
"xpu",
178-
"cpu",
179-
)
176+
test_device = ("xpu",)
180177
else:
181178
test_device = ("cpu",)
182179

0 commit comments

Comments
 (0)
0