Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions thunder/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import pytest
import torch
from torch.testing import assert_close, make_tensor
from lightning_utilities import compare_version

import thunder
from thunder import cache_option, cache_hits, cache_misses
Expand Down Expand Up @@ -2816,6 +2817,7 @@ def fn(x):

@requiresCUDA
@pytest.mark.xfail(
compare_version("torch", operator.le, "2.7.1", use_base_version=True),
reason="When using device as context in PyTorch, it doesn't reflect in torch.get_default_device - see https://github.com/pytorch/pytorch/issues/131328",
strict=True,
)
Expand Down
Loading