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 test/test_torch_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
from helion._testing import TestCase
from helion._testing import skipIfPy314
from helion._testing import skipIfRefEager
from helion._testing import skipIfRocm
import helion.language as hl


class TestTorchCompile(RefEagerTestBase, TestCase):
@skipIfRefEager("does not work with ref eager")
@skipIfPy314("torch.compile not yet supported on Python 3.14")
@skipIfRocm("torch.compile add kernel missing kernel metadata fields on ROCm")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will already fixed this, rocm just needs a new nightly, perhaps we should just pin rocm to stable 2.9 instead?

def test_add_kernel(self):
@helion.kernel(config=helion.Config(block_sizes=[1, 2]))
def add(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor:
Expand Down
Loading