Skip to content

Skip test_moe_matmul_ogs on older cards #121

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

Merged
merged 1 commit into from
Jun 2, 2025
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
5 changes: 4 additions & 1 deletion test/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -1430,6 +1430,10 @@ def _jagged_dense_add_2d_make_precompiler(x_data: torch.Tensor, x_offsets: torch
)

@unittest.skip("TODO(yf225): fix occasional numerical error")
@unittest.skipIf(
torch.cuda.get_device_capability(0) < (9, 0),
"Triton internal error on RTX 3090",
)
def test_moe_matmul_ogs(self):
mod = import_path(examples_dir / "moe_matmul_ogs.py")

Expand All @@ -1451,7 +1455,6 @@ def test_moe_matmul_ogs(self):
helion_kernel_args,
mod.moe_matmul_ogs_reference(*args),
block_sizes=[[16, 16], 16],
l2_grouping=4,
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This config is a no-op on this kernel due to the usage of hl.grid() (I removed it in the next PR in the stack.)

),
"""\
from __future__ import annotations
Expand Down
Loading