Skip to content

Commit 57083c7

Browse files
[TEST] Skip test_no_rematerialization_op
Signed-off-by: Whitney Tsang <[email protected]>
1 parent 68bfe8d commit 57083c7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/test/unit/language/test_core.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,9 @@ def kernel(X, Y, N, BLOCK_M: tl.constexpr, BLOCK_N: tl.constexpr):
30003000
]
30013001

30023002

3003-
def test_no_rematerialization_op():
3003+
def test_no_rematerialization_op(device):
3004+
if is_xpu():
3005+
pytest.skip("handle on XPU")
30043006

30053007
if torch.version.hip:
30063008
pytest.skip("test not supported on AMD")
@@ -3024,7 +3026,6 @@ def kernel(
30243026
sum_plus_0 = tl.full((1, 2), 0, tl.float32) + accum[:, None]
30253027
tl.store(out_1 + my_idxs[:, None] * 2 + tl.arange(0, 2)[None, :], sum_plus_0)
30263028

3027-
device = "cuda"
30283029
data_len = 32
30293030
data_dim = 64
30303031
torch.manual_seed(0)

0 commit comments

Comments
 (0)