Skip to content

Commit afdadb7

Browse files
committed
skip layernorm smoothquant test temporarily on navi
1 parent 421935c commit afdadb7

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/kernels/test_layernorm.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,10 @@ def test_layernorm_dynamicquant():
875875
raise SystemExit(1)
876876

877877

878+
@pytest.mark.skipif(
879+
GPU_ARCH == "gfx1201",
880+
reason="RMSNorm SmoothQuant is temporarily quarantined on gfx1201 pending correctness investigation",
881+
)
878882
def test_layernorm_smoothquant():
879883
print("=" * 80)
880884
print("Running LayerNorm SmoothQuant Tests")
@@ -961,6 +965,10 @@ def test_fused_add_layernorm_dynamicquant():
961965
raise SystemExit(1)
962966

963967

968+
@pytest.mark.skipif(
969+
GPU_ARCH == "gfx1201",
970+
reason="RMSNorm SmoothQuant is temporarily quarantined on gfx1201 pending correctness investigation",
971+
)
964972
def test_fused_add_layernorm_smoothquant():
965973
print("=" * 80)
966974
print("Running FusedAdd LayerNorm SmoothQuant Tests")

0 commit comments

Comments
 (0)