Skip to content

Commit 0e047af

Browse files
authored
Try enable test_moe_matmul_ogs on CI (#147)
1 parent 7f972fa commit 0e047af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_examples.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,8 +1628,8 @@ def _jagged_dense_add_2d_make_precompiler(x_data: torch.Tensor, x_offsets: torch
16281628
)
16291629

16301630
@unittest.skipIf(
1631-
torch.cuda.get_device_capability(0) < (9, 0),
1632-
"Triton internal error on RTX 3090",
1631+
"RTX 30" in torch.cuda.get_device_name(0),
1632+
"Triton internal error on RTX 30XX series",
16331633
)
16341634
@unittest.skipIf(is_fbcode(), "Triton internal error on fbcode Triton pin")
16351635
def test_moe_matmul_ogs(self):

0 commit comments

Comments
 (0)