Skip to content

Commit 4d91a27

Browse files
author
Pavle Josipovic
committed
Remove watcher skips in tests/ttnn/unit_tests/operations/sdpa/test_sdpa_prefill.py
1 parent ff8edef commit 4d91a27

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/ttnn/unit_tests/operations/sdpa/test_sdpa_prefill.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ def fa_rand(*shape):
2020
return normal_1 + normal_2 * bernoulli
2121

2222

23-
def is_watcher_enabled():
24-
return os.environ.get("TT_METAL_WATCHER") is not None
25-
26-
2723
def create_sliding_window_mask_prefill(b, nh, seq_len, sliding_window=0, is_causal=True):
2824
"""
2925
Create attention mask for sliding window attention in prefill mode.
@@ -568,7 +564,6 @@ def run_test_sdpa_with_attention_sink(
568564
# ---------------------------------------------------------------------------
569565

570566

571-
@pytest.mark.skipif(is_watcher_enabled(), reason="Kernel OOM with watcher enabled")
572567
@pytest.mark.parametrize("dtype", [ttnn.bfloat8_b], ids=["bfp8"])
573568
@pytest.mark.parametrize("memory_config", [ttnn.DRAM_MEMORY_CONFIG], ids=["dram_interleaved"])
574569
@pytest.mark.parametrize("q_chunk_size", [128], ids=["q128"])
@@ -598,7 +593,6 @@ def test_sdpa_tt(device, b, nh, nkv, s, d, q_chunk_size, k_chunk_size, dtype, me
598593
)
599594

600595

601-
@pytest.mark.skipif(is_watcher_enabled(), reason="Kernel OOM with watcher enabled")
602596
@pytest.mark.parametrize("dtype", [ttnn.bfloat16], ids=["bf16"])
603597
@pytest.mark.parametrize("q_chunk_size", [128], ids=["q128"])
604598
@pytest.mark.parametrize("k_chunk_size", [128], ids=["k128"])
@@ -615,7 +609,6 @@ def test_sdpa_noncausal(device, b, nh, nkv, s, d, q_chunk_size, k_chunk_size, dt
615609
run_sdpa_noncausal(device, b, nh, nkv, s, d, q_chunk_size, k_chunk_size, dtype, rmse_threshold=rmse_threshold)
616610

617611

618-
@pytest.mark.skipif(is_watcher_enabled(), reason="Kernel OOM with watcher enabled")
619612
@pytest.mark.parametrize("dtype", [ttnn.bfloat8_b], ids=["bfp8"])
620613
@pytest.mark.parametrize("q_chunk_size", [128], ids=["q128"])
621614
@pytest.mark.parametrize("k_chunk_size", [128], ids=["k128"])
@@ -635,7 +628,6 @@ def test_sdpa_tt_with_program_cache(device, b, nh, nkv, s, d, q_chunk_size, k_ch
635628
assert device.num_program_cache_entries() == 1
636629

637630

638-
@pytest.mark.skipif(is_watcher_enabled(), reason="Kernel OOM with watcher enabled")
639631
@pytest.mark.parametrize("dtype", [ttnn.bfloat8_b], ids=["bfp8"])
640632
@pytest.mark.parametrize("q_chunk_size", [256], ids=["q256"])
641633
@pytest.mark.parametrize("k_chunk_size", [256], ids=["k256"])

0 commit comments

Comments
 (0)